@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Base & Resets */
#social-bar {
  margin-bottom: -32px !important;
}

.navbar {
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Custom Dropdown Styling */
.hs-dropdown-parent {
  position: relative;
}

.hs-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.hs-dropdown-menu.brands-menu {
  min-width: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px;
  gap: 4px;
}

.hs-dropdown-parent:hover .hs-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hs-dropdown-item {
  display: block;
  padding: 8px 16px;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
}

.hs-dropdown-item:hover,
.hs-dropdown-item:active {
  background: rgba(0, 92, 41, 0.05) !important;
  color: #005c29 !important;
  transform: translateX(4px);
}

/* Floating Navbar Pill Style */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000;
  transition: transform 0.1s ease, top 0.1s ease, max-width 0.1s ease, border-radius 0.1s ease, background 0.1s ease;
}

#main-header.is-floating {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

#main-header.is-floating .container-xl {
  width: 100%;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  min-height: 60px !important;
  transition: min-height 0.1s;
}



#main-header.nav-hidden {
  transform: translateY(-150%) translateX(-50%);
}

#main-header.nav-hidden:not(.is-floating) {
  transform: translateY(-100%);
}

/* Animated Underline */
.hs-nav-link {
  position: relative;
  display: inline-block;
}

.hs-nav-link:hover {
  background: transparent !important;
}

.hs-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hs-nav-link:hover::after,
.hs-nav-link.active::after {
  width: 100%;
}

/* Scroll To Top */
#scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 4000;
}

#scroll-to-top-btn:hover {
  background: #005c29;
  transform: translateY(15px);
  box-shadow: 0 8px 25px rgba(0, 92, 41, 0.4);
}

#scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-to-top-btn:hover.visible {
  transform: translateY(-5px);
}

/* Mobile Nav */
@media (max-width: 991px) {
  #main-header.is-floating {
    top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    left: 0 !important;
    transform: none !important;
    border: none !important;
  }

  #main-header.is-floating .container-xl {
    width: 100% !important;
  }

  .hs-dropdown-menu {
    display: block !important;
    z-index: 6000 !important;
    left: 0 !important;
    transform: translateY(10px) !important;
    width: calc(100vw - 40px) !important;
    min-width: unset !important;
  }

  .hs-dropdown-parent:hover .hs-dropdown-menu,
  .hs-dropdown-parent.mobile-open .hs-dropdown-menu {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hs-dropdown-item {
    color: #4b5563 !important;
    font-size: 1rem !important;
    padding: 12px 16px !important;
  }

  .hs-dropdown-item:active,
  .hs-dropdown-item:focus {
    color: #005c29 !important;
    background: rgba(0, 92, 41, 0.05) !important;
  }
}

/* Animations */
.anim-fade-up,
.reveal,
.anim-fade-left,
.reveal-left,
.anim-fade-right,
.reveal-right,
.anim-scale-up,
.anim-stagger-group>* {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.card-reveal-wrapper>.product-card,
.anim-fade-up>.node-card {
  pointer-events: none;
}

.card-reveal-wrapper.reveal-complete>.product-card,
.anim-fade-up.reveal-complete>.node-card {
  pointer-events: auto;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --brand-green: #10f15c;
  --brand-green-hover: #0ed953;
  --brand-dark: #1a1a1a;
  --brand-gray: #f5f5f5;
  --brand-border: #e5e7eb;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden !important;
  max-width: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn-hs-primary {
  background-color: var(--brand-green);
  color: #111827 !important;
  padding: 0.35rem 1rem !important;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-hs-primary:hover {
  background-color: var(--brand-green-hover);
}

.btn-hs-primary-lg {
  background-color: var(--brand-green);
  color: #111827 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  cursor: pointer;
}

.btn-hs-primary-lg:hover {
  background-color: var(--brand-green-hover);
}

.btn-hs-outline-white {
  border: 2px solid #fff;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 9999px;
  font-weight: 600;
  background: transparent;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}

.btn-hs-outline-white:hover {
  background: #fff;
  color: #111827 !important;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  background-color: var(--brand-dark);
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2rem;
  }
}

/* Brand Ticker */
.brand-ticker-section {
  padding: 2.5rem 0;
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
}

.ticker-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 1.5rem;
}

.marquee-container {
  overflow: hidden;
  display: flex;
}

.marquee-content {
  display: flex;
  gap: 8rem;
  align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  padding-right: 8rem;
  width: max-content;
}

.marquee-content img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Philosophy Grid */
.philosophy-grid-section {
  padding: 5rem 0;
  background: #fff;
}

.philosophy-container-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.metrics-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.metric-block {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-green);
}

.metric-lbl {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

.philosophy-section-matrix {
  position: relative;
  width: 100%;
  padding: 4rem 0;
}

.philosophy-backdrop-box {
  position: absolute;
  left: 20%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #0e4f2a;
  border-radius: 24px;
  z-index: 0;
}

.philosophy-matrix-pillar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas: "philosophy image" "philosophy advantages";
  gap: 1.5rem;
}

.card-philosophy {
  grid-area: philosophy;
  margin: 2rem 0 2rem -2rem;
  background-color: #e5ede3;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-img-wrap {
  grid-area: image;
  margin: -2rem 2rem 0 0;
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-advantages {
  grid-area: advantages;
  margin: 0 2rem -2rem 0;
  background-color: #e5ede3;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.philosophy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}

.philosophy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #555555;
}

.phil-bullet {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #15803d;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.phil-keyword {
  color: #15803d;
  font-weight: 700;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 0.75rem;
}

.adv-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
  align-items: center;
  text-align: center;
}

.adv-icon {
  background: transparent !important;
  box-shadow: none !important;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.adv-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .philosophy-container-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy-matrix-pillar {
    grid-template-columns: 1fr;
    grid-template-areas: "philosophy" "image" "advantages";
  }

  .philosophy-backdrop-box {
    left: 0;
  }

  .card-philosophy,
  .card-img-wrap,
  .card-advantages {
    margin: 0;
  }
}

/* Products Section */
.products-showcase-section {
  padding: 5.5rem 0;
  background: var(--brand-gray);
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.sub-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-green);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.product-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--brand-gray);
  overflow: hidden;
}

.product-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

.tag-indicator-dot {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info {
  padding: 1.25rem;
}

.product-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-info p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

@media (max-width: 1199.98px) {
  .products-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Transformation Pipeline */
.transformation-pipeline-section {
  padding: 6rem 0;
  background: #1a1a1a;
  color: #fff;
}

.pipeline-main-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  text-align: center;
  margin-bottom: 3.5rem;
}

.pipeline-flow-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.pipeline-node {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 480px;
}

.node-card {
  background: #262626;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.node-meta {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  display: block;
}

.node-card p {
  font-size: 0.875rem;
  color: #a3a3a3;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.node-icon-glow {
  background: transparent !important;
  box-shadow: none !important;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto -0.75rem auto;
}

.node-icon-glow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Principles */
.principles-hub-section {
  padding: 6rem 0;
  background: #fff;
}

.principles-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.principles-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.principle-entry {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.checked-circle {
  background: transparent !important;
  box-shadow: none !important;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checked-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.entry-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.entry-text p {
  color: #6b7280;
  font-size: 0.9rem;
}

.video-media-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.video-poster {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brand-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

/* Bottom CTA */
.bottom-cta-collage-section {
  padding: 6rem 0;
  background: #111827;
  color: #fff;
}

.collage-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.asymmetric-images-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.img-deck-item {
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
}

.img-deck-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}

.cta-form-context-deck h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}

.cta-form-context-deck p {
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Font Fixes & Global Helpers */
.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

/* --- Custom Footer Grid to Fix Wrapping --- */
.footer-grid-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.5fr 1.2fr;
  /* Adjusted proportions so Brands has more space */
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-nav-column h4 {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-nav-column a {
  color: #9ca3af;
  font-size: 0.9rem;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-nav-column a:hover {
  color: var(--brand-green);
}

/* Ensure Brands Links Never Break Mid-Word */
.brand-link-item {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .footer-grid-columns {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .principles-layout-split,
  .collage-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-grid-columns {
    grid-template-columns: 1fr;
  }
}

:root {
  --brand-green: #28cf75;
  --brand-green-hover: #21b363;
  --brand-dark: #1a1a1a;
  --brand-gray: #f5f5f5;
  --brand-border: #e5e7eb;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden !important;
  max-width: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
p,
span,
li,
a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: flex;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
  animation: marquee 30s linear infinite;
}

.marquee-content img {
  height: 40px;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

#page-loader {
  position: fixed;
  inset: 0;
  background: var(--brand-dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-content {
  text-align: center;
}

.loader-brand-logo {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
}

.loader-brand-logo span {
  display: inline-block;
}

.loader-progress-track {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto 0.75rem auto;
}

.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--brand-green);
  border-radius: 99px;
  transition: width 0.05s linear;
}

.loader-percentage-counter {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transition: background 0.1s ease, backdrop-filter 0.1s ease, box-shadow 0.1s ease;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid #f3f4f6;
}

#main-header.glass {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10) !important;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 1.5rem;
}

.header-logo {
  width: 150px; height: auto;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.navbar-hs {
  width: 100%;
  padding: 0;
}

.hs-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563 !important;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.hs-nav-link:hover,
.hs-nav-link.active {
  color: var(--brand-green) !important;
}

.navbar-toggler {
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-collapse {
  background: #fff;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0.5rem;
    border-top: 1px solid #f3f4f6;
  }
}

.btn-hs-primary {
  background-color: var(--brand-green);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-hs-primary:hover {
  background-color: var(--brand-green-hover);
  color: #fff;
}

.btn-hs-primary-lg {
  background-color: var(--brand-green);
  color: #fff;
  padding: 0.875rem 2.25rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.btn-hs-primary-lg:hover {
  background-color: var(--brand-green-hover);
  color: #fff;
}

.btn-hs-outline-white {
  border: 2px solid #fff;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  background: transparent;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.btn-hs-outline-white:hover {
  background: #fff;
  color: #1a1a1a;
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  background-color: var(--brand-dark);
  z-index: 0;
}

.hero-image,
.hero-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  max-width: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2rem;
  }
}

.brand-ticker-section {
  padding: 2.5rem 0;
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
}

.ticker-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 1.5rem;
}

.marquee-container {
  overflow: hidden;
  display: flex;
}

.marquee-content {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  padding-right: 2.5rem;
}

.marquee-content img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.philosophy-grid-section {
  padding: 5rem 0;
  background: #fff;
}

.philosophy-container-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 991.98px) {
  .philosophy-container-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.metrics-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.metric-block {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-green);
}

.metric-lbl {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

.philosophy-section-matrix {
  position: relative;
  width: 100%;
  padding: 5rem 0;
}

.philosophy-matrix-pillar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  z-index: 1;
}

.philosophy-backdrop-box {
  position: absolute;
  right: -5rem;
  top: 15%;
  bottom: 15%;
  width: 100%;
  background-color: #0e4f2a;
  border-radius: 20px;
  z-index: 0;
  height: 67%;
}

/* Tab and Mobile Viewports (1024px and below) */
@media (min-width: 576px) and (max-width: 991.98px) {
  .bg-custom-md {
    background-color: #0e4f2a !important;
  }
}

.card-philosophy,
.card-advantages {
  position: relative;
  z-index: 10;
  background-color: #e5ede3;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  flex: 2;
  transition: transform 0.1s ease, top 0.1s ease, max-width 0.1s ease, border-radius 0.1s ease, background 0.1s ease;
}

.card-philosophy {
  min-height: 240px;
  margin-left: -6rem;
  z-index: 11;
  width: 330px;
}

.card-advantages {
  min-height: 300px;
  margin-top: 0;
  width: 240px;
}

.card-philosophy:hover,
.card-advantages:hover {
  transform: scale(1.02);
}

.card-img-wrap {
  position: relative;
  z-index: 10;
  width: 330px; height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s ease, top 0.1s ease, max-width 0.1s ease, border-radius 0.1s ease, background 0.1s ease;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.card-img-wrap:hover {
  transform: scale(1.02);
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 0.75rem;
}

.adv-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
  align-items: center;
  text-align: center;
}

.adv-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}

@media (max-width: 767.98px) {
  .philosophy-matrix-pillar {
    flex-direction: column;
    padding: 1rem;
    gap: 1.25rem;
  }

  .card-philosophy,
  .card-advantages {
    margin: 0;
    width: 100%;
    min-height: auto;
  }

  .card-img-wrap {
    width: 100%;
    height: 240px;
  }

  .philosophy-backdrop-box {
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 1rem;
  }

  .philosophy-section-matrix {
    padding: 1.5rem 0;
  }
}

.products-showcase-section {
  padding: 5.5rem 0;
  background: var(--brand-gray);
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.sub-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-green);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1199.98px) {
  .products-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid-4 {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.product-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--brand-gray);
  overflow: hidden;
}

.product-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.tag-indicator-dot {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info {
  padding: 1.25rem;
}

.product-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-info p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

.transformation-pipeline-section {
  padding: 6rem 0;
  background: #1a1a1a;
  color: #fff;
}

.pipeline-main-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 3.5rem;
}

.pipeline-flow-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.pipeline-node {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: 380px;
}

.node-card {
  background: #262626;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.node-card::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.35;
}

.card-purple::before {
  background-color: #a855f7;
}

.card-green::before {
  background-color: #22c55e;
}

.card-blue::before {
  background-color: #3b82f6;
}

.card-yellow::before {
  background-color: #eab308;
}

.card-orange::before {
  background-color: #f97316;
}

.node-card>* {
  position: relative;
  z-index: 1;
}

.node-meta {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  display: block;
}

.node-card p {
  font-size: 0.875rem;
  color: #a3a3a3;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.node-icon-glow {
  margin-top: auto;
  width: 120px;
  height: 116px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.node-icon-glow {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: -0.75rem;
}

.card-purple .node-icon-glow {
  background: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

.card-green .node-icon-glow {
  background: #22c55e;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.card-blue .node-icon-glow {
  background: #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.card-yellow .node-icon-glow {
  background: #eab308;
  box-shadow: 0 0 15px rgba(234, 179, 8, 0.6);
}

.card-orange .node-icon-glow {
  background: #f97316;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

@media (max-width: 991.98px) {
  .pipeline-node {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 575.98px) {
  .pipeline-node {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-hub-section {
  padding: 6rem 0;
  background: #fff;
}

.principles-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.principles-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 991.98px) {
  .principles-layout-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.principle-entry {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.checked-circle {
  width: 36px;
  height: 36px;
  background: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.entry-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.entry-text p {
  color: #6b7280;
  font-size: 0.9rem;
}

.video-media-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.video-poster {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brand-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.floating-badge-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  padding: 0.45rem 1.1rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 600;
}

.bottom-cta-collage-section {
  padding: 6rem 0;
  background: #111827;
  color: #fff;
}

.collage-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 991.98px) {
  .collage-split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.asymmetric-images-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 575.98px) {
  .asymmetric-images-deck {
    grid-template-columns: 1fr;
  }
}

.img-deck-item {
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
}

.img-deck-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.cta-form-context-deck h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.cta-form-context-deck p {
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.6;
}

#main-footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 5rem 0 2rem;
  border-top: 1px solid #1f2937;
}

.footer-logo {
  height: 42px;
  margin-bottom: 1.5rem;
}

.footer-corporate-profile p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.footer-nav-column h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-nav-column ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-column a {
  font-size: 0.9rem;
  color: #9ca3af;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-nav-column a:hover {
  color: var(--brand-green);
}

.footer-brands-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}

.contact-meta-link {
  color: #d1d5db;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.contact-meta-link:hover {
  color: var(--brand-green);
}

.address-paragraph {
  font-size: 0.875rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.footer-copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-socials a {
  color: #9ca3af;
  transition: color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-socials a:hover {
  color: var(--brand-green);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-desc {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.downloads-header-section {
  padding: 9rem 0 3rem;
  background: #fff;
}

.downloads-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.downloads-description {
  color: #6b7280;
  line-height: 1.75;
  max-width: 720px;
}

.downloads-grid-section {
  padding: 3rem 0 6rem;
  background: var(--brand-gray);
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1199.98px) {
  .downloads-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479.98px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }
}

.download-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: #e5e7eb;
  text-decoration: none;
}

.download-card>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 1rem;
  transition: transform 0.1s ease, top 0.1s ease, max-width 0.1s ease, border-radius 0.1s ease, background 0.1s ease;
}

.download-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  padding: 1.5rem 1rem 1rem;
}

.download-card-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.brands-hero {
  min-height: 80vh;
  background: url('../assets/brands/Brands-hero.png') center/cover no-repeat;
  background-color: #0e4f2a;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  color: #fff;
}

.brands-hero-content {
  max-width: 700px;
  padding: 3rem 2rem;
}

.brands-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.brands-hero p {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.brands-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand-circles {
  display: flex;
}

.brand-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}

.brand-circle:first-child {
  margin-left: 0;
}

.brands-stat-number {
  font-size: 2rem;
  font-weight: 700;
}

.brands-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.brands-tabs-section {
  padding: 2.5rem 0;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.brands-tabs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brand-tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid transparent;
  background: #fff;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}

.brand-tab-btn:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

.brand-tab-btn.active {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}

.brand-showcase-section {
  padding: 5rem 0;
  background: #fff;
}

.brand-showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.brand-showcase-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.brand-showcase-desc {
  color: #6b7280;
  line-height: 1.75;
}

.brand-showcase-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.brand-product-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  position: relative;
  aspect-ratio: 3/4;
}

.brand-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.brand-product-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem 1rem 0.75rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.brand-product-desc {
  font-size: 0.78rem;
  opacity: 0.85;
  font-weight: 400;
}

.brand-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

@media (max-width: 991.98px) {
  .brand-showcase-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .brand-showcase-cards {
    grid-template-columns: 1fr;
  }
}

.brand-features-section {
  padding: 5rem 0;
  background: var(--brand-gray);
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-green);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.features-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

@media (max-width: 991.98px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479.98px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--brand-green);
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

.applications-section {
  padding: 5rem 0;
  background: #fff;
}

.applications-header {
  text-align: center;
  margin-bottom: 3rem;
}

.applications-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.applications-desc {
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

@media (max-width: 1199.98px) {
  .applications-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  .applications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 479.98px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.app-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  padding: 1.25rem 0.75rem 0.6rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-hero-section {
  padding: 10rem 0 5rem;
  background: #fff;
}

.contact-hero-img {
  border-radius: 24px;
  overflow: hidden;
  min-height: 380px;
  background: url('../assets/contact/Contact-Landing.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  width: 100%;
}

.contact-hero-overlay h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
}

.contact-hero-overlay p {
  font-size: 1.1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  padding: 4rem 0;
}

@media (max-width: 991.98px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info-section>p {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-info-content p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-form-section {
  background: #f9fafb;
  padding: 2.5rem;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(40, 207, 117, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.contact-map-section {
  padding: 0 0 3rem;
}

.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.faq-section {
  padding: 3rem 0 4rem;
}

.faq-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.faq-item {
  border-bottom: 1.5px solid #e5e7eb;
  margin-bottom: 0.875rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

.faq-item.active .faq-question {
  color: var(--brand-green);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.products-hero-section {
  padding: 9rem 0 3rem;
  background: #fff;
}

.products-hero-wrap {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
}

.product-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  background: #f3f4f6;
  color: #6b7280;
  font-family: 'Poppins', sans-serif;
}

.product-tab-btn.active {
  background: var(--brand-green);
  color: #111;
  border-color: var(--brand-green);
  box-shadow: 0 4px 20px rgba(0, 224, 101, 0.25);
}

.product-tab-btn:hover:not(.active) {
  background: #e5e7eb;
  color: #111;
}

.icon-active {
  display: none;
}

.icon-inactive {
  display: block;
}

.product-tab-btn.active .icon-active {
  display: block;
}

.product-tab-btn.active .icon-inactive {
  display: none;
}

.product-tab-content {
  display: none;
}

.product-tab-content.active {
  display: block;
}

.tab-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
}

.tab-section-desc {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.products-table-wrap {
  overflow-x: auto;
  margin-bottom: 4rem;
}

.products-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
}

.products-table thead tr {
  background: #005C29;
  color: #fff;
}

.products-table th {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  border: 1px solid #005C29;
}

.products-table td {
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  font-size: 0.875rem;
  color: #6b7280;
  vertical-align: middle;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479.98px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  text-align: center;
}

.benefit-img-wrap {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.benefit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 1rem;
}

.benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #005C29;
  margin-bottom: 0.4rem;
}

.benefit-item p {
  color: #6b7280;
  font-size: 0.85rem;
}

.products-cta-section {
  padding: 0 0 5rem;
}

.products-cta-inner {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.products-cta-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.products-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.products-cta-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.products-cta-logo {
  width: 80%;
  max-width: 500px;
  max-height: 320px;
  object-fit: contain;
  margin-bottom: 2.5rem;
}

.legal-hero-section {
  padding: 10rem 0 3rem;
  background: #fff;
}

.legal-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-content-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
  padding-bottom: 5rem;
}

@media (max-width: 991.98px) {
  .legal-content-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.legal-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.legal-sidebar-nav {
  background: #f9fafb;
  border-radius: 12px;
  padding: 0.75rem;
}

.legal-sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  color: #4b5563;
  font-weight: 500;
  font-size: 0.9rem;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.2s;
  text-decoration: none;
  border-radius: 8px;
}

.legal-sidebar-link:last-child {
  border-bottom: none;
}

.legal-sidebar-link:hover,
.legal-sidebar-link.active {
  color: var(--brand-green);
  background: #fff;
}

.legal-content-block {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.legal-content-block:last-child {
  border-bottom: none;
}

.legal-content-block h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.legal-content-block p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content-block ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content-block li {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.legal-info-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.legal-info-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.875rem;
}

.legal-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.legal-info-label {
  font-weight: 600;
  color: #374151;
}

.legal-info-value {
  color: #6b7280;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-content {
  text-align: center;
}

.loader-brand-logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.08em;
  display: flex;
  gap: 0.1em;
}

.loader-brand-logo span {
  animation: loaderFadeIn 0.05s ease forwards;
  opacity: 0;
}

.loader-progress-track {
  width: 200px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 99px;
  margin: 1.5rem auto 0.75rem;
  overflow: hidden;
}

.loader-progress-fill {
  height: 100%;
  background: var(--brand-green);
  border-radius: 99px;
  width: 0%;
  transition: width 0.05s linear;
}

.loader-percentage-counter {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 500;
}

@keyframes loaderFadeIn {
  to {
    opacity: 1;
  }
}

.btn-primary {
  background-color: var(--brand-green);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--brand-green-hover);
}

.btn-primary-large {
  background-color: var(--brand-green);
  color: #ffffff;
  padding: 0.875rem 2.25rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
  display: inline-flex;
}

.btn-primary-large:hover {
  background-color: var(--brand-green-hover);
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.product-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--brand-gray);
  overflow: hidden;
}

.product-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-indicator-dot {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info {
  padding: 1.25rem;
}

.product-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.1s ease, backdrop-filter 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid #f3f4f6;
}

#main-header.glass {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10), 0 1.5px 0 rgba(255, 255, 255, 0.6) inset !important;
}

.nav-link {
  font-size: 0.937rem;
  font-weight: 500;
  color: #4b5563;
  transition: color 0.2s ease;
  gap: 1.5rem;
}

.nav-link:hover,
.nav-link-active,
.nav-link.active {
  color: var(--brand-green);
}

.hero-section {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brand-dark);
  z-index: 2;
}

.hero-video-el,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  max-width: none;
}

.hero-content-wrap {
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hero-btn-outline:hover {
  background-color: #ffffff;
  color: var(--brand-dark);
}

.brand-ticker-section {
  padding: 2.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--brand-border);
}

.brand-ticker-section .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.container-fluid {
  width: 100%;
  padding-left: 2rem;
  padding-right: 5rem;
}

.ticker-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 1.5rem;
}

.philosophy-grid-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.philosophy-container-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10rem;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.metrics-row {
  display: flex;
  gap: 3rem;
}

.metric-block {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-green);
}

.metric-lbl {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.philosophy-section-matrix {
  position: relative;
  width: 100%;
  padding: 6rem 0;
}

.philosophy-matrix-pillar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  z-index: 1;
}

.philosophy-backdrop-box {
  position: absolute;
  right: -6rem;
  top: 15%;
  bottom: 15%;
  width: 100%;
  background-color: #0e4f2a;
  border-radius: 20px 20px 20px 20px;
  z-index: 0;
  height: 67%;
}

.card-philosophy,
.card-advantages {
  position: relative;
  z-index: 10;
  background-color: #e5ede3;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.111);
  display: flex;
  flex-direction: column;
  transition: transform 0.1s ease, top 0.1s ease, max-width 0.1s ease, border-radius 0.1s ease, background 0.1s ease;
  flex: 2 2 0;
}

#philosophy-card {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  height: 200px;
}

#philosophy-card .card-heading {
  margin-bottom: 1rem;
  line-height: 1.2;
}

#philosophy-card .philosophy-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#philosophy-card .philosophy-list-item p {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

#philosophy-card .philosophy-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.card-advantages {
  min-height: 320px;
  margin-top: 0;
  width: 250px;
  font-family: "Poppins", Helvetica;
  font-weight: 500;
  color: var(--brand-dark);
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
}

.card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.philosophy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.philosophy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #555555;
}

.phil-bullet {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #15803d;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.phil-keyword {
  color: #15803d;
  font-weight: 700;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
}

.adv-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #555555;
  align-items: center;
}

.adv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.25rem;
}

.card-img-wrap {
  position: relative;
  z-index: 10;
  width: 330px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s ease, top 0.1s ease, max-width 0.1s ease, border-radius 0.1s ease, background 0.1s ease;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-philosophy:hover,
.card-advantages:hover,
.card-img-wrap:hover {
  transform: scale(1.02);
}

.products-showcase-section {
  padding: 6rem 0;
  background: var(--brand-gray);
}

.text-center-wrap {
  text-align: center;
  max-width: 800px;
  margin-bottom: 4rem;
}

.section-title-centered {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-subtitle-centered {
  color: #4b5563;
  line-height: 1.65;
}

.products-dynamic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.transformation-pipeline-section {
  padding: 6rem 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.pipeline-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.pipeline-flow-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.pipeline-node {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: 400px;
}

.node-card {
  background: #262626;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: none;
  position: relative;
  overflow: hidden;
}

.node-card::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.35;
}

.card-purple::before {
  background-color: #a855f7;
}

.card-green::before {
  background-color: #22c55e;
}

.card-blue::before {
  background-color: #3b82f6;
}

.card-yellow::before {
  background-color: #eab308;
}

.card-orange::before {
  background-color: #f97316;
}

.node-card>* {
  position: relative;
  z-index: 1;
}

.node-meta {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  display: block;
}

.node-card p {
  font-size: 0.875rem;
  color: #a3a3a3;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

.node-icon-glow {
  margin-top: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.card-purple .node-icon-glow {
  background: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

.card-green .node-icon-glow {
  background: #22c55e;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.card-blue .node-icon-glow {
  background: #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.card-yellow .node-icon-glow {
  background: #eab308;
  box-shadow: 0 0 15px rgba(234, 179, 8, 0.6);
}

.card-orange .node-icon-glow {
  background: #f97316;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

.principles-hub-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.principles-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.principles-header-row .section-title {
  margin-bottom: 0;
}

.principles-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.principle-entry {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.checked-circle {
  width: 28px;
  height: 28px;
  background: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.entry-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.entry-text p {
  color: #6b7280;
  font-size: 0.937rem;
}

.video-interactive-container {
  position: relative;
}

.video-media-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.video-poster {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brand-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.floating-badge-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 600;
}

.overlay-cta-btn {
  margin-top: 2rem;
}

.bottom-cta-collage-section {
  padding: 6rem 0;
  background: #111827;
  color: #ffffff;
}

.collage-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.asymmetric-images-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.img-deck-item {
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
}

.img-deck-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-form-context-deck h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-form-context-deck p {
  color: #9ca3af;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.wide-btn {
  display: inline-flex;
  min-width: 200px;
  justify-content: center;
}

#main-footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid #1f2937;
}

.footer-grid-columns {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-corporate-profile .footer-logo {
  height: 45px;
  margin-bottom: 1.5rem;
}

.footer-corporate-profile p {
  font-size: 0.937rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-nav-column h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-nav-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-nav-column a {
  font-size: 0.937rem;
  transition: color 0.2s ease;
}

.footer-nav-column a:hover {
  color: var(--brand-green);
}

.contact-meta-link {
  color: #ffffff;
}

.address-paragraph {
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.terms-privacy-page-section,
.terms-privacy-hero-section {
  padding-top: 150px;
  padding-bottom: 2rem;
  background-color: #ffffff;
}

.terms-privacy-content-section {
  padding-bottom: 5rem;
  background-color: #ffffff;
}

.terms-privacy-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

.privacy-policy-subtitle {
  color: #4b5563;
  line-height: 1.6;
  max-width: 800px;
}

.privacy-policy-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.privacy-policy-header-info {
  background: #f9fafb;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  min-width: 350px;
}

.privacy-policy-info-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.privacy-policy-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.privacy-policy-info-label {
  font-weight: 600;
  color: #374151;
}

.privacy-policy-info-value,
.privacy-policy-info-value a {
  color: #6b7280;
}

.terms-privacy-content-layout,
.terms-privacy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.terms-privacy-sidebar {
  position: sticky;
  top: 100px;
}

.terms-privacy-sidebar-nav {
  background: #f9fafb;
  border-radius: 12px;
  padding: 1rem;
}

.terms-privacy-sidebar-nav ul {
  list-style: none;
}

.terms-privacy-sidebar-item,
.terms-privacy-sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  color: #4b5563;
  font-weight: 500;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.terms-privacy-sidebar-item:last-child,
.terms-privacy-sidebar-link:last-child {
  border-bottom: none;
}

.terms-privacy-sidebar-item:hover,
.terms-privacy-sidebar-link:hover,
.terms-privacy-sidebar-link.active {
  color: var(--brand-green);
  background: #ffffff;
  border-radius: 8px;
}

.terms-privacy-content-area,
.terms-privacy-content {
  padding-bottom: 2rem;
}

.terms-privacy-content-block,
.terms-privacy-block {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.terms-privacy-content-block-last,
.terms-privacy-block-last {
  border-bottom: none;
}

.terms-privacy-content-block h3,
.terms-privacy-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.terms-privacy-content-block p,
.terms-privacy-text {
  color: #4b5563;
  line-height: 1.75;
  font-size: 0.937rem;
  margin-bottom: 1rem;
}

.terms-privacy-list {
  list-style: none;
  padding-left: 1rem;
}

.terms-privacy-list li {
  color: #4b5563;
  line-height: 1.75;
  font-size: 0.937rem;
  margin-bottom: 0.5rem;
}

.terms-privacy-contact-grid,
.terms-privacy-contact-info {
  margin-top: 1.5rem;
}

.terms-privacy-contact-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.terms-privacy-contact-label {
  font-weight: 600;
  color: #374151;
  min-width: 80px;
}

.terms-privacy-contact-value {
  color: #6b7280;
  line-height: 1.6;
}

.contact-hero {
  position: relative;
  height: 400px;
  background-image: url('https://images.unsplash.com/photo-1596541223130-5d31a73fb6c6?q=80&w=2071&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  border-radius: 1.5rem;
  margin-top: 120px;
  margin-bottom: 4rem;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 3rem;
  max-width: 600px;
}

.contact-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero-content p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.contact-info-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.contact-info-section>p {
  color: #4b5563;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon-wrap {
  width: 40px;
  height: 40px;
  background-color: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  color: #4b5563;
  line-height: 1.6;
}

.contact-form-section {
  background: transparent;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #f9fafb;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  color: #374151;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-green);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(0, 222, 102, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-map-section {
  margin-bottom: 6rem;
}

.contact-map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 1.5rem;
  overflow: hidden;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.faq-section {
  max-width: 1100px;
  margin: 0 auto 6rem;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--brand-dark);
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--brand-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease, top 0.1s ease, max-width 0.1s ease, border-radius 0.1s ease, background 0.1s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 1.5rem;
  color: #4b5563;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.downloads-header-section {
  padding-top: 150px;
  padding-bottom: 3rem;
  background-color: #ffffff;
}

.downloads-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.downloads-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-dark);
  flex-shrink: 0;
}

.downloads-description {
  color: #6b7280;
  line-height: 1.6;
  max-width: 700px;
  font-size: 1rem;
}

.downloads-grid-section {
  padding-bottom: 6rem;
  background-color: #ffffff;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.download-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 320px;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.download-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.download-card:hover img {
  transform: scale(1.05);
}

.download-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}

.download-card-title {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
}

.download-icon-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  background-color: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.brands-hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #111827 0%, var(--brand-dark) 50%, #111827 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 100px;
  overflow: hidden;
  color: white;
}

.brands-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.brands-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.brands-hero p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 3rem;
}

.brands-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.brand-circles {
  display: flex;
}

.brand-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #111827;
  margin-left: -20px;
  object-fit: cover;
}

.brand-circle:first-child {
  margin-left: 0;
}

.brands-stat-text {
  text-align: left;
}

.brands-stat-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.brands-stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brands-tabs-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.brands-tabs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-tab-btn {
  padding: 1rem 2.5rem;
  background-color: #f9fafb;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.brand-tab-btn:hover {
  background-color: #f3f4f6;
  color: var(--brand-dark);
}

.brand-tab-btn.active {
  background-color: var(--brand-green);
  color: white;
  border-color: var(--brand-green);
}

.brand-showcase-section {
  padding: 4rem 0 6rem;
  background-color: #ffffff;
}

.brand-showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.brand-showcase-logo {
  height: 60px;
  margin-bottom: 2rem;
}

.brand-showcase-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.brand-showcase-desc {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.125rem;
}

.brand-showcase-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.brand-product-card {
  background: #f9fafb;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.1s ease, top 0.1s ease, max-width 0.1s ease, border-radius 0.1s ease, background 0.1s ease;
}

.brand-product-card:hover {
  transform: translateY(-5px);
}

.brand-product-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.brand-product-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.brand-product-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.brand-features-section {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.features-header {
  margin-bottom: 4rem;
}

.features-subtitle {
  color: #9ca3af;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 2rem;
}

.feature-item {
  flex: 0 1 calc(20% - 2rem);
  min-width: 200px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: white;
}

.feature-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

.applications-section {
  padding: 6rem 0;
  background-color: #ffffff;
  text-align: center;
}

.applications-header {
  margin-bottom: 4rem;
}

.applications-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.applications-desc {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.app-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 300px;
  flex: 0 0 280px;
}

.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.app-card:hover img {
  transform: scale(1.05);
}

.app-card-label {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brand-dark);
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.products-hero {
  position: relative;
  height: 550px;
  background-color: var(--brand-dark);
  color: white;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.products-hero-nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  color: #9ca3af;
}

.products-hero-nav span.active {
  color: var(--brand-green);
  font-weight: 600;
}

.products-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  max-width: 800px;
  line-height: 1.1;
}

.products-hero p {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 600px;
  margin-bottom: 4rem;
}

.products-hero-stats {
  display: flex;
  gap: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.product-stat {
  text-align: center;
}

.product-stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.product-stat p {
  color: #9ca3af;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.products-layout-section {
  padding: 6rem 0;
  background-color: #f9fafb;
}

.products-main-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 4rem;
}

.products-sidebar-nav {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 120px;
}

.product-sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  color: #4b5563;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.product-sidebar-item:hover,
.product-sidebar-item.active {
  color: var(--brand-green);
  background-color: #f0fdf4;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.product-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 430px;
  display: block;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2rem;
}

.product-card-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-green);
  font-weight: 600;
  font-size: 0.875rem;
}

.product-card-btn .arrow-icon {
  width: 32px;
  height: 32px;
  background: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.products-showcase-section {
  background-color: #ffffff;
}

@media (max-width: 1024px) {

  .philosophy-container-layout,
  .principles-layout-split,
  .collage-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy-section-matrix {
    padding: 1.5rem 0;
  }

  .philosophy-matrix-pillar {
    max-width: 600px;
    margin: 0 auto;
  }

  .products-dynamic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid-columns {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .metrics-row {
    gap: 1.5rem;
    justify-content: space-between;
  }

  .products-dynamic-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-flow-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pipeline-node {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-grid-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .principles-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-copyright-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .philosophy-section-matrix {
    padding: 1rem 0;
  }

  .philosophy-matrix-pillar {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }

  .card-philosophy,
  .card-advantages {
    margin: 0;
    min-height: auto;
    width: 100%;
  }

  .card-img-wrap {
    height: 280px;
    width: 100%;
  }

  .philosophy-backdrop-box {
    width: 100%;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 1rem;
  }

  .asymmetric-images-deck {
    grid-template-columns: 1fr;
  }

  .img-deck-item {
    height: 200px;
  }

  .terms-privacy-content-layout,
  .terms-privacy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .privacy-policy-header-split {
    flex-direction: column;
  }

  .privacy-policy-header-info {
    width: 100%;
    min-width: unset;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .downloads-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .downloads-header-split {
    flex-direction: column;
    gap: 1.5rem;
  }

  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }

  .applications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-showcase-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brand-showcase-cards {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {

  .features-grid,
  .applications-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .products-main-layout {
    grid-template-columns: 1fr;
  }

  .products-sidebar-nav {
    position: relative;
    top: 0;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 0.5rem;
  }

  .product-sidebar-item {
    border-bottom: none;
    border-right: 1px solid #f3f4f6;
  }
}

@media (max-width: 768px) {
  .products-hero h1 {
    font-size: 2.5rem;
  }

  .products-hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .products-hero-nav {
    display: none;
  }
}

.transformation-pipeline-section .node-icon-glow {
  /* put the circle back */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* keep the auto-centering from the second rule */
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: -0.75rem;
}

/* let the cards breathe and wrap cleanly */
.pipeline-flow-row {
  gap: 1.5rem;
}

.pipeline-node {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 480px;
}

/* Yarn Engineering Custom Button */
.floating-engineering-btn {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-block;
  z-index: 10;
}

.floating-engineering-btn .yarn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background-color: #ffffff;
  color: #d94f4f;
  border: 2px solid #d94f4f;
  border-radius: 0;
  font-size: 15px;
  font-family: sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  outline: none;
  transition: background 0.15s, color 0.15s;
}

.floating-engineering-btn .yarn-btn:hover {
  background-color: #d94f4f;
  color: #ffffff;
}

.floating-engineering-btn .handle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border: 2px solid #d94f4f;
  z-index: 2;
}

.floating-engineering-btn .handle.tl {
  top: -5px;
  left: -5px;
}

.floating-engineering-btn .handle.tr {
  top: -5px;
  right: -5px;
}

.floating-engineering-btn .handle.bl {
  bottom: -5px;
  left: -5px;
}

.floating-engineering-btn .handle.br {
  bottom: -5px;
  right: -5px;
}

/* This block ONLY executes on screens smaller than 1024px */
@media (max-width: 1023px) {
  .philosophy-matrix-pillar {
    display: flex;
    flex-direction: column;
  }

  .card-philosophy {
    order: 1;
    /* First */
  }

  .card-img-wrap {
    order: 2;
    /* Middle (Changes position only on mobile) */
    margin: 20px 0;
  }

  .card-advantages {
    order: 3;
  }
}

/* --- UI Corrections: Explore Button & Product Card Arrows --- */



/* Product card header row with title and green dot arrow */
.product-title-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 0.5rem !important;
  width: 100% !important;
}

.product-title-row h3 {
  margin-bottom: 0 !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
}

/* Position tag-indicator-dot statically inside the title row next to h3 */
.product-info .tag-indicator-dot {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  background-color: var(--brand-green) !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  margin-left: 0.5rem !important;
  transition: transform 0.3s ease, background-color 0.3s ease !important;
}

/* Ensure the SVG arrow is styled nicely */
.product-info .tag-indicator-dot svg {
  width: 12px !important;
  height: 12px !important;
  display: block !important;
}

/* Hover effect on product card - scale and hover color */
.product-card:hover .tag-indicator-dot {
  transform: scale(1.1) !important;
  background-color: var(--brand-green-hover) !important;
}








#main-header.is-floating .header-logo { display: none; transition: height 0.1s; }




/* FORCE DESKTOP LAYOUT (Philosophy -> Image -> Advantages) */
@media (min-width: 1024px) {
    .philosophy-container-layout {
        display: grid !important;
        grid-template-columns: 1fr 1.25fr !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    .philosophy-matrix-pillar {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.25rem !important;
        position: relative;
    }
    .card-philosophy {
        order: 1 !important;
        flex: 1 !important;
        align-self: flex-end !important;
        margin: 0 !important;
        margin-top: 4rem !important;
        margin-bottom: calc((460px - 300px) / 2) !important;
        z-index: 10 !important;
        padding: 2rem 1.5rem !important;
        height: 300px !important;
        align-items: flex-start !important;       text-align: left !important;
    }
    .card-img-wrap {
        order: 2 !important;
        flex: 0 0 280px !important;
        width: 280px !important;
        height: 420px !important;
        margin: 0 !important;
        z-index: 15 !important;
    }
    .card-advantages {
        order: 3 !important;
        flex: 1.1 !important;
        height: 499px !important;
        margin: 0 !important;
        z-index: 10 !important;
        padding: 2rem 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: left !important;
        border-radius: 15px !important;
    }
    .philosophy-backdrop-box {
        left: 10% !important;
        right: -5rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        bottom: auto !important;
        height: 500px !important;
        width: auto !important;
        border-radius: 24px !important;
    }
}


/* FORCE BLACK TEXT ON ALL PRIMARY BUTTONS */
.btn-hs-primary,
.btn-hs-primary-lg {
  color: #000000 !important;
}

.btn-hs-primary:hover,
.btn-hs-primary-lg:hover {
  color: #000000 !important;
}

/* Adjust Philosophy spacing */
.philosophy-list {
  gap: 0.5rem !important;
}
.philosophy-list-item {
  margin-bottom: 0 !important;
}


/* GLOBALLY FORCE BUTTON TEXT TO BLACK */
.btn-hs-primary, 
.btn-hs-primary:hover, 
.btn-hs-primary-lg, 
.btn-hs-primary-lg:hover, 
.btn-primary, 
.btn-primary:hover, 
.btn-primary-large, 
.btn-primary-large:hover {
    color: #000 !important;
}
