/**
* Template Name: BizPage
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
  --radius:     12px;
      --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2a3d30; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3d7a52; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #e8f0eb; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #e8f0eb; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #2c5f3f; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #666666; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2c5f3f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Product Detail Page Preset */
:root {
  --forest:   #1a3a2a;
  --moss:     #2c5f3f;
  --leaf:     #3d7a52;
  --sage:     #5a9e6f;
  --mist:     #e8f0eb;
  --cream:    #f5f0e8;
  --gold:     #b89a5a;
  --dark:     #0f2219;
  --text:     #2a3d30;
  }

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* Smooth scroll dengan GPU compositing */
html {
  scroll-behavior: smooth;
}

/* Elemen yang punya transform/backdrop-filter berat,
   isolasi agar tidak mempengaruhi scroll parent */
.cta-section,
.about,
.features,
.contact-section {
  contain: layout style;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  background: var(--background-color);
      color: var(--default-color);
      font-family: 'DM Sans', sans-serif;
      -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* ==============================
   PHP Email Form — Modern UI
============================== */

/* Base wrapper */
.php-email-form .form-feedback {
  display: none;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: feedbackSlideIn 0.3s ease;
}

@keyframes feedbackSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Error */
.php-email-form .error-message {
  display: none;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  align-items: center;
  gap: 10px;
  animation: feedbackSlideIn 0.3s ease;

  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}

.php-email-form .error-message::before {
  content: "✕";
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #be123c;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Success */
.php-email-form .sent-message {
  display: none;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  align-items: center;
  gap: 10px;
  animation: feedbackSlideIn 0.3s ease;

  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.php-email-form .sent-message::before {
  content: "✓";
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #15803d;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Loading */
.php-email-form .loading {
  display: none;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  align-items: center;
  gap: 10px;

  background: var(--surface-color, #f8fafc);
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.php-email-form .loading::before {
  content: "";
  margin-right: 5px;
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  border: 2.5px solid #cbd5e1;
  border-top-color: var(--accent-color, #3b82f6);
  animation: php-email-form-loading 0.75s linear infinite;
}

.php-email-form .loading::after {
  content: " Mengirim pesan...";
}

@keyframes php-email-form-loading {
  to { transform: rotate(360deg); }
}

@keyframes feedbackSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: transparent;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  z-index: 997;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* Pseudo-element glassmorphism backdrop */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 34, 25, 0.72) 0%,
    rgba(15, 34, 25, 0.40) 60%,
    transparent 100%
  );
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.header .container-fluid {
  padding-top: 20px;
  padding-bottom: 20px;
  transition: padding 0.4s ease;
}

/* ── Scrolled state ── */
.scrolled .header {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.28);
}

.scrolled .header::before {
  background: rgba(11, 26, 19, 0.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.scrolled .header .container-fluid {
  padding-top: 14px;
  padding-bottom: 14px;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.header .logo {
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.header .logo img {
  max-height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.header .logo img:hover {
  opacity: 0.85;
}

.header .logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

/*--------------------------------------------------------------
# Navigation Menu — Desktop (≥1200px)
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2px;
  }

  .navmenu li {
    position: relative;
  }

  /* Base link */
  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.82);
    padding: 10px 14px;
    font-size: 12.5px;
    font-family: var(--default-font);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    border-radius: 8px;
    transition: color 0.25s ease, background-color 0.25s ease;
    text-decoration: none;
  }

  /* Chevron icon */
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 11px;
    line-height: 0;
    transition: transform 0.3s ease;
    opacity: 0.7;
  }

  .navmenu li:last-child a {
    padding-right: 14px;
  }

  /* Hover / active */
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.10);
  }

  .navmenu .active i,
  .navmenu li:hover > a i {
    transform: rotate(180deg);
    opacity: 1;
  }

  /* Active indicator dot */
  .navmenu .active::after {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent-color);
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* ── Dropdown panel ── */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 8px;
    background: rgba(11, 26, 19, 0.96);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 8px);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    border-radius: 12px;
    z-index: 99;
    min-width: 200px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255,255,255,0.04);
    font-family: var(--default-font);
  }

  .navmenu .dropdown ul li {
    min-width: 180px;
  }

  .navmenu .dropdown ul a {
    padding: 9px 14px;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    border-radius: 8px;
  }

  .navmenu .dropdown ul a i {
    font-size: 11px;
    opacity: 0.6;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
  }

  /* Reveal */
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: calc(100% + 4px);
    transform: translateY(0);
    visibility: visible;
  }

  /* Nested dropdown */
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: calc(100% + 6px);
    visibility: hidden;
    transform: translateX(-4px);
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    left: calc(100% + 4px);
    transform: translateX(0);
    visibility: visible;
  }

  /* CTA-style last nav item */
  .navmenu li.nav-cta > a {
    background-color: var(--accent-color);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
  }

  .navmenu li.nav-cta > a:hover {
    background-color: color-mix(in srgb, var(--accent-color), #fff 12%);
  }
}

/*--------------------------------------------------------------
# Navigation Menu — Mobile / Tablet (<1200px)
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: rgba(255, 255, 255, 0.90);
    font-size: 24px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background-color: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
  }
 
  .mobile-nav-toggle:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
  }
 
  /* Drawer */
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
 
  /* Drawer — ul level-1 saja */
  .navmenu > ul {
    display: none;
    list-style: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    padding: 80px 16px 32px;
    margin: 0;
    background-color: rgba(11, 26, 19, 0.98);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 9998;
    box-shadow: -24px 0 64px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    gap: 4px;
  }
 
  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.78);
    padding: 12px 16px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 10px;
    text-decoration: none;
  }
 
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.25s ease, background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
  }
 
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.07);
  }
 
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: rotate(180deg);
  }
 
  /* Mobile dropdown — reset semua properti yang diwarisi dari .navmenu ul */
  .navmenu .dropdown ul {
    position: static !important;
    display: none;
    width: auto !important;
    min-width: 0 !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    transition: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-left: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-radius: 0 8px 8px 0 !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    padding: 4px 0 4px 4px !important;
    margin: 4px 0 4px 16px !important;
    flex-direction: column !important;
    gap: 0 !important;
    overflow: visible !important;
    z-index: auto !important;
  }
 
  .navmenu .dropdown ul ul {
    background-color: transparent !important;
    padding-left: 8px !important;
    margin-left: 12px !important;
  }
 
  /* Tampilkan saat toggle-dropdown diklik (class .dropdown-active ditambahkan JS) */
  .navmenu .dropdown > .dropdown-active {
    display: flex !important;
  }
 
  /* Overlay backdrop */
  .mobile-nav-active {
    overflow: hidden;
  }
 
  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 9999;
    background-color: rgba(11, 26, 19, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
  }
 
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    transition: background 0.3s ease;
  }
 
  .mobile-nav-active .navmenu > ul {
    display: flex !important;
    transform: translateX(0) !important;
  }
 
  /* Drawer close animation */
  .navmenu.closing > ul {
    transform: translateX(100%);
  }
 
  /* Divider between groups */
  .navmenu ul li.nav-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 8px 8px;
    border-radius: 1px;
  }
}

/*--------------------------------------------------------------
# Responsive tweaks
--------------------------------------------------------------*/

/* Tablet landscape — tighten nav padding slightly */
@media (min-width: 1200px) and (max-width: 1400px) {
  .navmenu a,
  .navmenu a:focus {
    padding: 10px 10px;
    font-size: 12px;
  }
}

/* Small mobile — full-width drawer */
@media (max-width: 380px) {
  .navmenu ul {
    width: 100vw;
    border-left: none;
  }
}

/*--------------------------------------------------------------
# Footer — Refactored
--------------------------------------------------------------*/
.site-footer {
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(61, 122, 82, 0.08);
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(184, 154, 90, 0.05);
  pointer-events: none;
}

/* Grid layout */
.footer-top {
  padding: 4rem 3rem 1rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

/* Brand */
.brand-name {
  font-family: var(--heading-font);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.brand-name em { font-style: italic; color: var(--gold); }

.brand-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* Contact list */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; }

.contact-list .ci {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  font-size: 0.95rem;
  margin-top: 1px;
}

.contact-list .ct { display: flex; flex-direction: column; gap: 0.1rem; }

.contact-list .ct small {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.contact-list .ct a,
.contact-list .ct span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-list .ct a:hover { color: #fff; }

/* Footer columns */
.footer-col h5 {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s, gap 0.2s;
}

.footer-nav li a i {
  font-size: 0.75rem;
  color: var(--sage);
  transition: transform 0.2s;
}

.footer-nav li a:hover { color: #fff; gap: 0.75rem; }
.footer-nav li a:hover i { transform: translateX(2px); }

/* Social */
.social-row { display: flex; gap: 0.6rem; margin-top: 1.5rem; }

.social-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s;
}

.social-btn:hover {
  background: var(--leaf);
  border-color: var(--leaf);
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-inner p { font-size: 0.78rem; color: rgba(255, 255, 255, 0.3); }
.footer-bottom-inner p strong { color: rgba(255, 255, 255, 0.55); font-weight: 500; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badge i { color: var(--sage); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 992px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .brand-tagline { max-width: 100%; }
}

@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--forest, #1a3a2a);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

/* Subtle radial glow at center */
#preloader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  background: radial-gradient(circle, rgba(61, 122, 82, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: preloader-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

/* Ambient particle dots */
#preloader::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.04) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Preloader inner wrapper ── */
.preloader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ── Logo container ── */
.preloader-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloader-logo-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preloader-logo img {
  width: auto;
  height: clamp(48px, 8vw, 72px);
  object-fit: contain;
  filter: brightness(0) invert(1);           /* render as white */
  animation: preloader-logo-breathe 2.8s ease-in-out infinite;
}

/* Orbit ring around logo */
.preloader-orbit {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(90, 158, 111, 0.70);  /* --sage */
  border-right-color: rgba(90, 158, 111, 0.20);
  animation: preloader-orbit-spin 1.8s linear infinite;
}

.preloader-orbit::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: rgba(61, 122, 82, 0.45); /* --leaf */
  border-left-color: rgba(61, 122, 82, 0.15);
  animation: preloader-orbit-spin 2.8s linear infinite reverse;
}

/* ── Progress bar ── */
.preloader-bar-wrap {
  width: clamp(120px, 28vw, 180px);
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  animation: preloader-logo-in 0.6s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(61,122,82,0.6), #5a9e6f, rgba(184,154,90,0.5));
  border-radius: 99px;
  animation: preloader-bar-fill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

/* ── Company name / tagline ── */
.preloader-name {
  font-family: var(--heading-font, 'Raleway', sans-serif);
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  animation: preloader-logo-in 0.6s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Removed / hidden state ── */
#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ── Keyframes ── */
@keyframes preloader-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

@keyframes preloader-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes preloader-logo-breathe {
  0%, 100% { opacity: 0.90; transform: scale(1);    }
  50%       { opacity: 1;    transform: scale(1.04); }
}

@keyframes preloader-logo-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes preloader-bar-fill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  85%  { width: 92%; }
  100% { width: 100%; }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: clamp(12px, 3vw, 24px);
  bottom: clamp(12px, 3vw, 24px);
  z-index: 99999;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(26, 58, 42, 0.85);     /* --forest tinted */
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(90, 158, 111, 0.28);   /* --sage border */
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;

  /* SVG ring progress indicator */
  --ring-size: 44px;
  --ring-stroke: 1.5px;
  --ring-color: rgba(90, 158, 111, 0.50);
}

/* SVG progress ring via outline pseudo-element */
.scroll-top::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  border: 1px solid rgba(90, 158, 111, 0.0);
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.scroll-top i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
  display: block;
}

.scroll-top:hover {
  background-color: rgba(44, 95, 63, 0.95);   /* --moss */
  border-color: rgba(90, 158, 111, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 0 4px rgba(61, 122, 82, 0.12);
  color: #ffffff;
}

.scroll-top:hover i {
  transform: translateY(-2px);
  color: #ffffff;
}

.scroll-top:hover::before {
  border-color: rgba(90, 158, 111, 0.35);
}

.scroll-top:active {
  transform: translateY(-1px) scale(0.97);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Responsive: slightly smaller on very small screens */
@media (max-width: 380px) {
  .scroll-top {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    right: 12px;
    bottom: 12px;
  }

  .scroll-top i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/* ===================================================
   HERO SECTION — Modern Editorial Redesign
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --hero-accent: #c9a96e;
  --hero-accent-light: #e8d5ae;
  --hero-dark: #0a0a0a;
  --hero-text: #f5f0e8;
  --hero-muted: rgba(245, 240, 232, 0.55);
  --hero-border: rgba(201, 169, 110, 0.25);
  --hero-duration: 6000ms;
}

/* ── Section Reset ── */
.hero {
  padding: 0;
  overflow: hidden;
}

/* ── Carousel Base ── */
.hero .carousel {
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  position: relative;
  background: var(--hero-dark);
}

/* ── Carousel Item ── */
.hero .carousel-item {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
}

/* ── Background Image Layer ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.75) saturate(0.9);
}

.hero .carousel-item.active .hero-bg img {
  transform: scale(1);
}

/* Cinematic gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.1) 60%),
    linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
}

/* Subtle film-grain noise texture */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* ── Content Layout ── */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  max-width: 820px;
  padding-top: 100px;
}

/* ── Label ── */
.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero .carousel-item.active .hero-label {
  opacity: 1;
  transform: translateY(0);
}

.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--hero-accent);
}

.label-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hero-accent);
}

/* ── Title ── */
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--hero-text);
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(3deg);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) calc(0.35s + var(--i) * 0.09s),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) calc(0.35s + var(--i) * 0.09s);
}

.hero .carousel-item.active .hero-title .word {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* ── Subtitle ── */
.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--hero-muted);
  max-width: 500px;
  margin: 0 0 40px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}

.hero .carousel-item.active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* ── Actions ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.9s, transform 0.7s ease 0.9s;
}

.hero .carousel-item.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--hero-dark);
  background: var(--hero-accent);
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.5s ease;
}

.btn-primary-hero:hover::before {
  transform: translateX(110%) skewX(-15deg);
}

.btn-primary-hero:hover {
  background: var(--hero-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.5);
}

.btn-primary-hero svg {
  transition: transform 0.3s ease;
}

.btn-primary-hero:hover svg {
  transform: translateX(4px);
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--hero-text);
  text-decoration: none;
  padding: 14px 0;
  position: relative;
}

.btn-secondary-hero::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--hero-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary-hero:hover::after {
  transform: scaleX(1);
}

.btn-secondary-hero:hover {
  color: var(--hero-accent-light);
}

/* ── Slide Number ── */
.hero-slide-number {
  position: absolute;
  bottom: 48px;
  right: 8vw;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
}

.current-num {
  font-size: 32px;
  font-weight: 300;
  color: var(--hero-text);
  line-height: 1;
}

.divider-num {
  font-size: 14px;
  color: var(--hero-muted);
}

.total-num {
  font-size: 14px;
  color: var(--hero-muted);
  font-weight: 300;
}

/* ── Navigation Arrows ── */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  position: absolute;
  top: auto;
  bottom: 40px;
  width: auto;
  opacity: 1;
  z-index: 10;
  right: 8vw;
  left: auto;
}

.hero .carousel-control-prev {
  right: calc(8vw + 72px);
}

.nav-icon {
  width: 48px;
  height: 48px;
  color: var(--hero-text);
  border: 1px solid var(--hero-border);
  border-radius: 50%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  display: block;
}

.hero .carousel-control-prev:hover .nav-icon,
.hero .carousel-control-next:hover .nav-icon {
  background: var(--hero-accent);
  border-color: var(--hero-accent);
  color: var(--hero-dark);
}

/* ── Progress Bar ── */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  background: var(--hero-accent);
  width: 0%;
  transition: width linear;
}

.hero .carousel-item.active ~ * .hero-progress-bar,
.hero-progress-bar.running {
  width: 100%;
  transition-duration: var(--hero-duration);
}

/* ── Dot Indicators ── */
.hero-indicators {
  position: absolute;
  left: 8vw;
  bottom: 52px;
  z-index: 10;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

/* Reset semua Bootstrap override pada indicator button */
.hero-indicators button {
  all: unset;
  display: block;
  box-sizing: border-box;
  width: 6px !important;
  min-width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(245, 240, 232, 0.3) !important;
  padding: 0;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 1 !important;
  text-indent: -9999px;
  overflow: hidden;
  transition:
    background 0.35s ease,
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    min-width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-indicators button.active {
  background: var(--hero-accent) !important;
  width: 24px !important;
  min-width: 24px;
}

.hero-indicators button:hover:not(.active) {
  background: rgba(245, 240, 232, 0.6) !important;
}

/* ── Scroll Cue ── */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
}

.scroll-cue span {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hero-text);
}

.scroll-dot {
  width: 4px;
  height: 4px;
  background: var(--hero-text);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}

/* ── Vertical Decorative Line ── */
.hero .carousel::before {
  content: '';
  position: absolute;
  left: calc(8vw - 1px);
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--hero-border), transparent);
  z-index: 5;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 6vw;
    padding-top: 80px;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    right: 6vw;
    bottom: 64px;
  }

  .hero .carousel-control-prev {
    right: calc(6vw + 64px);
  }

  .hero-slide-number {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .hero-indicators {
    left: 6vw;
    bottom: 20px;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero .carousel::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .btn-secondary-hero {
    display: none;
  }
}

/* ── JS progress animation reset ── */
.hero-progress-bar.reset {
  transition: none;
  width: 0%;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
      padding: 120px 0 100px;
      overflow: hidden;
      position: relative;
    }

    .about::before {
      content: '';
      position: absolute;
      top: -60px; right: -80px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 93%) 0%, transparent 70%);
      pointer-events: none;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ────────────────────────────── HEADER ── */
    .about-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 80px;
      border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
      padding-bottom: 48px;
    }

    .about-header .left {
      max-width: 640px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent-color);
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: '';
      width: 28px; height: 2px;
      background: var(--accent-color);
      flex-shrink: 0;
    }

    .about-header h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.12;
      color: var(--heading-color);
      letter-spacing: -0.02em;
    }

    .about-header h2 em {
      font-style: italic;
      color: var(--accent-color);
    }

    .about-header .right {
      flex-shrink: 0;
      max-width: 440px;
    }

    .about-header .right p {
      font-size: 1rem;
      text-align: justify;
      line-height: 1.75;
      color: color-mix(in srgb, var(--default-color), transparent 25%);
    }

    /* ────────────────────────────── MAIN GRID ── */
    .main-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
      margin-bottom: 80px;
    }

    /* Left column – image collage */
    .image-col {
      position: relative;
    }

    .img-stack {
      position: relative;
      height: 560px;
    }

    .img-primary {
      position: absolute;
      top: 0; left: 0;
      width: 80%; height: 78%;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: 0 24px 60px rgba(0,0,0,0.12);
      transition: transform var(--transition);
    }

    .img-secondary {
      position: absolute;
      bottom: 0; right: 0;
      width: 58%; height: 50%;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: 0 16px 40px rgba(0,0,0,0.14);
      border: 5px solid var(--background-color);
      transition: transform var(--transition);
    }

    .img-stack:hover .img-primary  { transform: translate(-4px, -4px); }
    .img-stack:hover .img-secondary { transform: translate(4px, 4px); }

    .img-accent-box {
      position: absolute;
      top: 50%;
      left: 67%;
      transform: translate(-50%, -50%);
      background: var(--accent-color);
      color: var(--contrast-color);
      padding: 20px 24px;
      border-radius: var(--radius);
      box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 65%);
      z-index: 10;
      min-width: 160px;
      text-align: center;
    }

    .img-accent-box .big-num {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      line-height: 1;
      color: var(--contrast-color);
    }

    .img-accent-box .big-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: color-mix(in srgb, var(--contrast-color), transparent 25%);
      margin-top: 4px;
    }

    /* Right column – content */
    .content-col {
      padding-left: 20px;
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    /* Stats */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .stat-item {
      background: var(--surface-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      border-radius: var(--radius);
      padding: 24px 20px;
      position: relative;
      overflow: hidden;
      transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
    }

    .stat-item::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 3px;
      background: var(--accent-color);
      transition: width var(--transition);
    }

    .stat-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
    .stat-item:hover::after { width: 100%; }

    .stat-number {
      font-family: 'DM Serif Display', serif;
      font-size: 2.25rem;
      color: var(--accent-color);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 0.8rem;
      font-weight: 500;
      color: color-mix(in srgb, var(--default-color), transparent 30%);
      letter-spacing: 0.03em;
    }

    /* Value card – first */
    .value-featured {
      background: var(--heading-color);
      color: var(--contrast-color);
      border-radius: var(--radius);
      padding: 28px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: transform var(--transition);
    }

    .value-featured:hover { transform: translateY(-4px); }

    .value-featured .icon-wrap {
      flex-shrink: 0;
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--accent-color);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem;
      color: var(--contrast-color);
    }

    .value-featured h4 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.15rem;
      margin-bottom: 6px;
      color: var(--contrast-color);
    }

    .value-featured p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: color-mix(in srgb, var(--contrast-color), transparent 35%);
      margin: 0;
    }

    /* ────────────────────────────── FEATURES ROW ── */
    .features-section {
      border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      padding-top: 64px;
    }

    .features-label {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: color-mix(in srgb, var(--default-color), transparent 30%);
      margin-bottom: 48px;
    }

    .features-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .feature-box {
      padding: 36px 40px;
      border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      transition: background var(--transition);
      position: relative;
      overflow: hidden;
    }

    .feature-box:last-child { border-right: none; }

    .feature-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 0;
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      transition: height var(--transition);
      z-index: 0;
    }

    .feature-box:hover::before { height: 100%; }

    .feature-box > * { position: relative; z-index: 1; }

    .feature-num {
      font-family: 'DM Serif Display', serif;
      font-size: 3rem;
      color: color-mix(in srgb, var(--default-color), transparent 94%);
      line-height: 1;
      margin-bottom: 8px;
      transition: color var(--transition);
    }

    .feature-box:hover .feature-num { color: color-mix(in srgb, var(--accent-color), transparent 88%); }

    .feature-icon-wrap {
      width: 52px; height: 52px;
      border-radius: 10px;
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem;
      color: var(--accent-color);
      margin-bottom: 20px;
      transition: background var(--transition), color var(--transition);
    }

    .feature-box:hover .feature-icon-wrap {
      background: var(--accent-color);
      color: var(--contrast-color);
    }

    .feature-box h5 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: var(--heading-color);
    }

    .feature-box p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: color-mix(in srgb, var(--default-color), transparent 25%);
      margin: 0;
    }

    /* ────────────────────────────── RESPONSIVE ── */
    @media (max-width: 992px) {
      .about-header { flex-direction: column; align-items: flex-start; }
      .about-header .right { max-width: none; }
      .main-grid { grid-template-columns: 1fr; }
      .img-stack { height: 420px; }
      .content-col { padding-left: 0; }
      .features-grid { grid-template-columns: 1fr; }
      .feature-box { border-right: none; border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); }
      .feature-box:last-child { border-bottom: none; }
    }

    @media (max-width: 576px) {
      .about { padding: 80px 0 60px; }
      .container { padding: 0 20px; }
      .stats-grid { grid-template-columns: 1fr; }
      .img-stack { height: 340px; }
    }

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

    .anim { opacity: 0; animation: fadeUp 0.7s var(--transition) forwards; }
    .anim-d1 { animation-delay: 0.1s; }
    .anim-d2 { animation-delay: 0.25s; }
    .anim-d3 { animation-delay: 0.4s; }
    .anim-d4 { animation-delay: 0.55s; }
    .anim-d5 { animation-delay: 0.7s; }
    .anim-d6 { animation-delay: 0.85s; }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
/* ============================================
   FEATURES SECTION — Modern Editorial Style
   Uses existing CSS variables:
   --surface-color, --default-color, --heading-color,
   --accent-color, --contrast-color, --background-color
   ============================================ */

/* ---------- Section Shell ---------- */
.features {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Ambient orbs */
.features__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.features__bg-orb--1 {
  width: 600px;
  height: 600px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  top: -150px;
  right: -200px;
}

.features__bg-orb--2 {
  width: 400px;
  height: 400px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  bottom: -100px;
  left: -150px;
}

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

/* ---------- Header ---------- */
.features__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.features__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features__eyebrow::before,
.features__eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--accent-color);
  opacity: 0.5;
}

.features__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--heading-color);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.features__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

/* ---------- Tab Navigation ---------- */
.features__nav-wrapper {
  margin-bottom: 48px;
}

/* Reset Bootstrap nav-tabs border */
.features__nav.nav-tabs {
  border-bottom: none !important;
}

.features__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .features__nav {
    flex-direction: column;
  }
}

.features__nav-item {
  flex: 1;
  min-width: 0;
}

/* Base button — covers both .features__nav-btn and Bootstrap's .nav-link state */
.features__nav-btn {
  width: 100%;
  background: var(--surface-color);
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 88%) !important;
  border-radius: 16px !important;
  padding: 18px 20px !important;
  display: flex !important;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
  text-align: left;
  position: relative;
  overflow: hidden;
  color: inherit !important;
  margin-bottom: 0 !important;
  isolation: isolate;
}

.features__nav-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 25%)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.features__nav-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.features__nav-icon i {
  font-size: 20px;
  color: var(--accent-color);
  transition: color 0.4s ease;
}

.features__nav-text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.features__nav-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.4s ease;
  margin-bottom: 2px;
}

.features__nav-text small {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.4s ease;
}

.features__nav-arrow {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.35s ease;
  color: var(--contrast-color);
  font-size: 14px;
}

/* Hover */
.features__nav-btn:hover {
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.features__nav-btn:hover::after { opacity: 1; }

.features__nav-btn:hover .features__nav-icon {
  background: rgba(255,255,255,0.2);
}

.features__nav-btn:hover .features__nav-icon i,
.features__nav-btn:hover .features__nav-text strong,
.features__nav-btn:hover .features__nav-text small {
  color: var(--contrast-color);
}

.features__nav-btn:hover .features__nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Active state — Bootstrap adds .active class */
.features__nav-btn.active {
  border-color: transparent !important;
  background: var(--surface-color) !important;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color), transparent 68%);
}

.features__nav-btn.active::after { opacity: 1; }

.features__nav-btn.active .features__nav-icon {
  background: rgba(255,255,255,0.2);
}

.features__nav-btn.active .features__nav-icon i,
.features__nav-btn.active .features__nav-text strong,
.features__nav-btn.active .features__nav-text small {
  color: var(--contrast-color);
}

.features__nav-btn.active .features__nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Panel ---------- */
.features__content {
  position: relative;
}

.features__panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  background: var(--surface-color);
  border-radius: 28px;
  padding: 56px;
  box-shadow: 0 24px 80px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 992px) {
  .features__panel {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px;
  }
}

@media (max-width: 576px) {
  .features__panel {
    padding: 24px;
    border-radius: 20px;
  }
}

/* ---------- Panel Body (Left) ---------- */
.features__panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.features__panel-badge i {
  font-size: 14px;
}

.features__panel-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.features__panel-desc {
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 36px;
  text-align: justify;
}

/* ---------- Product List ---------- */
.features__product-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.features__product-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.35s ease;
  cursor: default;
  animation: slideInLeft 0.5s ease both;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.features__product-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features__product-item:hover .features__product-icon {
  opacity: 1;
  transform: translate(0, 0);
}

.features__product-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  opacity: 0.6;
  min-width: 24px;
}

.features__product-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.4;
}

.features__product-icon {
  font-size: 14px;
  color: var(--accent-color);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.3s ease;
}

.features__empty {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding: 12px 0;
}

/* ---------- CTA Button ---------- */
.features__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 15px;
  transition: gap 0.3s ease;
}

.features__cta:hover {
  gap: 20px;
  color: var(--accent-color);
}

.features__cta:hover .features__cta-circle {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 25%));
  transform: scale(1.1);
}

.features__cta:hover .features__cta-circle i {
  color: var(--contrast-color);
}

.features__cta-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.features__cta-circle i {
  font-size: 16px;
  color: var(--accent-color);
  transition: color 0.4s ease;
}

/* ---------- Panel Visual (Right) ---------- */
.features__panel-visual {
  position: relative;
}

.features__img-frame {
  position: relative;
}

/* Corner decoration */
.features__img-decoration {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-top: 2.5px solid var(--accent-color);
  border-right: 2.5px solid var(--accent-color);
  border-radius: 0 16px 0 0;
  opacity: 0.35;
  z-index: 0;
}

.features__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 70px color-mix(in srgb, var(--default-color), transparent 82%),
    0 0 0 1px color-mix(in srgb, var(--default-color), transparent 90%);
  aspect-ratio: 4 / 3;
}

.features__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Floating Badge */
.features__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  animation: badgeFloat 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
  transform-origin: bottom left;
}

@keyframes badgeFloat {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

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

.features__img-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading-color);
  white-space: nowrap;
}

.features__img-badge small {
  display: block;
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  white-space: nowrap;
}

/* ---------- Tab transition smoothness ---------- */
.features .tab-pane {
  transition: opacity 0.35s ease;
}

.features .tab-pane.show {
  animation: panelReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes panelReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta-section {
  width: 100%;
  padding: 100px 0;
  background: var(--background-color);
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 88%) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, transparent 70%);
  pointer-events: none;
}

/* Noise grain overlay */
.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ─── Grid Layout ─── */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ─── Left: Content ─── */
.cta-content {}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent-color);
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--default-color);
  margin-bottom: 24px;
}

.cta-title em {
  font-style: normal;
  color: var(--accent-color);
  position: relative;
}

/* Underline decoration on the accent word */
.cta-title em::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  opacity: 0.4;
}

.cta-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
}

/* ─── Feature pills ─── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 44px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--surface-color), transparent 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition);
}

.feature-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--default-color);
  line-height: 1.3;
}

/* ─── CTA Button ─── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-cta:hover::before { opacity: 1; }
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent-color), transparent 55%);
  color: var(--contrast-color);
}

.btn-cta .arrow {
  transition: transform var(--transition);
}
.btn-cta:hover .arrow {
  transform: translateX(4px);
}

/* ─── Right: Visual ─── */
.cta-visual {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* Border gradient pakai outline + box-shadow, bukan pseudo-element */
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 60%),
    0 24px 60px rgba(0,0,0,0.15);
}

/* Corner accent lines */
/* .image-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-color) 0%, transparent 40%, transparent 60%, color-mix(in srgb, var(--accent-color), transparent 60%) 100%);
  z-index: 0;
  padding: 1px;
} */

.image-inner {
  position: relative;
  z-index: 1;
  border-radius: 19px;
  overflow: hidden;
  background: var(--surface-color);
  /* will-change hanya pada wrapper, bukan gambar */
}

.cta-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  /* HAPUS filter dari sini — pindah ke overlay */
  transition: transform 0.7s ease;
  /* Paksa GPU layer dari awal agar tidak shift saat hover */
  will-change: transform;
  transform: translateZ(0);
}

.image-inner:hover .cta-img {
  transform: scale(1.03);
  /* Tidak ada filter perubahan = tidak ada repaint */
}

/* Overlay sekarang yang handle gelap/saturation */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,14,18,0.75) 0%,
    rgba(13,14,18,0.20) 50%,
    transparent 100%
  );
  z-index: 2;
  /* Composite layer terpisah */
  will-change: auto;
}

/* ─── Floating stat card ─── */
.stat-card {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 16px;
  padding: 22px 26px;
  z-index: 10;
  backdrop-filter: none;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  min-width: 180px;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
  border-radius: 16px 16px 0 0;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Bottom floating badge ─── */
.badge-card {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 14px;
  padding: 18px 22px;
  z-index: 10;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
}

.badge-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.badge-body {}
.badge-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.2;
}
.badge-sub {
  font-size: 0.75rem;
  opacity: 0.75;
  line-height: 1.3;
}

/* ─── Decorative vertical line ─── */
.vline {
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--accent-color), transparent 80%), transparent);
  pointer-events: none;
}

/* ─── Responsive ─── */
@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .cta-visual {
    order: -1;
  }
  .stat-card {
    top: -20px;
    right: -10px;
  }
  .badge-card {
    left: -10px;
    bottom: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .cta-section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-img { height: 300px; }
  .stat-card { top: -16px; right: 10px; }
  .badge-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
    max-width: 100%;
    border-radius: 12px;
  }
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.cta-content { animation: fadeUp 0.8s ease both; }
.cta-visual  { animation: fadeUp 0.8s 0.2s ease both; }
.stat-card   { animation: float 5s ease-in-out infinite; }
.badge-card  { animation: float 5s 1.5s ease-in-out infinite; }

/*--------------------------------------------------------------
# Clients Section — Refactored
--------------------------------------------------------------*/
.clients-section {
  padding: 5rem 0;
  background: var(--background-color);
  overflow: hidden;
  position: relative;
}

.clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 122, 82, 0.04) 0%,
    transparent 50%,
    rgba(184, 154, 90, 0.03) 100%
  );
  pointer-events: none;
}

/* Header */
.clients-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.clients-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  background: rgba(61, 122, 82, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(61, 122, 82, 0.15);
}

.clients-section .eyebrow::before,
.clients-section .eyebrow::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--sage);
  opacity: 0.6;
}

.clients-section .section-title {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--forest);
  font-weight: 700;
  line-height: 1.25;
}

.clients-section .section-title em {
  font-style: italic;
  color: var(--leaf);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.divider-line {
  display: block;
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
}

.divider-diamond {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 1px;
  flex-shrink: 0;
}

/* Marquee Track */
.clients-track-wrapper {
  position: relative;
  padding: 2rem 0;
}

.clients-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-fade--left  { left: 0;  background: linear-gradient(90deg,  var(--background-color) 20%, transparent); }
.clients-fade--right { right: 0; background: linear-gradient(270deg, var(--background-color) 20%, transparent); }

.clients-track { overflow: hidden; }

.clients-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
  animation: clientsScroll 30s linear infinite;
}

.clients-inner:hover { animation-play-state: paused; }

@keyframes clientsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Logo Item */
.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 90px;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(61, 122, 82, 0.12);
  background: var(--background-color);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.client-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 122, 82, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.client-logo:hover {
  border-color: rgba(61, 122, 82, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 58, 42, 0.1);
}

.client-logo:hover::before { opacity: 1; }

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.35s ease;
}

.client-logo:hover img { filter: grayscale(0) opacity(1); }

/* Responsive */
@media (max-width: 768px) {
  /* .client-logo { width: 150px; height: 76px; } */
  .clients-section { padding: 3.5rem 0; }
  .clients-fade { width: 60px; }
}

@media (max-width: 640px) {
  .clients-stat { padding: 1.25rem; }
  /* .client-logo { width: 150px; height: 76px; } */
}

@media (max-width: 400px) {
  .clients-inner { gap: 1.75rem; }
  /* .client-logo { width: 150px; height: 76px; padding: 0.75rem 1rem; } */
}

/*--------------------------------------------------------------
# Contact Section — Refactored
--------------------------------------------------------------*/
.contact-section {
  padding: 5rem 0;
  background: var(--light-background, #f4f7f5);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(61, 122, 82, 0.06);
  pointer-events: none;
}

/* Header */
.contact-section .section-header { text-align: center; margin-bottom: 4rem; }

.contact-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.9rem;
  background: rgba(61, 122, 82, 0.09);
  border-radius: 999px;
  border: 1px solid rgba(61, 122, 82, 0.18);
}

.contact-section .eyebrow::before,
.contact-section .eyebrow::after {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--sage);
  opacity: 0.5;
}

.contact-section .section-title {
  font-family: var(--heading-font);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--forest);
  font-weight: 700;
  line-height: 1.2;
}

.contact-section .section-title em { font-style: italic; color: var(--leaf); }

.contact-section .section-sub {
  font-size: 1rem;
  color: var(--sage);
  margin-top: 0.6rem;
}

.contact-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-divider .divider-line {
  display: block; height: 1px; width: 50px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
}

.contact-divider .divider-dot {
  display: block;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 1px;
  flex-shrink: 0;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Info Card */
.contact-info-wrap { display: flex; flex-direction: column; gap: 1.5rem; }

.info-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(61, 122, 82, 0.1);
  padding: 1.75rem 2rem;
}

.info-card-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.1rem;
}

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

.info-item:last-child { margin-bottom: 0; }

.info-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
  font-size: 1.1rem;
}

.info-text { display: flex; flex-direction: column; gap: 0.15rem; padding-top: 0.15rem; }

.info-text strong {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-text a,
.info-text span {
  font-size: 0.95rem;
  color: var(--forest);
  text-decoration: none;
  transition: color 0.25s;
}

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

/* Map Card */
.map-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(61, 122, 82, 0.1);
  overflow: hidden;
}

.map-card iframe { display: block; width: 100%; height: 220px; border: 0; }

.map-footer {
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(61, 122, 82, 0.08);
}

.map-footer span { font-size: 0.82rem; color: var(--sage); }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--leaf);
  text-decoration: none;
  transition: gap 0.25s;
}

.map-link:hover { gap: 0.7rem; color: var(--moss); }

/* Form Card */
.form-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(61, 122, 82, 0.1);
  padding: 2.25rem 2.25rem 2rem;
  box-shadow: 0 8px 40px rgba(26, 58, 42, 0.05);
}

.form-intro { margin-bottom: 1.75rem; }

.form-intro h3 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.form-intro p { font-size: 0.9rem; color: var(--sage); }

/* Form Group — Redesigned */
.form-group { margin-bottom: 1.1rem; position: relative; }

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.45rem;
}

.form-group label i { font-size: 0.9rem; color: var(--sage); }

/* Input wrapper — untuk posisi icon & animasi garis */
.input-wrap { position: relative; }
.input-wrap.textarea-wrap .field-icon { top: 14px; transform: none; }

/* Icon dalam field */
.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sage);
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.25s;
}

/* Input & Textarea base */
.form-group .form-control {
  width: 100%;
  padding: 0.72rem 1rem 0.72rem 2.75rem;
  background: #f8faf9;
  border: 1.5px solid rgba(61, 122, 82, 0.15);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--forest);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
}

.form-group textarea.form-control {
  padding: 0.72rem 1rem 0.72rem 2.75rem;
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group .form-control::placeholder {
  color: rgba(90, 158, 111, 0.45);
  font-size: 0.9rem;
}

/* Hover state */
.form-group .form-control:hover {
  border-color: rgba(61, 122, 82, 0.35);
  background: #f4f8f5;
}

/* Focus state */
.form-group .form-control:focus {
  border-color: var(--leaf);
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(61, 122, 82, 0.1);
}

.form-group .form-control:focus + .field-icon { color: var(--leaf); }

/* Garis animasi bawah saat focus */
.field-line {
  position: absolute;
  bottom: 0; left: 10px; right: 10px;
  height: 2px;
  background: var(--leaf);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left;
}

.form-group .form-control:focus ~ .field-line { transform: scaleX(1); }

/* Karakter counter (opsional, untuk textarea) */
.char-count {
  position: absolute;
  bottom: 10px; right: 12px;
  font-size: 0.7rem;
  color: rgba(90, 158, 111, 0.5);
  pointer-events: none;
}

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

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--leaf);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.25s, transform 0.2s;
}

.btn-submit:hover { background: var(--moss); transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem 1.5rem; }
}

@media (max-width: 520px) {
  .contact-section { padding: 3rem 0; }
  .form-row-2 { grid-template-columns: 1fr; }
  .info-card { padding: 1.25rem; }
  .form-card { padding: 1.5rem 1.25rem; }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section { */
  /* Add your styles here */
/* } */

/*Halaman Detail Produk */
/* ─── RESET & BASE ──────────────────────────────── */
    .npa-wrap * { box-sizing: border-box; margin: 0; padding: 0; }

    .npa-wrap {
        font-family: 'DM Sans', sans-serif;
        background: var(--cream);
        color: var(--text);
        overflow-x: hidden;
    }

    /* ─── PAGE TITLE / BREADCRUMB ───────────────────── */
    .npa-hero {
        background: var(--forest);
        background-image:
            radial-gradient(ellipse 80% 60% at 70% 50%, rgba(61,122,82,.35) 0%, transparent 70%),
            repeating-linear-gradient(
                135deg,
                transparent 0px,
                transparent 40px,
                rgba(255,255,255,.02) 40px,
                rgba(255,255,255,.02) 41px
            );
        padding: 72px 0 52px;
        position: relative;
        overflow: hidden;
    }

    .npa-hero::before {
        content: '';
        position: absolute;
        right: -80px; top: -80px;
        width: 380px; height: 380px;
        border: 1px solid rgba(184,154,90,.18);
        border-radius: 50%;
    }
    .npa-hero::after {
        content: '';
        position: absolute;
        right: -30px; top: -30px;
        width: 240px; height: 240px;
        border: 1px solid rgba(184,154,90,.12);
        border-radius: 50%;
    }

    .npa-hero .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 32px;
    }

    .npa-breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: rgba(255,255,255,.55);
        margin-bottom: 20px;
        letter-spacing: .04em;
    }
    .npa-breadcrumb a { color: var(--sage); text-decoration: none; transition: color .2s; }
    .npa-breadcrumb a:hover { color: var(--gold); }
    .npa-breadcrumb .sep { color: rgba(255,255,255,.25); }
    .npa-breadcrumb .current { color: rgba(255,255,255,.7); }

    .npa-hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 5vw, 3.2rem);
        color: #fff;
        font-weight: 700;
        line-height: 1.15;
        position: relative;
        z-index: 1;
    }
    .npa-hero-title em {
        font-style: italic;
        color: var(--gold);
    }

    /* ─── CATEGORY HEADER ───────────────────────────── */
    .npa-cat-header {
        max-width: 1200px;
        margin: 0 auto;
        padding: 64px 32px 0;
    }

    .npa-cat-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--forest);
        color: var(--gold);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: .12em;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 2px;
        margin-bottom: 18px;
    }
    .npa-cat-badge .dot {
        width: 5px; height: 5px;
        background: var(--gold);
        border-radius: 50%;
    }

    .npa-cat-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        color: var(--forest);
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .npa-cat-desc {
        font-size: 15px;
        color: #4a6755;
        line-height: 1.7;
        max-width: 560px;
    }

    .npa-divider {
        max-width: 1200px;
        margin: 32px auto 0;
        padding: 0 32px;
    }
    .npa-divider hr {
        border: none;
        border-top: 1px solid rgba(26,58,42,.12);
    }

    /* ─── PRODUCT GRID ──────────────────────────────── */
    .npa-products {
        max-width: 1200px;
        margin: 0 auto;
        padding: 48px 32px 96px;
    }

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

    /* ─── PRODUCT CARD ──────────────────────────────── */
    .npa-card {
        background: #fff;
        border: 1px solid rgba(26,58,42,.1);
        border-radius: 4px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: box-shadow .3s ease, transform .3s ease, border-color .3s;
        position: relative;
    }

    .npa-card:hover {
        box-shadow: 0 16px 48px rgba(26,58,42,.15);
        transform: translateY(-4px);
        border-color: var(--sage);
    }

    /* image area */
    .npa-card-img {
        position: relative;
        aspect-ratio: 4/3;
        overflow: hidden;
        background: var(--mist);
    }

    .npa-card-img img {
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .npa-card:hover .npa-card-img img {
        transform: scale(1.05);
    }

    /* overlay tag */
    .npa-card-tag {
        position: absolute;
        top: 14px; left: 14px;
        background: var(--forest);
        color: var(--gold);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: .1em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 2px;
        z-index: 2;
    }

    /* brochure badge */
    .npa-brochure-badge {
        position: absolute;
        top: 14px; right: 14px;
        background: var(--gold);
        color: var(--dark);
        border-radius: 50%;
        width: 40px; height: 40px;
        display: flex; align-items: center; justify-content: center;
        font-size: 17px;
        z-index: 2;
        opacity: 0;
        transform: scale(.7);
        transition: opacity .25s, transform .25s;
        cursor: pointer;
        text-decoration: none;
    }
    .npa-card:hover .npa-brochure-badge {
        opacity: 1;
        transform: scale(1);
    }

    /* body */
    .npa-card-body {
        padding: 20px 22px 22px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .npa-card-name {
        font-family: 'Playfair Display', serif;
        font-size: 16.5px;
        font-weight: 700;
        color: var(--forest);
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .npa-card-meta {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: #5a7a65;
        margin-bottom: 14px;
    }
    .npa-card-meta svg {
        flex-shrink: 0;
        color: var(--sage);
    }
    .npa-card-weight {
        font-weight: 500;
        color: var(--text);
    }

    /* bottom bar */
    .npa-card-foot {
        margin-top: auto;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-top: 16px;
        border-top: 1px solid rgba(26,58,42,.08);
    }

    .npa-btn-brochure {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: transparent;
        border: 1.5px solid var(--forest);
        color: var(--forest);
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: .05em;
        padding: 8px 16px;
        border-radius: 2px;
        text-decoration: none;
        transition: background .22s, color .22s;
        cursor: pointer;
    }
    .npa-btn-brochure:hover {
        background: var(--forest);
        color: #fff;
    }

    .npa-btn-detail {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--forest);
        border: 1.5px solid var(--forest);
        color: #fff;
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: .05em;
        padding: 8px 16px;
        border-radius: 2px;
        text-decoration: none;
        transition: background .22s, border-color .22s;
    }
    .npa-btn-detail:hover {
        background: var(--moss);
        border-color: var(--moss);
    }

    /* ─── EMPTY STATE ───────────────────────────────── */
    .npa-empty {
        text-align: center;
        padding: 80px 20px;
        color: #7a9a83;
    }
    .npa-empty svg { margin-bottom: 20px; opacity: .4; }
    .npa-empty p { font-size: 15px; }

    /* ─── ANIMATIONS ────────────────────────────────── */
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(24px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .npa-card {
        animation: fadeUp .45s ease both;
    }
    .npa-card:nth-child(1) { animation-delay: .05s; }
    .npa-card:nth-child(2) { animation-delay: .12s; }
    .npa-card:nth-child(3) { animation-delay: .19s; }
    .npa-card:nth-child(4) { animation-delay: .26s; }
    .npa-card:nth-child(5) { animation-delay: .33s; }
    .npa-card:nth-child(6) { animation-delay: .40s; }

    /* ─── RESPONSIVE ────────────────────────────────── */
    @media (max-width: 640px) {
        .npa-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
        .npa-hero { padding: 80px 0 36px; }
        .npa-products, .npa-cat-header { padding-left: 20px; padding-right: 20px; }
    }
    @media (max-width: 440px) {
        .npa-grid { grid-template-columns: 1fr; }
    }