/* ═══════════════════════════════════════════════════════════════════════════
   SHENGHE FILMS INDIA — Premium Corporate CSS v2.0
   Color System: Navy #0B1F3A | Gold #C9A84C | White #FFFFFF
═══════════════════════════════════════════════════════════════════════════ */

:root {
  --navy: #0B1F3A;
  --navy-mid: #1B3A6B;
  --navy-light: #243f6e;
  --gold: #C9A84C;
  --gold-light: #E8C96F;
  --gold-pale: #F5EBD0;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --light-bg: #F1F5F9;
  --text: #1A202C;
  --text-muted: #4A5568;
  --text-light: #718096;
  --border: #E2E8F0;
  --border-dark: #CBD5E0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow: 0 4px 20px rgba(0, 0, 0, .10);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .15);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .18);
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition)
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  font-family: inherit
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600
}

p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: .75rem
}

/* ─── LAYOUT ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 96px 0
}

.section.bg-light {
  background: var(--light-bg)
}

.section.bg-dark-navy {
  background: var(--navy)
}

.mt-3 {
  margin-top: 1.5rem
}

.w-full {
  width: 100%
}

/* Section header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px
}

.section-header--light .section-title,
.section-header--light h2 {
  color: var(--white)
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label--light {
  color: var(--gold-light)
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px
}

.section-title--light {
  color: var(--white)
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto
}

.highlight {
  color: var(--gold)
}

.highlight-light {
  color: var(--gold-light)
}

.section-footer {
  text-align: center;
  margin-top: 48px
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 15px
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy)
}

.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11, 31, 58, .25)
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, .35)
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy)
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white)
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .5)
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white)
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white)
}

.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy)
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a
}

/* ─── TOPBAR ─────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.topbar__left a,
.topbar__right a,
.topbar__right span {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.topbar__left a:hover,
.topbar__right a:hover {
  color: var(--gold-light)
}

.topbar__left i,
.topbar__right i {
  font-size: 11px;
  color: var(--gold)
}

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.navbar__logo {
  height: 80px;
  width: auto
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.navbar__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.3px
}

.navbar__brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 6px
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none
}

.navbar__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--navy);
  background: var(--light-bg)
}

.navbar__link.active {
  font-weight: 600
}

/* Dropdown */
.navbar__dropdown {
  position: relative
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0)
}

.navbar__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.navbar__dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--navy)
}

.navbar__dropdown-menu i {
  font-size: 8px;
  color: var(--gold)
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition)
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 50%, #0d2745 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
  padding: 30px 60px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.hero__stat {
  text-align: center
}

.hero__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light)
}

.hero__stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  font-family: 'Inter', sans-serif;
  margin-top: 2px
}

.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .15)
}

.hero__visual {
  position: relative;
  width: 100%;
}

.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .4);
  border: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  width: 100%;
}

.hero__img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.hero__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11, 31, 58, .9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.hero__img-badge i {
  font-size: 22px;
  color: var(--gold)
}

.hero__img-badge span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3
}

.hero__scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
  transition: var(--transition);
}

.hero__scroll-link:hover {
  color: var(--gold)
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(6px)
  }
}

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee-bar {
  background: linear-gradient(90deg, var(--gold) 0%, #B8973E 100%);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.marquee-track span i {
  font-size: 12px
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ─── ABOUT PREVIEW ─────────────────────────────────────────────────────── */
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-preview__img-grid {
  position: relative;
  height: 480px
}

.ap-img {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.ap-img:hover {
  transform: scale(1.02)
}

.ap-img--1 {
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 2
}

.ap-img--2 {
  width: 55%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 4px solid var(--white)
}

.ap-img--3 {
  width: 45%;
  height: 40%;
  top: 20%;
  left: 48%;
  z-index: 1;
  opacity: .85
}

.ap-badge {
  position: absolute;
  bottom: 32px;
  left: -16px;
  z-index: 4;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}

.ap-badge i {
  font-size: 20px;
  color: var(--navy)
}

.ap-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Inter', sans-serif
}

.ap-badge span {
  display: block;
  font-size: 11px;
  color: rgba(0, 0, 0, .6);
  font-family: 'Inter', sans-serif
}

.about-preview__content .section-label {
  margin-bottom: 12px
}

.about-preview__pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0
}

.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid var(--border)
}

.pillar i {
  font-size: 18px;
  color: var(--gold);
  width: 24px;
  flex-shrink: 0
}

.pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Inter', sans-serif
}

.pillar span {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif
}

/* ─── PRODUCT CARDS ─────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px
}

.products-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold)
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light-bg)
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.product-card:hover .product-card__img {
  transform: scale(1.06)
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--border-dark);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-card__overlay {
  opacity: 1
}

.product-card__body {
  padding: 24px
}

.product-card__cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.product-card__title {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3
}

.product-card__text {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.product-card__link:hover {
  color: var(--gold);
  gap: 10px
}

/* ─── CAPABILITIES ──────────────────────────────────────────────────────── */
.capabilities {
  position: relative;
  padding: 96px 0
}

.capabilities__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #162d56 100%);
  z-index: 0;
}

.capabilities .container {
  position: relative;
  z-index: 1
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 0
}

.cap-card {
  padding: 28px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  transition: var(--transition);
}

.cap-card:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(201, 168, 76, .4);
  transform: translateY(-4px)
}

.cap-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, .12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--gold);
}

.cap-card__title {
  color: var(--white);
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px
}

.cap-card__desc {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  line-height: 1.6
}

/* ─── SUSTAINABILITY PREVIEW ────────────────────────────────────────────── */
.sustain-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.sustain-preview__pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0
}

.sustain-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted)
}

.sustain-pillar i {
  font-size: 16px;
  color: var(--gold);
  width: 20px;
  flex-shrink: 0
}

.sustain-preview__visual {
  position: relative
}

.sustain-preview__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  height: 460px
}

.sustain-badge {
  position: absolute;
  top: 28px;
  right: -14px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.sustain-badge i {
  font-size: 24px;
  color: #2ECC71
}

.sustain-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Inter', sans-serif
}

.sustain-badge span {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif
}

/* ─── CTA BANNER ────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0B1F3A 0%, #1B3A6B 50%, #0d2745 100%);
}

.cta-banner .container {
  position: relative;
  z-index: 1
}

.cta-banner__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto
}

.cta-banner__inner h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem)
}

.cta-banner__inner p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 32px
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}

/* ─── PAGE HERO ─────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  overflow: hidden;
}

.page-hero--compact {
  padding: 56px 0
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__inner {
  position: relative;
  z-index: 1
}

.page-hero__title {
  color: var(--white);
  margin: 16px 0 12px
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
  max-width: 640px
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.breadcrumb a {
  color: rgba(255, 255, 255, .7)
}

.breadcrumb a:hover {
  color: var(--gold-light)
}

.breadcrumb i {
  font-size: 8px
}

/* ─── TWO COL GRID ──────────────────────────────────────────────────────── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

/* ─── ABOUT PAGE ────────────────────────────────────────────────────────── */
.about-img-stack {
  position: relative;
  height: 460px
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-xl)
}

.about-img--main {
  width: 75%;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 2
}

.about-img--accent {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  border: 4px solid var(--white);
  z-index: 3
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted)
}

.feature-item i {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0
}

.stats-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.stat-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, .15);
}

.stat-card i {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block
}

.stat-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 6px
}

.stat-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  font-family: 'Inter', sans-serif
}

/* Icon cards */
.icon-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px
}

.icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold)
}

.icon-card__img-wrap {
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px
}

.icon-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.icon-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px
}

.icon-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px
}

.icon-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}

.icon-card__link:hover {
  gap: 10px
}

/* Promise cards */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px
}

.promise-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-align: center;
}

.promise-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(201, 168, 76, .3);
  transform: translateY(-4px)
}

.promise-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, .1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  color: var(--gold);
}

.promise-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px
}

.promise-card p {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  line-height: 1.65
}

/* ─── PRODUCT LISTING (products page) ──────────────────────────────────── */
.products-listing {
  display: flex;
  flex-direction: column;
  gap: 56px
}

.product-listing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.product-listing-card--reverse {
  direction: rtl
}

.product-listing-card--reverse>* {
  direction: ltr
}

.plc__visual {
  position: relative
}

.plc__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl)
}

.plc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.plc__img-wrap:hover .plc__img {
  transform: scale(1.04)
}

.plc__cat-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
}

.plc__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px
}

.plc__tagline {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 14px
}

.plc__desc {
  margin-bottom: 14px
}

.plc__apps {
  margin-bottom: 20px;
  padding: 16px;
  background: var(--off-white);
  border-radius: 10px;
  border-left: 3px solid var(--gold)
}

.plc__apps strong {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block
}

.plc__apps p {
  font-size: 13px;
  margin: 0
}

.plc__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* Category cards */
.cat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.cat-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px
}

.cat-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px
}

.cat-card__count {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  background: var(--gold-pale);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ─── PRODUCT DETAIL ────────────────────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px
}

.pd-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xl)
}

.pd-main-img {
  width: 100%;
  object-fit: cover;
  max-height: 420px
}

.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.product-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.pd-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px
}

.pd-type {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-light);
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: 8px;
  margin-bottom: 20px;
}

.pd-type strong {
  color: var(--navy);
  font-weight: 600
}

.pd-section {
  margin-bottom: 24px
}

.pd-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-section-title i {
  color: var(--gold);
  font-size: 12px
}

.pd-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.pd-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

.pd-features-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pd-specs-section {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 0
}

.pd-specs-title {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 24px
}

.table-responsive {
  overflow-x: auto
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 14px
}

.specs-table th {
  padding: 12px 18px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.specs-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border)
}

.specs-table tr:last-child td {
  border-bottom: none
}

.specs-table tr:hover td {
  background: rgba(201, 168, 76, .04)
}

.spec-prop {
  font-weight: 600;
  color: var(--navy)
}

.spec-val {
  color: var(--text)
}

.spec-note {
  color: var(--text-light)
}

/* ─── SUSTAINABILITY ────────────────────────────────────────────────────── */
.sustain-certs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.cert-badge i {
  font-size: 18px;
  color: var(--gold)
}

.cert-badge span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy)
}

.cert-badge small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-light)
}

.sustain-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px
}

.sustain-pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

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

.sustain-pillar-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.sustain-pillar-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px
}

.sustain-pillar-card p {
  font-size: 14px;
  color: var(--text-muted)
}

.bopla-spotlight {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.bopla-spotlight__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.bopla-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  line-height: 1
}

.bopla-stat span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin: 4px 0 2px
}

.bopla-stat small {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, .5)
}

.bopla-spotlight__action p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 20px;
  max-width: 340px;
  font-size: 14px
}

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm)
}

.contact-card--whatsapp {
  border-color: rgba(37, 211, 102, .3);
  background: rgba(37, 211, 102, .03)
}

.contact-card__icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-card strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px
}

.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0
}

.contact-card p a {
  color: var(--text-muted);
  transition: var(--transition)
}

.contact-card p a:hover {
  color: var(--gold)
}

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border)
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.contact-form .form-group {
  margin-bottom: 16px
}

.contact-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.contact-form .required {
  color: #E53E3E
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .1)
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.alert-success {
  background: #F0FFF4;
  border: 1px solid #C6F6D5
}

.alert-success i {
  color: #38A169;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px
}

.alert-success strong {
  display: block;
  color: #276749;
  font-family: 'Inter', sans-serif
}

.alert-success p {
  color: #2F855A;
  font-size: 13px;
  margin: 2px 0 0
}

.alert-error {
  background: #FFF5F5;
  border: 1px solid #FED7D7
}

.alert-error i {
  color: #E53E3E;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px
}

.alert-error strong {
  display: block;
  color: #C53030;
  font-family: 'Inter', sans-serif
}

.alert-error ul {
  color: #C53030;
  font-size: 13px;
  margin: 4px 0 0;
  padding-left: 16px
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy)
}

.footer__top {
  padding: 72px 0 48px
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px
}

.footer__logo {
  height: 100px;
  width: auto;
  margin-bottom: 24px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: inline-block;
}

.footer__tagline {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px
}

.footer__social {
  display: flex;
  gap: 10px
}

.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy)
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer__links a {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold-light);
  padding-left: 4px
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

.footer__contact i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px
}

.footer__contact a {
  color: rgba(255, 255, 255, .55)
}

.footer__contact a:hover {
  color: var(--gold-light)
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}

.footer__credit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__credit .beating-heart {
  color: #ff4757;
  font-size: 14px;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

.footer__credit a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer__credit a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  /* bottom: -2px; */
  left: 0;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.footer__credit a:hover {
  color: var(--white);
}

.footer__credit a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  background-color: var(--white);
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.3);
  }

  30% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.3);
  }

  60% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

/* ─── FLOATING BUTTONS ───────────────────────────────────────────────────── */
.float-buttons {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.12)
}

.float-btn--whatsapp {
  background: #25D366;
  color: var(--white);
  animation: pulse-green 2.5s infinite
}

.float-btn--call {
  background: var(--gold);
  color: var(--navy)
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0)
  }
}

/* ─── CONTACT PAGE LOGO ─────────────────────────────────────────────────── */
.contact-text-logo {
  text-align: center;
  margin-bottom: 48px;
  font-family: 'Inter', system-ui, sans-serif;
}

.contact-text-logo h2 {
  font-size: 42px;
  font-weight: 800;
  color: #273b75;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.contact-text-logo h2 span {
  color: #f87425;
}

.contact-text-logo h3 {
  font-size: 26px;
  font-weight: 700;
  color: #273b75;
}

.contact-text-logo h3 span {
  color: #f87425;
}

/* ─── ERROR PAGE ─────────────────────────────────────────────────────────── */
.error-page {
  padding: 120px 0;
  text-align: center
}

.error-page__code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: 'Inter', sans-serif
}

.error-page h1 {
  color: var(--navy);
  margin-bottom: 12px
}

.error-page p {
  color: var(--text-light);
  margin-bottom: 32px
}

.error-page__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media(max-width:1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center
  }

  .hero__subtitle,
  .hero__actions {
    max-width: none
  }

  .hero__actions,
  .hero__stats {
    justify-content: center
  }

  .hero__visual {
    max-width: 480px;
    margin: 0 auto
  }

  .hero__scroll {
    display: none
  }

  .about-preview__grid,
  .sustain-preview__grid,
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .about-preview__img-grid {
    height: 320px
  }

  .sustain-preview__img {
    height: 320px
  }

  .about-img-stack {
    height: 320px
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .bopla-spotlight {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .product-listing-card,
  .product-detail {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .product-listing-card--reverse {
    direction: ltr
  }
}

@media(max-width:768px) {
  .section {
    padding: 64px 0
  }

  .topbar {
    display: none
  }

  .navbar__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--white);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 999;
  }

  .navbar__nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar__links {
    flex-direction: column;
    gap: 4px
  }

  .navbar__dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: var(--off-white);
    margin-top: 8px;
    padding-left: 12px;
  }

  .navbar__toggle {
    display: flex
  }

  .hero__inner {
    padding: 48px 0
  }

  .hero__img {
    height: 280px
  }

  .contact-text-logo {
    margin-bottom: 32px;
  }
  
  .contact-text-logo h2 {
    font-size: 24px;
  }
  
  .contact-text-logo h3 {
    font-size: 18px;
  }

  .products-grid,
  .icon-cards,
  .capabilities__grid,
  .promise-grid,
  .sustain-pillars-grid {
    grid-template-columns: 1fr
  }

  .contact-form .form-row {
    grid-template-columns: 1fr
  }

  .footer__grid {
    grid-template-columns: 1fr
  }

  .stats-card-grid {
    grid-template-columns: 1fr 1fr
  }

  .bopla-spotlight__stats {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 16px
  }

  .hero__actions {
    flex-direction: column
  }

  .hero__stats {
    gap: 16px
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center
  }

  .btn-lg {
    padding: 13px 24px
  }
}