/* Kachlan Group Website — Main Stylesheet */
/* Generated for production deployment */


  /* ===========================
     CSS VARIABLES & RESET
  =========================== */
  :root {
    --navy: #0B1F3A;
    --navy-light: #112540;
    --navy-mid: #163354;
    --baby-blue: #5A7D9A;
    --baby-blue-light: #768A96;
    --baby-blue-hover: #44576D;
    --sky: #E8EDF2;
    --grey: #6B7280;
    --grey-light: #F5F7FA;
    --grey-mid: #D1D5DB;
    --white: #FFFFFF;
    --off-white: #F5F7FA;
    --text-dark: #1A1A1A;
    --text-body: #374151;
    --text-muted: #6B7280;
    --accent-grey: #9CA3AF;
    --accent-grey-dark: #6B7280;
    --success: #22C55E;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Noto Sans Arabic', 'Arial', system-ui, sans-serif;

    --radius: 4px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(11,31,58,0.07);
    --shadow-md: 0 8px 32px rgba(11,31,58,0.10);
    --shadow-lg: 0 20px 60px rgba(11,31,58,0.15);
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  }

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

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

  body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ===========================
     TYPOGRAPHY
  =========================== */
  h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
  h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
  h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
  h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }
  p { line-height: 1.75; }

  /* ===========================
     LAYOUT UTILITIES
  =========================== */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  .section { padding: 100px 0; }
  .section-sm { padding: 60px 0; }
  .section-dark { background: var(--navy); color: var(--white); }
  .section-light { background: var(--off-white); }
  .section-mid { background: var(--grey-light); }

  .flex { display: flex; }
  .flex-center { display: flex; align-items: center; justify-content: center; }
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

  .text-center { text-align: center; }
  .text-white { color: var(--white); }
  .text-baby-blue { color: var(--baby-blue); }
  .text-muted { color: var(--text-muted); }

  .section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--baby-blue);
    margin-bottom: 1rem;
  }

  .section-label-dark {
    color: var(--baby-blue-light);
  }

  .section-title-block {
    margin-bottom: 3.5rem;
  }

  .divider-line {
    width: 48px;
    height: 3px;
    background: var(--accent-grey);
    margin-top: 1.2rem;
  }

  .divider-line.center { margin-left: auto; margin-right: auto; }

  /* ===========================
     BUTTONS
  =========================== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--baby-blue);
    color: var(--white);
    border-color: var(--baby-blue);
  }
  .btn-primary:hover {
    background: var(--baby-blue-hover);
    border-color: var(--baby-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90,125,154,0.28);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .btn-outline-blue {
    background: transparent;
    color: var(--baby-blue);
    border-color: var(--baby-blue);
  }
  .btn-outline-blue:hover {
    background: var(--baby-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(90,125,154,0.22);
  }

  .btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    font-size: 1rem;
    padding: 1rem 2.4rem;
  }
  .btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  }

  .btn-grey {
    background: var(--accent-grey);
    color: var(--white);
    border-color: var(--accent-grey);
  }
  .btn-grey:hover {
    background: var(--accent-grey-dark);
    border-color: var(--accent-grey-dark);
    transform: translateY(-2px);
  }

  /* ===========================
     LOGO — TRUE TRANSPARENT PNG
     These are real transparent PNGs with black/white bg removed.
     NO background color must appear on logo images or their wrappers.
  =========================== */

  img.logo-header,
  img.logo-dark,
  img.logo-footer {
    background: transparent;
    background-color: transparent;
    border: none;
    box-shadow: none;
    filter: none;
    outline: none;
    padding: 0;
    object-fit: contain;
    display: block;
    width: auto;
    flex-shrink: 0;
  }

  /* Header — white logo on navy #0B1F3A */
  img.logo-header {
    height: 48px;
    max-width: 220px;
  }

  /* Light-bg sections — navy logo on white / #F5F7FA */
  img.logo-dark {
    height: 40px;
    max-width: 200px;
    margin-bottom: 1rem;
  }

  /* Footer — white logo on dark footer */
  img.logo-footer {
    height: 34px;
    max-width: 175px;
  }

  /* Nav logo wrapper: transparent, no background, no box */
  .nav-logo {
    display: flex;
    align-items: center;
    background: transparent;
    background-color: transparent;
    padding-left: 0;
    gap: 0;
    cursor: pointer;
  }

  /* Footer brand wrapper: transparent */
  .footer-brand-name {
    background: transparent;
    background-color: transparent;
    padding: 0;
    margin-bottom: 0.75rem;
  }

  @media (max-width: 900px) {
    img.logo-header { height: 36px; max-width: 165px; }
    img.logo-dark   { height: 30px; max-width: 155px; }
    img.logo-footer { height: 26px; max-width: 135px; }
  }

  /* ===========================
     NAV
  =========================== */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(11,31,58,0.97);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--accent-grey);
    border-bottom: 1px solid rgba(90,125,154,0.14);
    transition: var(--transition);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .nav-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--accent-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--navy);
    border-radius: 4px;
    letter-spacing: -1px;
  }

  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
  }

  .nav-logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--grey);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: var(--transition);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
  }

  .nav-links a:hover, .nav-links a.active {
    color: var(--baby-blue-light);
    border-bottom-color: var(--accent-grey);
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
  }

  /* ===========================
     PAGE SECTIONS DISPLAY
  =========================== */
  .page-section { display: none; }
  .page-section.active { display: block; }

  /* ===========================
     HERO
  =========================== */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(90,125,154,0.12) 0%, transparent 70%),
      linear-gradient(135deg, rgba(90,125,154,0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(90,125,154,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(90,125,154,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(90,125,154,0.14);
    border: 1px solid rgba(90,125,154,0.3);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--baby-blue-light);
    margin-bottom: 1.5rem;
  }

  .hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--baby-blue-light);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  }

  .hero-title .accent { color: var(--baby-blue); }

  .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
  }

  .hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--baby-blue);
  }

  .hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
  }

  /* Hero Visual */
  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-visual-box {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1.1;
    position: relative;
  }

 .hero-card-main {
  position: absolute;
  top: 5%;
  left: 5%;
  right: 5%;
  bottom: 5%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(90,125,154,0.18);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  overflow: hidden;
}

  .hero-card-main::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,125,154,0.14), transparent 70%);
    pointer-events: none;
  }

  .hero-product-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    transition: var(--transition);
  }

  .hero-product-row:hover {
    background: rgba(90,125,154,0.12);
    border-color: rgba(90,125,154,0.3);
  }

  .hero-product-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(90,125,154,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--baby-blue-light);
  font-size: 0.95rem;
}

  .hero-product-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
  }

  .hero-product-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
  }

  .hero-product-badge {
    margin-left: auto;
    background: rgba(90,125,154,0.18);
    color: var(--baby-blue-light);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
    white-space: nowrap;
  }

  /* ===========================
     TRUST BAR
  =========================== */
  #trust-bar {
    background: var(--navy);
    border-top: 1px solid rgba(90,125,154,0.12);
    border-bottom: 1px solid rgba(90,125,154,0.12);
    padding: 1.8rem 0;
  }

  .trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.92);
    font-size: 0.875rem;
    font-weight: 500;
  }

  .trust-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(90,125,154,0.14);
    border: 1px solid rgba(90,125,154,0.22);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.12);
  }

  /* ===========================
     ABOUT SNAPSHOT
  =========================== */
  .about-snapshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-snapshot-visual {
    position: relative;
  }

  .about-visual-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .about-visual-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,125,154,0.16), transparent 70%);
    pointer-events: none;
  }

  .about-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
  }

  .about-metric {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1.2rem;
  }

  .about-metric-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--baby-blue);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .about-metric-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .about-label-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
  }

  .check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(90,125,154,0.14);
    border: 1px solid rgba(90,125,154,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--baby-blue);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .check-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
  }

  /* ===========================
     WHY CHOOSE
  =========================== */
  .why-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-grey);
    opacity: 0;
    transition: var(--transition);
  }

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

  .why-card:hover::before { opacity: 1; }

  .why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .why-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
  }

  .why-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ===========================
     PRODUCTS
  =========================== */
  .product-category-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--baby-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--grey-mid);
  }

  .product-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-grey);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
  }

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

  .product-card:hover::before { opacity: 1; }

  .product-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 130px;
    display: flex;
    align-items: flex-end;
  }

  .product-card-header::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,125,154,0.18), transparent 70%);
  }

  .product-card-icon {
    font-size: 2.5rem;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    opacity: 0.6;
  }

  .product-card-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
  }

  .product-card-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
  }

  .product-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.7;
  }

  .product-benefits {
    list-style: none;
    margin-bottom: 1.2rem;
    flex: 1;
  }

  .product-benefits li {
    font-size: 0.8rem;
    color: var(--text-body);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .product-benefits li::before {
    content: '✓';
    color: var(--baby-blue);
    font-weight: 700;
    flex-shrink: 0;
  }

  .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
  }

  .product-tag {
    background: var(--grey-light);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
    border: 1px solid var(--grey-mid);
  }

  .product-tag.blue {
    background: rgba(90,125,154,0.10);
    color: var(--baby-blue);
    border-color: rgba(90,125,154,0.3);
  }

  /* ===========================
     MANUFACTURING STRENGTH
  =========================== */
  .mfg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  .mfg-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(90,125,154,0.25);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
  }

  .mfg-card:hover {
    background: rgba(90,125,154,0.08);
    border-color: rgba(90,125,154,0.50);
  }

  .mfg-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--baby-blue);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .mfg-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
  }

  .mfg-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
  }

  /* ===========================
     HOW IT WORKS
  =========================== */
  .steps-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .steps-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-grey), var(--baby-blue));
  }

  .step-item {
    text-align: center;
    position: relative;
    padding-top: 0.5rem;
  }

  .step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--baby-blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(90,125,154,0.12);
  }

  .step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-family: var(--font-body);
  }

  .step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ===========================
     SERVICES
  =========================== */
  .service-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-grey), var(--baby-blue));
    opacity: 0;
    transition: var(--transition);
  }

  .service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
  }
  .service-card:hover::after { opacity: 1; }

  .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
  }

  .service-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.75;
  }

  .service-for {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--baby-blue);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }

  .service-advantage {
    background: var(--grey-light);
    border-left: 3px solid var(--accent-grey);
    padding: 0.75rem 1rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.83rem;
    color: var(--text-body);
    font-style: italic;
    margin-top: 1rem;
  }

  /* ===========================
     CTA BAND
  =========================== */
  .cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-band::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,125,154,0.12), transparent 70%);
    pointer-events: none;
  }

  .cta-title {
    color: var(--white);
    margin-bottom: 1rem;
  }

  .cta-sub {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-contact-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .cta-contact-item {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

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

  .page-hero::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .page-hero-title { color: var(--white); margin-bottom: 1rem; }
  .page-hero-sub { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; }

  .breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .breadcrumb a { color: var(--baby-blue); }

  .vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .vm-card {
    border-radius: var(--radius-lg);
    padding: 2.5rem;
  }

  .vm-card.vision {
    background: var(--navy);
    color: var(--white);
  }

  .vm-card.mission {
    background: var(--off-white);
    border: 1px solid var(--grey-mid);
  }

  .vm-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .vm-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .vm-card.vision .vm-title { color: var(--baby-blue-light); }
  .vm-card.mission .vm-title { color: var(--navy); }

  .vm-text { font-size: 0.95rem; line-height: 1.75; }
  .vm-card.vision .vm-text { color: rgba(255,255,255,0.75); }
  .vm-card.mission .vm-text { color: var(--text-body); }

  .advantage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .advantage-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    transition: var(--transition);
  }

  .advantage-item:hover {
    border-color: var(--accent-grey);
    box-shadow: var(--shadow-sm);
  }

  .advantage-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .advantage-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
  }

  .advantage-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* ===========================
     CONTACT PAGE
  =========================== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info-block {
    margin-bottom: 1.5rem;
  }

  .contact-info-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.3rem;
  }

  .contact-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .contact-form-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--grey-mid);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--baby-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(90,125,154,0.12);
  }

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

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .whatsapp-cta-box {
    background: linear-gradient(135deg, #075E54, #128C7E);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    color: var(--white);
    margin-top: 2rem;
  }

  .whatsapp-cta-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
  }

  .whatsapp-cta-box p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 1.2rem;
  }

  /* ===========================
     FOOTER
  =========================== */
  #footer {
    background: #060F1D !important;
    background-color: #060F1D !important;
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
  }

  .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

  .footer-brand-name {
    display: block;
    background: transparent;
    padding: 0;
    margin-bottom: 0.75rem;
  }

  .footer-desc {
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .footer-col-title {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(156,163,175,0.18);
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
  }

  .footer-links a:hover { color: var(--baby-blue-light); }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
  }

  .footer-bottom {
    border-top: 1px solid rgba(156,163,175,0.14);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    flex: 1;
    min-width: 0;
  }

  .footer-tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-align: right;
  }


  /* Social icons */
  .footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
  }

  .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: var(--transition);
    border: 1px solid transparent;
  }

  .social-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    fill: currentColor;
  }

  .social-btn.facebook {
    background: rgba(90,125,154,0.12);
    border-color: rgba(90,125,154,0.2);
    color: rgba(255,255,255,0.7);
  }
  .social-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
    transform: translateY(-2px);
  }

  .social-btn.instagram {
    background: rgba(90,125,154,0.12);
    border-color: rgba(90,125,154,0.2);
    color: rgba(255,255,255,0.7);
  }
  .social-btn.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
  }

  .social-btn.whatsapp {
    background: rgba(90,125,154,0.12);
    border-color: rgba(90,125,154,0.2);
    color: rgba(255,255,255,0.7);
  }
  .social-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    transform: translateY(-2px);
  }

  .social-btn.email {
    background: rgba(90,125,154,0.12);
    border-color: rgba(90,125,154,0.2);
    color: rgba(255,255,255,0.7);
  }
  .social-btn.email:hover {
    background: var(--baby-blue);
    border-color: var(--baby-blue);
    color: #fff;
    transform: translateY(-2px);
  }

  /* Footer address item */
  .footer-address {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .footer-address svg {
    width: 13px;
    height: 13px;
    fill: rgba(255,255,255,0.3);
    flex-shrink: 0;
    margin-top: 3px;
  }

  /* Footer bottom social row */
  .footer-bottom-social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .footer-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
  }

  .footer-icon-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }

  .footer-icon-btn:hover {
    background: rgba(90,125,154,0.25);
    border-color: rgba(90,125,154,0.4);
    color: #fff;
    transform: translateY(-2px);
  }



  /* ===========================
     PRIVATE LABEL BANNER SECTION
  =========================== */
  .pl-banner-section {
    background: linear-gradient(135deg, var(--navy) 0%, #0e2a46 60%, #112a42 100%);
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0;
  }

  .pl-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        45deg,
        rgba(90,125,154,0.05) 0px,
        rgba(90,125,154,0.05) 1px,
        transparent 1px,
        transparent 32px
      ),
      repeating-linear-gradient(
        -45deg,
        rgba(90,125,154,0.05) 0px,
        rgba(90,125,154,0.05) 1px,
        transparent 1px,
        transparent 32px
      );
    pointer-events: none;
  }

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

  .pl-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .pl-banner-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--baby-blue);
    margin-bottom: 0.75rem;
  }

  .pl-banner-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
  }

  .pl-banner-center {
    border-left: 1px solid rgba(90,125,154,0.25);
    border-right: 1px solid rgba(90,125,154,0.25);
    padding: 0 2.5rem;
  }

  .pl-banner-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin: 0;
  }

  .pl-banner-right {
    text-align: right;
  }

  @media (max-width: 900px) {
    .pl-banner-grid {
      grid-template-columns: 1fr;
      gap: 1.8rem;
      text-align: center;
    }
    .pl-banner-center {
      border-left: none;
      border-right: none;
      border-top: 1px solid rgba(90,125,154,0.25);
      border-bottom: 1px solid rgba(90,125,154,0.25);
      padding: 1.5rem 0;
    }
    .pl-banner-right {
      text-align: center;
    }
  }

  /* ===========================
     ORIENTAL NIGHTS — Heritage Brand Section
  =========================== */
  #oriental-nights {
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  /* Subtle patterned background — Islamic-inspired geometric suggestion */
  #oriental-nights::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 15% 50%, rgba(90,125,154,0.05) 0%, transparent 55%),
      radial-gradient(circle at 85% 30%, rgba(11,31,58,0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
  }

  /* Thin vertical rule — decorative left border on the section */
  #oriental-nights .container {
    position: relative;
    z-index: 1;
  }

  .on-grid {
  display: flex;
  align-items: flex-start;
  gap: 4rem;

  }

  /* LEFT — Product visual panel */
  .on-visual {
    flex: 0 0 44%;
    max-width: 440px;
    display: flex;
    align-items: flex-start;
    align-self: flex-start;
    position: relative;
    margin-top: 0px;

  }

  .on-product-frame {
    background: linear-gradient(160deg, #0e2035 0%, #0B1F3A 50%, #112a42 100%);
    border-radius: 16px;
    width: 100%;
    padding: 1.5rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(11,31,58,0.22), 0 0 0 1px rgba(90,125,154,0.15);
  }

  /* Geometric overlay — subtle arabesque-inspired grid suggestion */
  .on-product-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        45deg,
        rgba(90,125,154,0.04) 0px,
        rgba(90,125,154,0.04) 1px,
        transparent 1px,
        transparent 28px
      ),
      repeating-linear-gradient(
        -45deg,
        rgba(90,125,154,0.04) 0px,
        rgba(90,125,154,0.04) 1px,
        transparent 1px,
        transparent 28px
      );
    pointer-events: none;
  }

  .on-product-frame::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,125,154,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .on-soap-icon {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .on-soap-shape {
    width: 120px;
    height: 68px;
    background: linear-gradient(135deg, #c8b89a 0%, #b8a484 40%, #a08860 100%);
    border-radius: 18px;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow:
      0 8px 24px rgba(0,0,0,0.35),
      inset 0 1px 0 rgba(255,255,255,0.25),
      inset 0 -2px 4px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .on-soap-shape::before {
    content: 'ORIENTAL NIGHTS';
    font-family: var(--font-display);
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.55);
    text-align: center;
    line-height: 1.4;
    padding: 0 8px;
  }

  .on-soap-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
  }

  .on-soap-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  /* Floating quality badge */
  .on-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(90,125,154,0.25);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    text-align: center;
    z-index: 2;
    backdrop-filter: blur(4px);
  }

  .on-badge-val {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--baby-blue-light);
    line-height: 1;
  }

  .on-badge-label {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 3px;
  }

  /* Corner label: export-ready */
  .on-export-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    background: rgba(90,125,154,0.15);
    border: 1px solid rgba(90,125,154,0.25);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--baby-blue-light);
    letter-spacing: 0.07em;
  }

  .on-export-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--baby-blue);
  }

  /* Fragrance pills at bottom of frame */
  .on-scent-row {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 2;
  }

  .on-scent-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
  }

  /* RIGHT — Content */
  .on-content {
    flex: 1;
    min-width: 0;
    padding: 1rem 0;
  }

  .on-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--baby-blue);
    margin-bottom: 1rem;
  }

  .on-eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--baby-blue);
    opacity: 0.6;
  }

  .on-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .on-heading span {
    color: var(--baby-blue);
  }

  .on-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-grey);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
  }

  .on-divider {
    width: 48px;
    height: 2px;
    background: var(--accent-grey);
    margin-bottom: 1.4rem;
  }

  .on-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    max-width: 460px;
  }

  /* Feature bullets */
  .on-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
  }

  .on-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
  }

  .on-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(90,125,154,0.1);
    border: 1px solid rgba(90,125,154,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .on-bullet svg {
    width: 9px;
    height: 9px;
    fill: var(--baby-blue);
  }

  /* Packaging card */
  .on-packaging {
    background: var(--grey-light);
    border: 1px solid var(--grey-mid);
    border-left: 3px solid var(--baby-blue);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 1.1rem 1.4rem;
    margin-bottom: 2rem;
  }

  .on-packaging-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--baby-blue);
    margin-bottom: 0.6rem;
  }

  .on-packaging-items {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .on-pkg-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.83rem;
    color: var(--text-body);
  }

  .on-pkg-item::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-grey);
    flex-shrink: 0;
  }

  /* CTA row */
  .on-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .on-availability {
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  .on-availability strong {
    color: var(--text-dark);
    font-weight: 600;
  }

  /* Separator above the section */
  .section-sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--grey-mid) 30%, var(--grey-mid) 70%, transparent);
    margin: 0;
  }
.on-essentials {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-mid);
}

.on-essentials-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.on-essentials-visual {
  flex: 0 0 44%;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.on-essentials-frame {
  width: 100%;
  min-height: 320px;
  background: #f7f7f7;
  border: 1px solid rgba(90,125,154,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(11,31,58,0.08);
}

.on-essentials-frame::before,
.on-essentials-frame::after {
  content: none;
}

.on-essentials-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  display: block;
}

.on-essentials-content {
  flex: 1;
  min-width: 0;
  text-align: left;
  padding: 0;
}

.on-essentials-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-grey);
  margin-bottom: 1rem;
}

.on-essentials-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.on-essentials-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  max-width: 460px;
}

.on-essentials-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.on-essentials-chip {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  border-radius: 100px;
  padding: 5px 10px;
}

@media (max-width: 900px) {
  .on-essentials-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .on-essentials-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
    justify-content: center;
  }

  .on-essentials-frame {
    min-height: auto;
  }

  .on-essentials-content {
    width: 100%;
  }

  .on-essentials-img {
    max-width: 220px;
    margin: 0 auto;
  }
}

  /* ===========================
     BRAND PORTFOLIO SECTIONS
  =========================== */

  /* Brand section wrapper */
  .brand-section {
    padding: 80px 0;
    position: relative;
  }

  .brand-section.alt-bg {
    background: var(--grey-light);
  }

  /* Brand header — name + description side by side */
  .brand-header {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--grey-mid);
  }

  .brand-identity {
    position: sticky;
    top: 100px;
  }

  .brand-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--baby-blue);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-grey);
  }

  .brand-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
  }

  .brand-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-grey);
    margin-bottom: 1.2rem;
  }

  .brand-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .brand-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .brand-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .brand-meta-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--baby-blue);
    flex-shrink: 0;
  }

  /* ── Product grid inside brand section ── */
  .brand-products {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Single product row */
  .bp-card {
    display: grid;
    grid-template-columns: 3px 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    transition: var(--transition);
  }

  .bp-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--baby-blue);
  }

  .bp-card-accent {
    background: var(--baby-blue);
    width: 3px;
    transition: var(--transition);
    flex-shrink: 0;
  }

  .bp-card:hover .bp-card-accent {
    background: var(--accent-grey);
  }

  .bp-card-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 1.5rem;
  }

  .bp-card-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
  }

  .bp-card-content {
    min-width: 0;
  }

  .bp-card-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
  }

  .bp-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
  }

  .bp-card-tags {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-end;
    flex-shrink: 0;
  }

  .bp-tag {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--grey-light);
    border: 1px solid var(--grey-mid);
    border-radius: 100px;
    padding: 3px 9px;
    white-space: nowrap;
  }

  .bp-tag.blue {
    background: rgba(90,125,154,0.08);
    color: var(--baby-blue);
    border-color: rgba(90,125,154,0.22);
  }

  /* Benefits chips inside an expanded card */
  .bp-card-benefits {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
  }

  .bp-benefit-chip {
    font-size: 0.68rem;
    color: var(--text-body);
    background: var(--grey-light);
    border-radius: 100px;
    padding: 2px 8px;
  }

  /* Brand CTA */
  .brand-cta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .brand-cta-note {
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  /* Oriental nights dark brand header variant */
  .brand-name.on-name {
    color: var(--navy);
  }

  /* Section dividers between brands */
  .brand-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--grey-mid) 20%, var(--grey-mid) 80%, transparent);
  }

  /* Packaging grid */
  .brand-packaging {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
  }

  @media (max-width: 900px) {
    .brand-header {
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
    }
    .brand-identity { position: static; }
    .bp-card-inner { grid-template-columns: auto 1fr; }
    .bp-card-tags { display: none; }
  }

  /* ===========================
     CINZA PRODUCT PORTFOLIO
  =========================== */
  .cinza-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }

  .cinza-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
  }

  .cinza-brand-badge span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(255,255,255,0.2);
    margin-left: 0.3rem;
  }

  .cinza-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 580px;
  }

  /* Individual CINZA product cards — vertical layout matching grid-3 */
  .cinza-product-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .cinza-product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-grey);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
  }

  .cinza-product-card:hover {
    border-color: var(--baby-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .cinza-product-card:hover::before { opacity: 1; }

  .cinza-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, #163354 100%);
    padding: 1.5rem 1.6rem 1.3rem;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    align-items: flex-end;
  }

  .cinza-card-header::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,125,154,0.18), transparent 70%);
    pointer-events: none;
  }

  .cinza-card-icon {
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    opacity: 0.5;
    line-height: 1;
  }

  .cinza-card-title-wrap {
    position: relative;
    z-index: 1;
  }

  .cinza-card-category {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    display: block;
    margin-bottom: 0.2rem;
  }

  .cinza-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
  }

  .cinza-card-body {
    padding: 1.4rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .cinza-card-desc {
    font-size: 0.845rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .cinza-card-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
  }

  .cinza-card-benefits li {
    font-size: 0.8rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
  }

  .cinza-card-benefits li::before {
    content: '✓';
    color: var(--baby-blue);
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .cinza-card-packaging {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--grey-mid);
  }

  .cinza-pkg-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--grey-light);
    border: 1px solid var(--grey-mid);
    border-radius: 100px;
    padding: 3px 9px;
  }

  .cinza-pkg-tag.blue {
    background: rgba(90,125,154,0.08);
    color: var(--baby-blue);
    border-color: rgba(90,125,154,0.22);
  }

  .cinza-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
  }



  /* ===========================
     PRODUCT & BRAND IMAGES
  =========================== */

  /* Brand card image */
  .brand-card-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    background: var(--off-white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 1rem;
    display: block;
  }

  /* Wide brand image strip — inside brand-identity panel */
  .brand-identity-img {
    width: 100%;
    max-width: 340px;
    height: 220px;
    object-fit: contain;
    object-position: center;
    background: var(--grey-light);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    display: block;
    box-shadow: var(--shadow-sm);
  }

  /* Product bp-card image */
  .bp-card-img {
    width: 70px;
    height: 100px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: var(--grey-light);
  }

  /* Logo inside brand section */
  .brand-section-logo {
    height: auto;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin-bottom: 0.75rem;
    background: transparent;

  }
  
.brand-logo-slot {
  height: 78px;
  width: 100%;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.9rem 0 1rem 0;
  overflow: hidden;
}

.brand-main-logo {
  display: block;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

  /* CINZA full range showcase */
  .cinza-showcase-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center;
    display: block;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
  }

  /* ON product image */
  .on-product-real-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    position: relative;
    z-index: 1;
  }

  /* ===========================
     ORIENTAL NIGHTS ESSENTIALS SUB-BRAND
  =========================== */
  .on-essentials {
    margin-top: 2rem;
    border-top: 1px solid var(--grey-mid);
    padding-top: 1.5rem;
  }

  .on-essentials-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-grey);
    margin-bottom: 0.6rem;
  }

  .on-essentials-label::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--accent-grey);
  }

  .on-essentials-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
  }

  .on-essentials-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.85rem;
    max-width: 420px;
  }

  .on-essentials-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .on-essentials-chip {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--grey-light);
    border: 1px solid var(--grey-mid);
    border-radius: 100px;
    padding: 3px 10px;
  }

  /* Products page bp-card sub-brand variant */
  .bp-card.bp-sub {
    background: var(--grey-light);
    border-color: var(--grey-mid);
    border-style: dashed;
  }

  .bp-card.bp-sub .bp-card-accent {
    background: var(--accent-grey);
  }

  .bp-card.bp-sub:hover {
    border-style: solid;
    border-color: var(--accent-grey);
    box-shadow: var(--shadow-sm);
  }

  /* Homepage ON card — essentials sub-line strip */
  .on-sub-strip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding: 0.5rem 0.75rem;
    background: var(--grey-light);
    border-left: 2px solid var(--accent-grey);
    border-radius: 0 var(--radius) var(--radius) 0;
  }

  .on-sub-strip-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-grey);
  }

  .on-sub-strip-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .on-sub-strip-note {
    font-size: 0.73rem;
    color: var(--text-muted);
  }


  /* ===========================
     PRIVATE LABEL GALLERY
  =========================== */
  .pl-gallery-section {
    background: var(--grey-light);
    padding: 70px 0;
  }

  .pl-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  .pl-intro-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .pl-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0;
  }

  .pl-bullet-chip {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--baby-blue);
    background: rgba(90,125,154,0.08);
    border: 1px solid rgba(90,125,154,0.2);
    border-radius: 100px;
    padding: 5px 14px;
  }

  /* 4-column grid — consistent uniform cells */
  .pl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .pl-item {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }

  .pl-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--baby-blue);
  }

  .pl-item-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--off-white);
  }

  .pl-item-img.portrait-img {
    aspect-ratio: 2/3;
    object-fit: contain;
    padding: 0.5rem;
    background: #f8f8f8;
  }

  .pl-item-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 0.65rem 0.9rem;
    line-height: 1.4;
    border-top: 1px solid var(--grey-mid);
    background: var(--white);
    font-weight: 500;
  }

  @media (max-width: 1024px) {
    .pl-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 640px) {
    .pl-grid { grid-template-columns: repeat(2, 1fr); }
    .pl-intro { text-align: left; }
    .pl-bullets { justify-content: flex-start; }
  }


  /* ===========================
     HOTEL & HOSPITALITY SECTION
  =========================== */
  .hosp-section {
    background: var(--white);
    padding: 80px 0;
  }

  .hosp-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .hosp-intro {
    padding-right: 1rem;
  }

  .hosp-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--baby-blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hosp-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--baby-blue);
  }

  .hosp-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .hosp-sub {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-grey);
    margin-bottom: 1.2rem;
  }

  .hosp-divider {
    width: 40px;
    height: 2px;
    background: var(--accent-grey);
    margin-bottom: 1.4rem;
  }

  .hosp-desc {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.6rem;
  }

  .hosp-note {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    border-left: 2px solid var(--accent-grey);
    padding-left: 1rem;
    margin-bottom: 2rem;
  }

  .hosp-cta {
    margin-top: 0.5rem;
  }

  /* Right: two feature panels stacked */
  .hosp-panels {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .hosp-panel {
    background: var(--grey-light);
    border: 1px solid var(--grey-mid);
    border-left: 3px solid var(--baby-blue);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 1.4rem 1.6rem;
  }

  .hosp-panel-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--baby-blue);
    margin-bottom: 0.6rem;
  }

  .hosp-panel-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0.75rem;
  }

  .hosp-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .hosp-bullets li {
    font-size: 0.82rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
  }

  .hosp-bullets li::before {
    content: '✓';
    color: var(--baby-blue);
    font-weight: 700;
    font-size: 0.72rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  @media (max-width: 900px) {
    .hosp-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hosp-intro { padding-right: 0; }
  }


  /* ===========================
     INDUSTRY PRESENCE SECTION
  =========================== */
  .presence-section {
    background: var(--navy);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
  }

  .presence-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90,125,154,0.08) 0%, transparent 60%);
    pointer-events: none;
  }

  .presence-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .presence-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  }

  .presence-img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 16/10;
  }

  .presence-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    padding: 1.5rem 1.2rem 1rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .presence-caption-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    font-style: italic;
  }

  .presence-content {
    color: var(--white);
  }

  .presence-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--baby-blue-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .presence-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--baby-blue-light);
  }

  .presence-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }

  .presence-subhead {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.2rem;
  }

  .presence-divider {
    width: 36px;
    height: 2px;
    background: var(--accent-grey);
    margin-bottom: 1.4rem;
  }

  .presence-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    margin-bottom: 1.6rem;
  }

  .presence-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .presence-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px;
    padding: 4px 12px;
  }

  @media (max-width: 900px) {
    .presence-grid { grid-template-columns: 1fr; gap: 2rem; }
    .presence-grid > .presence-img-wrap { order: -1; }
  }

  /* ===========================
     ANIMATIONS
  =========================== */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .fade-in-up {
    animation: fadeInUp 0.7s ease forwards;
  }

  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }

  /* ===========================
     RESPONSIVE
  =========================== */
  @media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .about-snapshot-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-track { grid-template-columns: 1fr 1fr; }
    .steps-track::before { display: none; }
    .mfg-grid { grid-template-columns: 1fr 1fr; }
    .vision-mission-grid { grid-template-columns: 1fr; }
    .advantage-list { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .trust-divider { display: none; }
  }

  @media (max-width: 600px) {
    .section { padding: 60px 0; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .steps-track { grid-template-columns: 1fr; }
    .mfg-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-social { flex-direction: column; }
    .social-btn { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-social { justify-content: center; }
    .footer-tagline { text-align: center; }
    .hero-ctas { flex-direction: column; }
    .cta-buttons { flex-direction: column; align-items: center; }
  }

  /* Mobile nav menu */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(90,125,154,0.18);
    padding: 1.5rem 2rem;
    z-index: 999;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
  }

 .mobile-menu a:hover { 
  color: var(--baby-blue-light); 
} 
  /* Font Awesome icon sizing in icon holder divs */
  .trust-item-icon i,
  .why-icon i,
  .vm-icon i,
  .service-icon i,
  .hero-product-icon i,
  .bp-card-icon i {
    display: inline-block;
    line-height: 1;
  }

  .trust-item-icon i { font-size: 1.1rem; }
  .why-icon i { font-size: 1.3rem; }
  .vm-icon i { font-size: 1.6rem; }
  .service-icon i { font-size: 1.5rem; }
  .hero-product-icon i { font-size: 0.95rem; }
  .bp-card-icon i { font-size: 1.4rem; color: var(--baby-blue); }


/* ================================================================
   PRODUCTS PAGE — FIXES & ENHANCEMENTS
   Covers: logo spacing, section structure, mobile responsive
================================================================ */

/* ── Brand logo slot: consistent height & alignment across all 3 brands ── */
.brand-logo-slot {
  height: 80px;
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.75rem 0 1rem 0;
  overflow: visible;
  padding: 0;
}

/* ── Brand main logo: constrained but never cropped ── */
.brand-main-logo {
  display: block;
  max-height: 72px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

/* ── Brand tag: tighter gap under it ── */
.brand-tag {
  margin-bottom: 0.5rem;
}

/* ── Brand tagline: clear separation below logo slot ── */
.brand-tagline {
  margin-bottom: 1rem;
}

/* ── Brand identity image (collection/product showcase shot) ── */
.brand-identity-img {
  width: 100%;
  max-width: 320px;
  height: 210px;
  object-fit: contain;
  object-position: center;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  display: block;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-mid);
}

/* ── bp-card product thumbnail: fixed dimensions for consistency ── */
.bp-card-img {
  width: 72px;
  height: 96px;
  min-width: 72px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
}

/* ── bp-card inner grid: balanced column allocation ── */
.bp-card-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.4rem;
}

/* ── Brand section vertical padding ── */
.brand-section {
  padding: 72px 0;
}

/* ── Nav active state for products page ── */
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--baby-blue);
}

/* ── Mobile menu active state ── */
.mobile-menu a.active {
  color: var(--baby-blue-light);
}

/* ================================================================
   RESPONSIVE — 900px (tablet)
================================================================ */
@media (max-width: 900px) {
  .brand-section { padding: 56px 0; }

  .brand-logo-slot {
    max-width: 260px;
    height: 68px;
    margin: 0.6rem 0 0.9rem 0;
  }

  .brand-main-logo { max-height: 60px; }

  .brand-identity-img {
    max-width: 100%;
    height: 190px;
  }

  .bp-card-inner {
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    padding: 0.9rem 1.2rem;
  }

  .bp-card-tags { display: none; }
}

/* ================================================================
   RESPONSIVE — 600px (mobile)
================================================================ */
@media (max-width: 600px) {
  .brand-section { padding: 44px 0; }

  .brand-header {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
  }

  .brand-logo-slot {
    max-width: 200px;
    height: 56px;
    margin: 0.5rem 0 0.75rem 0;
  }

  .brand-main-logo { max-height: 50px; }

  .brand-identity-img {
    height: 165px;
    margin-bottom: 1.1rem;
  }

  .bp-card-inner {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .bp-card-img {
    width: 60px;
    min-width: 60px;
    height: 80px;
  }

  .bp-card-icon { font-size: 1.8rem; }

  /* Show tags again on mobile (as a row) */
  .bp-card-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: flex-start;
    margin-top: 0.5rem;
    align-items: unset;
  }

  .brand-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .brand-desc { font-size: 0.88rem; }

  .brand-meta {
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }

  .bp-card-benefits { gap: 0.3rem; }

  .bp-benefit-chip {
    font-size: 0.65rem;
    padding: 2px 7px;
  }

  .cta-band { padding: 52px 0; }
}


/* ================================================================
   ABOUT PAGE — FIXES & ENHANCEMENTS
================================================================ */

/* ── "Who We Are" grid: replaces bare grid-2 with proper named class ── */
.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Logo wrapper in content section: controlled sizing, no bleed ── */
.about-logo-wrap {
  margin-bottom: 1.4rem;
}

.about-logo-img {
  height: 40px;
  max-width: 200px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

/* ── Metrics card: ensure pseudo-element glow clips properly ── */
.about-snapshot-visual {
  position: relative;
}

.about-visual-card {
  position: relative;
  overflow: hidden;
}

/* ── Responsive — 900px ── */
@media (max-width: 900px) {
  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-logo-img {
    height: 34px;
    max-width: 170px;
  }

  .about-snapshot-visual {
    order: -1;
  }
}

/* ── Responsive — 600px ── */
@media (max-width: 600px) {
  .about-who-grid {
    gap: 2rem;
  }

  .about-logo-img {
    height: 30px;
    max-width: 150px;
  }

  .about-logo-wrap {
    margin-bottom: 1rem;
  }

  .about-metric-val {
    font-size: 1.6rem;
  }

  .about-metric-label {
    font-size: 0.72rem;
  }

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

  .vm-card {
    padding: 1.8rem;
  }

  .presence-section {
    padding: 52px 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER LAYOUT FIX
   ──────────────────────────────────────────────────────────────
   Issue 1 — .footer-grid column height mismatch:
   The first column (2fr / brand column) holds 4 labeled social
   buttons whose combined width (~454px) exceeds the column width
   at all common viewports (1200–1440px). They wrap to 2 rows,
   making that column taller than the others. With the default
   align-items: stretch, every other column silently stretches
   to match, leaving large blank whitespace under Company,
   Products and Contact. Fix: align-items: start.

   Issue 2 — .footer-bottom copyright text overflow:
   The long copyright string has no flex shrink rule, so it
   dominates the space-between row and causes social icons +
   tagline to wrap awkwardly at intermediate viewport widths.
   Fix: flex: 1 + min-width: 0 lets it share space properly.
   ══════════════════════════════════════════════════════════════ */

.footer-grid {
  align-items: start;
}

.footer-bottom-text {
  flex: 1;
  min-width: 0;
}
