/* ============================================================
   BOS POMPA — style.css
   Dark industrial theme for bospompa.com
   ============================================================ */

/* ------------------------------------------------------------
   1. CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  /* Colors */
  --bg: #111110;
  --bg-elevated: #191918;
  --surface: #222221;
  --surface-hover: #2a2a28;
  --border: #2e2e2c;
  --border-subtle: #252524;
  --text: #ede9e3;
  --text-secondary: #b8b2a8;
  --text-muted: #8a8478;
  --accent: #fcb11e;
  --accent-hover: #e5a01b;
  --accent-glow: rgba(252, 177, 30, 0.1);
  --accent-text: #111110;
  --success: #6b8f71;
  --error: #c47a5a;
  --info: #5b8fb9;
  --bg-light: #f7f8fc;
  --text-dark: #12141b;
  --text-dark-secondary: #555555;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --w-content: 960px;
  --w-wide: 1200px;
  --w-full: 1400px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transition */
  --transition: 180ms ease;
}


/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a:hover {
  text-decoration: underline;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
h5 { font-size: 1rem; margin-bottom: 0.5rem; }
h6 { font-size: 0.875rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.25rem;
}

code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background-color: var(--surface);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-sm);
}

pre {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  background-color: var(--surface);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-subtle);
}

pre code {
  background: none;
  padding: 0;
}

hr {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

::selection {
  background-color: var(--accent);
  color: var(--accent-text);
}


/* ------------------------------------------------------------
   3. LAYOUT
   ------------------------------------------------------------ */
.wrap {
  max-width: var(--w-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.wrap--wide {
  max-width: var(--w-wide);
}

.wrap--full {
  max-width: var(--w-full);
}


/* ------------------------------------------------------------
   4. SKIP LINK
   ------------------------------------------------------------ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 0;
  background-color: var(--accent);
  color: var(--accent-text);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  z-index: 10000;
  text-decoration: none;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}


/* ------------------------------------------------------------
   5. TOPBAR
   ------------------------------------------------------------ */
.topbar {
  background-color: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
  padding: 0.375rem 0;
}

.topbar > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar__left a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.topbar__left a:hover {
  color: var(--text);
  text-decoration: none;
}

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

.topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.topbar__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.topbar__social:hover {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}


/* ------------------------------------------------------------
   6. MIDBAR
   ------------------------------------------------------------ */
.midbar {
  background-color: var(--bg);
  padding: 1rem 0;
}

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

.midbar__logo a {
  display: inline-block;
}

.midbar__logo img {
  max-height: 60px;
  width: auto;
}

.midbar__banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  transition: border-color var(--transition);
  border: 1px solid var(--border-subtle);
}

.midbar__banner:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.midbar__banner-icon {
  flex-shrink: 0;
}

.midbar__banner-icon svg {
  width: 32px;
  height: 32px;
  fill: #25D366;
}

.midbar__banner-text strong {
  display: block;
  color: var(--text);
  font-size: 0.9375rem;
}

.midbar__banner-text span {
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

@media (max-width: 768px) {
  .midbar__inner {
    justify-content: center;
  }

  .midbar__banner {
    display: none;
  }
}


/* ------------------------------------------------------------
   7. NAVBAR
   ------------------------------------------------------------ */
.navbar {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
}

.navbar__inner {
  display: flex;
  align-items: center;
  overflow: visible;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  color: var(--text);
  padding: 1rem 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background-color var(--transition);
}

.nav-item > a:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav-item--active > a {
  background-color: var(--accent);
  color: var(--accent-text);
  border-radius: var(--radius-sm);
}

.nav-item--active > a:hover {
  color: var(--accent-text);
}

/* Chevron for items with children */
.nav-item--has-children > a {
  padding-right: 1.5rem;
}

.nav-item--has-children > a::after {
  content: '';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 200;
  padding: 0.5rem 0;
  list-style: none;
}

.nav-item--has-children:hover > .nav-dropdown {
  display: block;
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.nav-dropdown a:hover {
  background-color: var(--bg-elevated);
  color: var(--text);
  text-decoration: none;
}

/* Nested flyout dropdown */
.nav-dropdown--nested {
  position: absolute;
  left: 100%;
  top: 0;
  border-radius: var(--radius-md);
}

.nav-dropdown li:has(.nav-dropdown--nested) {
  position: relative;
}

.nav-dropdown li:has(.nav-dropdown--nested) > a::after {
  content: '';
  float: right;
  margin-top: 6px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
}

.nav-dropdown li:hover > .nav-dropdown--nested {
  display: block;
}

/* Search in nav */
.nav-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-search__input {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  width: 160px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.nav-search__input::placeholder {
  color: var(--text-muted);
}

.nav-search__input:focus {
  outline: none;
  border-color: var(--accent);
}

.nav-search__btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition);
}

.nav-search__btn:hover {
  color: var(--accent);
}

.nav-search__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}


/* ------------------------------------------------------------
   8. MOBILE NAV (< 960px)
   ------------------------------------------------------------ */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 150;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 1px;
}

.nav-toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    background-color: var(--surface);
    flex-direction: column;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
    padding: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    z-index: 100;
  }

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

  .nav-item > a {
    padding: 0.875rem 1.5rem;
  }

  .nav-item--has-children > a::after {
    right: 1.5rem;
  }

  .nav-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding-left: 1rem;
    background-color: var(--bg-elevated);
    min-width: unset;
  }

  .nav-item--open > .nav-dropdown {
    display: block;
  }

  .nav-dropdown--nested {
    position: static;
    border-radius: 0;
    padding-left: 1rem;
  }

  .nav-dropdown li:has(.nav-dropdown--nested) > a::after {
    float: right;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    border-bottom: none;
  }

  .nav-search {
    width: 100%;
    padding: 0.75rem 1.5rem;
    margin-left: 0;
  }

  .nav-search__input {
    flex: 1;
    width: auto;
  }

  .navbar__inner {
    justify-content: space-between;
    padding: 0 1.5rem;
  }
}


/* ------------------------------------------------------------
   9. WHATSAPP STICKY
   ------------------------------------------------------------ */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: transform var(--transition);
  text-decoration: none;
}

.wa-sticky:hover {
  transform: scale(1.1);
  text-decoration: none;
}

.wa-sticky svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}


/* ------------------------------------------------------------
   10. PAGE HEADER
   ------------------------------------------------------------ */
.page-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
  margin-bottom: 0.25rem;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.5;
}


/* ------------------------------------------------------------
   11. HERO SECTION
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .hero {
    min-height: 380px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }
}


/* ------------------------------------------------------------
   12. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  line-height: 1.4;
}

.btn:hover {
  text-decoration: none;
}

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

.btn--primary {
  background-color: var(--accent);
  color: var(--accent-text);
}

.btn--primary:hover {
  background-color: var(--accent-hover);
  color: var(--accent-text);
}

.btn--secondary {
  background-color: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text);
}

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

.btn--wa {
  background-color: #25D366;
  color: #fff;
}

.btn--wa:hover {
  background-color: #1da851;
  color: #fff;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}


/* ------------------------------------------------------------
   13. CARDS
   ------------------------------------------------------------ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.card:hover {
  border-color: var(--accent);
}

img.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

div.card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

div.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__body {
  padding: 1.25rem;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.card__title a {
  color: var(--text);
  text-decoration: none;
}

.card__title a:hover {
  color: var(--accent);
  text-decoration: none;
}

.card__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.card__meta {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 0.75rem;
}

.card__link {
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.75rem;
  display: inline-block;
  text-decoration: none;
  font-size: 0.9375rem;
}

.card__link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   14. FEATURE GRID
   ------------------------------------------------------------ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.feature__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
}


/* ------------------------------------------------------------
   15. BRAND STRIP
   ------------------------------------------------------------ */
.brand-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.brand-strip:hover {
  opacity: 1;
}

.brand-strip img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter var(--transition), opacity var(--transition);
  opacity: 1;
}

.brand-strip img:hover {
  filter: none;
  opacity: 1;
}

.brand-strip:hover img {
  opacity: 0.5;
}

.brand-strip:hover img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .brand-strip {
    gap: 1.5rem;
  }

  .brand-strip img {
    height: 30px;
  }
}


/* ------------------------------------------------------------
   16. PROSE (article/content body)
   ------------------------------------------------------------ */
.prose {
  max-width: var(--w-content);
  line-height: 1.7;
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.prose h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.prose th {
  background-color: var(--surface);
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  color: var(--text);
}

.prose td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.prose tr:hover td {
  background-color: var(--bg-elevated);
}

.prose img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.prose blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(252, 177, 30, 0.3);
  text-underline-offset: 2px;
}

.prose a:hover {
  text-decoration-color: var(--accent);
}

/* Responsive table wrapper */
.prose .table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.prose .table-wrap table {
  margin-bottom: 0;
}


/* ------------------------------------------------------------
   17. FAQ SECTION
   ------------------------------------------------------------ */
.faq-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.faq-section h2 {
  margin-bottom: 1.5rem;
}

.faq-list {
  max-width: var(--w-content);
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item summary {
  padding: 1rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color var(--transition);
  font-size: 1rem;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item__q {
  /* alias for summary styling handled above */
}

.faq-item__a {
  padding: 0 0 1rem 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item__a p:last-child {
  margin-bottom: 0;
}


/* ------------------------------------------------------------
   18. CTA SECTION
   ------------------------------------------------------------ */
.cta-section {
  background-color: var(--accent);
  color: var(--accent-text);
  text-align: center;
  padding: 4rem 0;
  margin-top: 3rem;
}

.cta-section h2 {
  color: var(--accent-text);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--accent-text);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
}

.cta-section .btn {
  background-color: var(--accent-text);
  color: var(--accent);
}

.cta-section .btn:hover {
  background-color: var(--surface);
  color: var(--text);
}

.cta-section .btn--wa {
  background-color: #25D366;
  color: #fff;
}

.cta-section .btn--wa:hover {
  background-color: #1da851;
  color: #fff;
}


/* ------------------------------------------------------------
   19. ARTICLE COMPONENTS
   ------------------------------------------------------------ */
.article__meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.article__meta span + span::before {
  content: '\00b7';
  margin-right: 0.5rem;
}

.article__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.article__hero {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.tag {
  background-color: var(--surface);
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.tag:hover {
  background-color: var(--accent);
  color: var(--accent-text);
  text-decoration: none;
}


/* ------------------------------------------------------------
   20. PAGINATION
   ------------------------------------------------------------ */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.pagination__link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.pagination__link:hover {
  text-decoration: underline;
}

.pagination__link--disabled {
  color: var(--text-muted);
  pointer-events: none;
}

.pagination__info {
  color: var(--text-muted);
  font-size: 0.875rem;
}


/* ------------------------------------------------------------
   21. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col__title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

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

.footer-col__list li {
  margin-bottom: 0.5rem;
}

.footer-col__list a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col__list a:hover {
  color: var(--accent);
}

.footer-col__list--contact li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-col__list--contact svg {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-col__social a {
  color: var(--text-muted);
  transition: color var(--transition);
  display: inline-flex;
}

.footer-col__social a:hover {
  color: var(--accent);
}

.footer-col__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-map {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 300px;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--accent);
}

.footer-bottom__company {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   22. SPECS TABLE (product pages)
   ------------------------------------------------------------ */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.specs-table th {
  background-color: var(--surface);
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  color: var(--text);
}

.specs-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.specs-table tr:nth-child(even) td {
  background-color: var(--bg-elevated);
}

.specs-table tr:hover td {
  background-color: var(--surface-hover);
}


/* ------------------------------------------------------------
   23. SECTIONS
   ------------------------------------------------------------ */
.section {
  padding: 4rem 0;
}

.section--light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light h5,
.section--light h6 {
  color: var(--text-dark);
}

.section--light p,
.section--light li {
  color: var(--text-dark-secondary);
}

.section--light a {
  color: var(--accent-hover);
}

.section--dark {
  background-color: var(--bg-elevated);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.section--light .section__subtitle {
  color: var(--text-dark-secondary);
}

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

  .section__title {
    font-size: 1.625rem;
  }
}


/* ------------------------------------------------------------
   24. BREADCRUMBS
   ------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 1rem 0;
  list-style: none;
  margin: 0;
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.25rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb li:last-child {
  color: var(--text);
}


/* ------------------------------------------------------------
   25. CONTACT FORM
   ------------------------------------------------------------ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   26. ALERTS / NOTICES
   ------------------------------------------------------------ */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  border: 1px solid;
}

.alert--success {
  background-color: rgba(107, 143, 113, 0.1);
  border-color: var(--success);
  color: var(--success);
}

.alert--error {
  background-color: rgba(196, 122, 90, 0.1);
  border-color: var(--error);
  color: var(--error);
}

.alert--info {
  background-color: rgba(91, 143, 185, 0.1);
  border-color: var(--info);
  color: var(--info);
}


/* ------------------------------------------------------------
   27. BADGE
   ------------------------------------------------------------ */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  background-color: var(--accent);
  color: var(--accent-text);
}

.badge--outline {
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}


/* ------------------------------------------------------------
   28. SERVICE CARDS (larger feature cards)
   ------------------------------------------------------------ */
.service-card {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-card__link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.service-card__link:hover {
  text-decoration: underline;
}


/* ------------------------------------------------------------
   29. STATS ROW
   ------------------------------------------------------------ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 2rem 0;
}

.stat__value {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent);
  line-height: 1.2;
}

.stat__label {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}


/* ------------------------------------------------------------
   30. TIMELINE (about page, project history)
   ------------------------------------------------------------ */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background-color: var(--accent);
  border-radius: 50%;
  transform: translateX(-4px);
}

.timeline__year {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.timeline__content {
  color: var(--text-secondary);
  line-height: 1.5;
}


/* ------------------------------------------------------------
   31. PRODUCT GALLERY
   ------------------------------------------------------------ */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition);
}

.product-gallery__item:hover {
  border-color: var(--accent);
}

.product-gallery__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}


/* ------------------------------------------------------------
   32. TABS (product pages)
   ------------------------------------------------------------ */
.tabs {
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.tab {
  padding: 0.75rem 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

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

.tab--active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-panel {
  display: none;
}

.tab-panel--active {
  display: block;
}


/* ------------------------------------------------------------
   33. MAP EMBED
   ------------------------------------------------------------ */
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  margin-bottom: 2rem;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* ------------------------------------------------------------
   34. TESTIMONIAL
   ------------------------------------------------------------ */
.testimonial {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial__text {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
}

.testimonial__role {
  color: var(--text-muted);
  font-size: 0.8125rem;
}


/* ------------------------------------------------------------
   35. SEARCH RESULTS
   ------------------------------------------------------------ */
.search-results {
  margin-top: 1rem;
}

.search-result {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.search-result__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.search-result__title a {
  color: var(--accent);
  text-decoration: none;
}

.search-result__title a:hover {
  text-decoration: underline;
}

.search-result__url {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
}

.search-result__snippet {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
}


/* ------------------------------------------------------------
   36. ARTICLE LISTING (blog index)
   ------------------------------------------------------------ */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-preview {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.article-preview__image {
  flex-shrink: 0;
  width: 240px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.article-preview__body {
  flex: 1;
  min-width: 0;
}

.article-preview__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.article-preview__title a {
  color: var(--text);
  text-decoration: none;
}

.article-preview__title a:hover {
  color: var(--accent);
}

.article-preview__excerpt {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.article-preview__meta {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

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

  .article-preview__image {
    width: 100%;
    height: 200px;
  }
}


/* ------------------------------------------------------------
   37. PARTNER / CERTIFICATION GRID
   ------------------------------------------------------------ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.partner-card {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition);
}

.partner-card:hover {
  border-color: var(--accent);
}

.partner-card img {
  max-height: 60px;
  margin: 0 auto 1rem;
}

.partner-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.partner-card__desc {
  color: var(--text-muted);
  font-size: 0.8125rem;
}


/* ------------------------------------------------------------
   38. SERVICE AREAS (location grid)
   ------------------------------------------------------------ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.area-item {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: border-color var(--transition), color var(--transition);
}

.area-item:hover {
  border-color: var(--accent);
  color: var(--text);
}


/* ------------------------------------------------------------
   39. RENTAL TABLE
   ------------------------------------------------------------ */
.rental-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.rental-table th {
  background-color: var(--surface);
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  color: var(--text);
  white-space: nowrap;
}

.rental-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.rental-table tr:nth-child(even) td {
  background-color: var(--bg-elevated);
}

.rental-table tr:hover td {
  background-color: var(--surface-hover);
}

.rental-table td img {
  width: 120px;
  height: auto;
  border-radius: var(--radius-sm);
  vertical-align: middle;
}

.rental-table .price {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .rental-table td img {
    width: 80px;
  }
}


/* ------------------------------------------------------------
   40. CAREERS
   ------------------------------------------------------------ */
.job-listing {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}

.job-listing:hover {
  border-color: var(--accent);
}

.job-listing__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.job-listing__meta {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.job-listing__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
}


/* ------------------------------------------------------------
   41. HONEYPOT (hidden links for bots)
   ------------------------------------------------------------ */
.hp-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: auto;
}


/* ------------------------------------------------------------
   42. UTILITIES
   ------------------------------------------------------------ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-accent { color: var(--accent); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.w-full { width: 100%; }


/* ------------------------------------------------------------
   43. PRINT STYLES
   ------------------------------------------------------------ */
@media print {
  .topbar,
  .midbar__banner,
  .navbar,
  .wa-sticky,
  .cta-section,
  .site-footer,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 12pt;
  }

  a {
    color: #111;
    text-decoration: underline;
  }

  .wrap {
    max-width: 100%;
    padding: 0;
  }
}


/* ------------------------------------------------------------
   44. RESPONSIVE TYPOGRAPHY
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.125rem; }

  .prose h2 { font-size: 1.25rem; }
  .prose h3 { font-size: 1.125rem; }
}


/* ------------------------------------------------------------
   45. ANIMATIONS
   ------------------------------------------------------------ */
/* Pillar cards (two-column hero-like cards) */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
@media (max-width: 768px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
.pillar-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}
.pillar-card__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
@media (max-width: 480px) {
  .pillar-card__img { height: 200px; }
}
.pillar-card__body {
  padding: var(--space-xl);
}
.pillar-card__label {
  display: inline-block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.pillar-card__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}
.pillar-card__body p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

/* Gallery grid (masonry-like photo grid) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), opacity var(--transition);
  cursor: pointer;
}
@media (max-width: 480px) {
  .gallery-grid img { height: 200px; }
}
.gallery-grid img:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* Feature with image (instead of icon) */
.feature__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

/* Card as link (clickable entire card) */
a.card, a.card:hover { text-decoration: none; color: inherit; }
.card--hover { transition: transform var(--transition), border-color var(--transition); }
.card--hover:hover { transform: translateY(-4px); border-color: var(--accent); }

/* Card image as img tag (not background) */
.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Product hero (full-width with overlay text) */
.product-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
@media (max-width: 480px) {
  .product-hero { min-height: 300px; }
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.product-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--space-2xl) var(--space-lg);
}
.product-hero__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}
@media (max-width: 768px) {
  .product-hero__title { font-size: var(--text-3xl); }
}
@media (max-width: 480px) {
  .product-hero__title { font-size: var(--text-2xl); }
}
.product-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

/* Inline image within prose (float or full-width) */
.prose-img-right {
  float: right;
  width: 45%;
  max-height: 350px;
  object-fit: cover;
  margin: 0 0 var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
}
@media (max-width: 768px) {
  .prose-img-right {
    float: none;
    width: 100%;
    margin: var(--space-md) 0;
  }
}
.prose-img-full {
  width: 100%;
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  text-align: center;
  padding: var(--space-2xl) 0;
}
.stat__number {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.stat__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
