:root {
  --bg: #f4f0ea;
  --surface: #ffffff;
  --surface-2: #fbf8f4;
  --surface-3: #f0e7da;
  --line: rgba(53, 38, 27, 0.12);
  --line-strong: rgba(53, 38, 27, 0.2);
  --text: #2d2118;
  --muted: #746253;
  --heading: #20160f;
  --accent: #7b5434;
  --accent-dark: #5b3d26;
  --accent-soft: #e6d6c4;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-lg: 0 24px 60px rgba(61, 40, 22, 0.12);
  --shadow-md: 0 14px 36px rgba(61, 40, 22, 0.08);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.65), transparent 30%),
    linear-gradient(180deg, #f6f1eb 0%, #f3eee7 60%, #efe7de 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  margin: 0;
  color: var(--heading);
  letter-spacing: -0.04em;
  line-height: 1.06;
}
p { margin: 0; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.site-main { min-height: 68vh; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 242, 235, 0.82);
  border-bottom: 1px solid rgba(61, 40, 22, 0.08);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  min-height: 88px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #8d6440, #5b3d26);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
}
.site-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  gap: 2px;
}
.site-title {
  font-size: 1.08rem;
  font-weight: 800;
}
.site-tagline {
  color: var(--muted);
  font-size: 0.9rem;
}
.main-nav {
  justify-self: center;
}
.menu-list,
.mobile-menu-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
}
.menu-list a,
.mobile-menu-list a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text);
}
.menu-list a:hover,
.mobile-menu-list a:hover {
  color: var(--accent-dark);
}
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(61, 40, 22, 0.1);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.mobile-toggle,
.mobile-menu { display: none; }
.desktop-only { display: inline-flex; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, #7c5536, #5b3d26);
  color: #fff;
  box-shadow: 0 14px 28px rgba(91, 61, 38, 0.18);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #865d3b, #51361f);
}
.btn-secondary {
  background: rgba(255,255,255,0.82);
  border-color: rgba(61, 40, 22, 0.12);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: rgba(61, 40, 22, 0.2);
}
.mobile-full { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(61, 40, 22, 0.08);
  color: var(--accent-dark);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}
.text-link {
  color: var(--accent-dark);
  font-weight: 700;
}
.text-link:hover { text-decoration: underline; }

.hero-section {
  padding: 36px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 22px;
  align-items: stretch;
}
.glass-card,
.showcase-panel,
.category-card,
.room-card,
.advantage-card,
.product-card,
.documentation-card,
.testimonial-card,
.filter-bar,
.page-hero-inner,
.content-card,
.generic-page-card,
.single-gallery-card,
.single-content-card,
.cta-band-inner,
.empty-state {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(61, 40, 22, 0.08);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
}
.hero-copy {
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  max-width: 700px;
}
.hero-copy p {
  max-width: 620px;
  font-size: 1.06rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.hero-stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(61, 40, 22, 0.08);
}
.hero-stats strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}
.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}
.showcase-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.showcase-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(252, 247, 241, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(61, 40, 22, 0.1);
}
.showcase-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}
.showcase-badge strong {
  font-size: 1.02rem;
  line-height: 1.35;
}

.home-section,
.archive-section,
.generic-page-section,
.single-product-section {
  padding: 18px 0 52px;
}
.soft-section {
  padding-top: 36px;
  padding-bottom: 56px;
  background: linear-gradient(180deg, rgba(246, 238, 228, 0.45), rgba(246, 238, 228, 0));
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  max-width: 720px;
}
.section-heading p {
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.category-card {
  padding: 22px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.category-card:hover,
.room-card:hover,
.documentation-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.category-kicker {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}
.category-card strong {
  font-size: 1.24rem;
}
.category-card span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.room-card {
  padding: 24px 18px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(240, 231, 218, 0.7));
}
.room-card strong { font-size: 1.18rem; }
.room-card span { color: var(--muted); font-size: 0.92rem; }

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.advantage-card,
.testimonial-card,
.content-card {
  padding: 24px;
}
.advantage-card h3,
.testimonial-card strong,
.content-card h2 {
  font-size: 1.32rem;
  margin-bottom: 10px;
}
.advantage-card p,
.testimonial-card p,
.content-card p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-card{
  display:flex;
  flex-direction:column;
  height:100%;
  border-radius:28px;
  overflow:hidden;
  background:#fff;
}

.product-card-image{
  width:100%;
  aspect-ratio: 4 / 3;
  background:#f6f3ee;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.product-card-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}

.product-card-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:18px 16px 16px;
}

.product-card-top{
  display:flex;
  flex-direction:column;
}

.product-card-title{
  margin:12px 0 8px;
  font-size:20px;
  line-height:1.15;
}

.product-card-title a{
  text-decoration:none;
  color:inherit;
}

.product-card-subtitle{
  margin:0;
  color:#6f5a4c;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.product-card-actions{
  margin-top:auto;
  padding-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.product-card.is-home-compact .product-card-title{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:2.3em;
}

.product-card.is-home-compact .product-card-subtitle{
  -webkit-line-clamp:2;
  min-height:2.8em;
}

.product-card.is-home-compact .product-card-specs,
.product-card.is-home-compact .feature-list{
  display:none;
}

.filter-bar {
  padding: 18px;
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr auto auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}
.field-group {
  display: grid;
  gap: 8px;
}
.field-group label {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}
.field-group input,
.field-group select {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(61, 40, 22, 0.12);
  background: #fffdfb;
  padding: 0 16px;
  color: var(--text);
  outline: none;
}
.active-filter-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.active-filter-note span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(61, 40, 22, 0.08);
  color: var(--muted);
  font-weight: 600;
}
.page-hero {
  padding: 34px 0 16px;
}
.page-hero-inner {
  padding: 30px 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.page-hero-inner h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin: 14px 0 10px;
}
.page-hero-inner p {
  max-width: 760px;
  color: var(--muted);
}
.simple-page-hero .page-hero-inner {
  justify-content: flex-start;
}

.single-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
}
.single-gallery-card,
.single-content-card {
  padding: 22px;
}
.gallery-main{
  width:100%;
  aspect-ratio: 1 / 1;
  background:#f6f3ee;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:28px;
}

.gallery-main img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.gallery-thumb {
  overflow: hidden;
  border-radius: 18px;
  background: #efe6db;
  aspect-ratio: 1 / 0.9;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.soft-tag,
.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f8f2ec;
  color: var(--accent-dark);
  border: 1px solid rgba(61, 40, 22, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}
.meta-chip.alt {
  background: #efe6da;
}
.single-content-card h1 {
  margin-top: 16px;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
}
.single-subtitle {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.08rem;
}
.term-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.spec-card {
  padding: 18px;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid rgba(61, 40, 22, 0.08);
  display: grid;
  gap: 6px;
}
.spec-card span {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.spec-card strong {
  font-size: 1rem;
  line-height: 1.45;
}
.overview-box,
.detail-box,
.single-wa-box {
  margin-top: 18px;
  padding: 20px;
  border-radius: 24px;
  background: var(--surface-2);
  border: 1px solid rgba(61, 40, 22, 0.08);
}
.overview-box h3,
.detail-box h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.overview-lead {
  margin-bottom: 10px;
  color: var(--muted);
}
.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.single-wa-box p {
  color: var(--muted);
  margin-bottom: 14px;
}

.documentation-preview-grid,
.documentation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.documentation-card {
  overflow: hidden;
}
.documentation-image {
  aspect-ratio: 1 / 0.86;
  background: #e9dfd4;
}
.documentation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.documentation-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}
.documentation-body h3 {
  font-size: 1.22rem;
}
.documentation-body p {
  color: var(--muted);
}
.documentation-stack {
  display: grid;
  gap: 30px;
}
.masonry-grid .documentation-card:nth-child(2n) .documentation-image {
  aspect-ratio: 1 / 1.08;
}
.masonry-grid .documentation-card:nth-child(3n) .documentation-image {
  aspect-ratio: 1 / 0.72;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.testimonial-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  padding-bottom: 60px;
}
.cta-band-inner {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(120deg, rgba(239, 228, 214, 0.88), rgba(255, 251, 247, 0.9));
}
.cta-band-inner h2 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}
.cta-band-inner p {
  margin-top: 10px;
  max-width: 760px;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.entry-content p + p {
  margin-top: 16px;
}
.post-grid {
  display: grid;
  gap: 16px;
}

.site-footer {
  padding: 0 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid rgba(61, 40, 22, 0.12);
}
.footer-mark {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-brand h3 {
  margin: 14px 0 8px;
  font-size: 1.55rem;
}
.footer-brand p,
.footer-col p {
  color: var(--muted);
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-col h4 {
  font-size: 1rem;
}
.footer-col a:hover { text-decoration: underline; }
.footer-wa {
  margin-top: 6px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(61, 40, 22, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.idea-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.idea-pagination .page-numbers {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(61, 40, 22, 0.12);
  font-weight: 700;
}
.idea-pagination .current {
  background: var(--accent-dark);
  color: #fff;
}

.empty-state,
.generic-page-card {
  padding: 26px;
}
.empty-state h3 {
  margin-bottom: 10px;
}
.empty-state p {
  color: var(--muted);
}

@media (max-width: 1140px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .main-nav { display: none; }
  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(61, 40, 22, 0.12);
    border-radius: 16px;
    background: rgba(255,255,255,0.76);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .mobile-toggle span {
    width: 18px;
    height: 2px;
    background: var(--heading);
    display: block;
    border-radius: 99px;
  }
  .mobile-menu {
    display: none;
    padding: 0 16px 18px;
  }
  .mobile-menu.is-open {
    display: grid;
    gap: 12px;
  }
  .mobile-menu-list {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(61, 40, 22, 0.08);
  }
  .desktop-only { display: none; }
  .hero-grid,
  .single-product-grid,
  .about-grid,
  .footer-grid,
  .category-grid,
  .room-grid,
  .advantage-grid,
  .testimonial-grid,
  .documentation-preview-grid,
  .documentation-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filter-bar,
  .detail-columns,
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-band-inner,
  .page-hero-inner,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .site-header { position: sticky; }
  .header-inner {
    min-height: 76px;
    gap: 10px;
  }
  .site-tagline,
  .location-badge { display: none; }
  .hero-grid,
  .category-grid,
  .room-grid,
  .advantage-grid,
  .testimonial-grid,
  .documentation-preview-grid,
  .documentation-grid,
  .product-grid,
  .about-grid,
  .footer-grid,
  .detail-columns,
  .filter-bar,
  .hero-stats,
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .single-gallery-card,
  .single-content-card,
  .page-hero-inner,
  .content-card,
  .advantage-card,
  .testimonial-card,
  .documentation-body,
  .product-card-body,
  .cta-band-inner {
    padding: 20px;
  }
  .showcase-panel {
    min-height: 380px;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-card h3 {
    font-size: 1.28rem;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

.room-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

.room-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

.room-card{
  position:relative;
  min-height:180px;
  border-radius:28px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  padding:24px;
  text-decoration:none;
  background:#f5f1eb;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.room-card-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:1;
}

.room-card-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(
    180deg,
    rgba(20,12,8,.08) 0%,
    rgba(20,12,8,.18) 45%,
    rgba(20,12,8,.55) 100%
  );
}

.room-card strong{
  position:relative;
  z-index:3;
  display:inline-flex;
  align-items:center;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(28,18,12,.38);
  color:#ffffff !important;
  font-size:24px;
  font-weight:700;
  line-height:1.1;
  text-shadow:0 2px 10px rgba(0,0,0,.35);
  backdrop-filter:blur(4px);
}

.room-card.has-image strong{
  color:#2a1a10;
}

.advantage-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.advantage-card{
  position:relative;
  padding:28px 28px 30px;
  border-radius:28px;
  background:#fff;
  border:1px solid rgba(60,35,15,.08);
  box-shadow:0 14px 40px rgba(41,28,18,.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.advantage-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(41,28,18,.10);
  border-color:rgba(120,78,42,.18);
}

.advantage-card.is-featured{
  background:linear-gradient(180deg,#8a5a33 0%, #6e4728 100%);
  color:#fff;
}

.advantage-number{
  position:absolute;
  top:22px;
  right:24px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  opacity:.45;
}

.advantage-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  background:#f4ede5;
  color:#7b5230;
}

.advantage-card.is-featured .advantage-icon{
  background:rgba(255,255,255,.14);
  color:#fff;
}

.advantage-icon svg{
  width:26px;
  height:26px;
}

.advantage-card h3{
  margin:0 0 12px;
  font-size:20px;
  line-height:1.2;
}

.advantage-card p{
  margin:0;
  font-size:17px;
  line-height:1.7;
  color:#6a5343;
}

.advantage-card.is-featured p{
  color:rgba(255,255,255,.88);
}

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

.about-ibn-page{
  padding:36px 0 80px;
}

.about-ibn-hero{
  background:#fff;
  border:1px solid rgba(90,64,40,.08);
  border-radius:36px;
  padding:40px;
  box-shadow:0 18px 40px rgba(46,31,20,.05);
  margin-bottom:32px;
}

.about-ibn-label{
  display:inline-flex;
  align-items:center;
  padding:10px 18px;
  border-radius:999px;
  background:#f4ede4;
  border:1px solid rgba(110,76,44,.10);
  color:#7a4f2d;
  font-size:13px;
  line-height:1;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.about-ibn-hero h1,
.about-ibn-section-head h2{
  margin:18px 0 12px;
  font-size:clamp(34px, 5vw, 60px);
  line-height:1;
  color:#24170f;
}

.about-ibn-hero p{
  max-width:760px;
  margin:0;
  font-size:18px;
  line-height:1.7;
  color:#6d5748;
}

.about-ibn-section{
  background:#fff;
  border:1px solid rgba(90,64,40,.08);
  border-radius:36px;
  padding:38px;
  box-shadow:0 18px 40px rgba(46,31,20,.05);
  margin-bottom:32px;
}

.about-ibn-section-head{
  margin-bottom:28px;
}

.about-ibn-team-structure{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.about-ibn-team-level{
  width:100%;
  display:flex;
  justify-content:center;
}

.level-manager,
.level-captain{
  text-align:center;
}

.level-main-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
  width:100%;
  max-width:1000px;
  justify-items:center;
}

.level-support-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
  width:100%;
  max-width:700px;
  justify-items:center;
}

.about-ibn-team-connector.vertical{
  width:2px;
  height:34px;
  background:linear-gradient(180deg, #2e6a4d 0%, rgba(46,106,77,.18) 100%);
  border-radius:999px;
}

.about-ibn-team-connector.vertical.small-gap{
  height:22px;
}

.about-ibn-person{
  text-align:center;
  padding:10px 16px;
  max-width:260px;
}

.about-ibn-person h3{
  margin:14px 0 6px;
  font-size:22px;
  line-height:1.12;
  color:#204f37;
}

.about-ibn-person p{
  margin:0;
  font-size:16px;
  line-height:1.45;
  color:#6e5b4b;
  font-style:italic;
}

.about-ibn-avatar{
  margin:0 auto;
  overflow:hidden;
  background:linear-gradient(180deg,#f6f1ea 0%, #e7ddd1 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 28px rgba(38,24,14,.08);
}

.about-ibn-avatar span{
  font-size:38px;
  font-weight:800;
  color:#7a4f2d;
}

.about-ibn-avatar.is-portrait{
  width:190px;
  height:250px;
  border-radius:100px;
}

.about-ibn-avatar.is-circle{
  width:150px;
  height:150px;
  border-radius:50%;
}

.about-ibn-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-ibn-team-landscape{
  width:100%;
  margin-top:20px;
  border-radius:28px;
  overflow:hidden;
  background:#f7f2ea;
  border:1px solid rgba(90,64,40,.08);
  box-shadow:0 14px 30px rgba(38,24,14,.05);
  aspect-ratio:16 / 9;
}

.about-ibn-team-landscape img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-ibn-location-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
}

.about-ibn-map-card,
.about-ibn-location-card{
  background:#f9f6f1;
  border:1px solid rgba(90,64,40,.08);
  border-radius:28px;
  overflow:hidden;
}

.about-ibn-map-card img{
  width:100%;
  display:block;
}

.about-ibn-location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.about-ibn-location-photo{
  min-height:190px;
  background:#eee7dd;
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-ibn-location-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-ibn-location-copy{
  padding:20px;
}

.about-ibn-location-copy h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.15;
  color:#24170f;
}

.about-ibn-location-copy p{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:#655142;
}

.about-ibn-placeholder{
  width:100%;
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:26px;
  color:#7a6657;
  background:#efe8de;
  font-size:15px;
  line-height:1.7;
}

.about-ibn-placeholder.small{
  min-height:190px;
  font-size:14px;
}

.about-ibn-placeholder.landscape{
  min-height:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px;
  background:#efe8de;
  color:#7a6657;
  font-size:15px;
  line-height:1.7;
}

@media (max-width: 1100px){
  .about-ibn-location-layout{
    grid-template-columns:1fr;
  }

  .about-ibn-location-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 900px){
  .level-main-grid{
    grid-template-columns:1fr;
    max-width:320px;
  }

  .level-support-grid{
    grid-template-columns:1fr;
    max-width:320px;
  }

  .about-ibn-location-grid{
    grid-template-columns:1fr;
  }

  .about-ibn-hero,
  .about-ibn-section{
    padding:24px;
    border-radius:24px;
  }

  .about-ibn-avatar.is-portrait{
    width:160px;
    height:220px;
  }

  .about-ibn-avatar.is-circle{
    width:130px;
    height:130px;
  }

  .about-ibn-person h3{
    font-size:20px;
  }

  .about-ibn-team-landscape{
    border-radius:22px;
  }
}

/* ===== HOME LANDING PAGE 2026 ===== */

.ibn-home-2026{
  padding:36px 0;
}

.ibn-section-soft{
  background:linear-gradient(180deg,#f7f3ed 0%, #f2ede6 100%);
}

.ibn-section-dark{
  background:linear-gradient(180deg,#1f5b3f 0%, #174632 100%);
}

.ibn-chip{
  display:inline-flex;
  align-items:center;
  padding:10px 18px;
  border-radius:999px;
  background:#f2ebe2;
  border:1px solid rgba(121,80,46,.12);
  color:#7d4f2e;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.dark-chip{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.14);
  color:#ffffff;
}

.ibn-section-head{
  margin-bottom:24px;
}

.ibn-section-head.center{
  text-align:center;
}

.ibn-section-head h2{
  margin:16px 0 12px;
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.02;
  color:#23160f;
}

.ibn-section-head p{
  margin:0;
  max-width:860px;
  font-size:18px;
  line-height:1.75;
  color:#6b584b;
}

.ibn-section-head.light h2,
.ibn-section-head.light p{
  color:#ffffff;
}

.ibn-hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:center;
}

.ibn-hero-copy{
  background:#fff;
  border:1px solid rgba(90,64,40,.08);
  border-radius:36px;
  padding:42px;
  box-shadow:0 20px 40px rgba(46,31,20,.05);
}

.ibn-hero-copy h1{
  margin:18px 0 10px;
  font-size:clamp(44px, 6vw, 84px);
  line-height:.95;
  color:#24170f;
}

.ibn-hero-tagline{
  margin:0 0 16px;
  font-size:30px;
  line-height:1.1;
  color:#1d6a47;
  font-weight:800;
}

.ibn-hero-text{
  margin:0;
  font-size:18px;
  line-height:1.8;
  color:#6b584b;
}

.ibn-hero-visual{
  overflow:hidden;
  border-radius:36px;
  min-height:100%;
  box-shadow:0 20px 40px rgba(46,31,20,.06);
}

.ibn-hero-visual img{
  width:100%;
  height:100%;
  min-height:580px;
  object-fit:cover;
  display:block;
}

.ibn-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.ibn-lines{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.ibn-lines span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#f6f2ec;
  border:1px solid rgba(90,64,40,.08);
  font-size:14px;
  color:#503b2e;
  font-weight:700;
}

.ibn-stats-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:18px;
}

.ibn-stat-card{
  background:#fff;
  border:1px solid rgba(90,64,40,.08);
  border-radius:28px;
  padding:26px 22px;
  box-shadow:0 16px 34px rgba(46,31,20,.04);
  text-align:center;
}

.ibn-stat-card strong{
  display:block;
  font-size:34px;
  line-height:1;
  color:#1d6a47;
  margin-bottom:10px;
}

.ibn-stat-card span{
  display:block;
  font-size:15px;
  line-height:1.6;
  color:#675446;
}

.ibn-business-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
}

.ibn-business-card{
  position:relative;
  background:#fff;
  border:1px solid rgba(90,64,40,.08);
  border-radius:32px;
  padding:28px;
  box-shadow:0 16px 34px rgba(46,31,20,.04);
}

.ibn-card-number{
  position:absolute;
  top:24px;
  right:26px;
  font-size:13px;
  font-weight:800;
  color:rgba(125,79,46,.5);
  letter-spacing:.12em;
}

.ibn-business-card h3{
  margin:0 0 14px;
  font-size:30px;
  line-height:1.08;
  color:#22150f;
  max-width:80%;
}

.ibn-business-card p{
  margin:0 0 18px;
  font-size:17px;
  line-height:1.75;
  color:#675446;
}

.ibn-mini-block{
  padding-top:16px;
  margin-top:16px;
  border-top:1px solid rgba(90,64,40,.08);
}

.ibn-mini-block strong{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#7d4f2e;
}

.ibn-mini-block span{
  display:block;
  font-size:16px;
  line-height:1.7;
  color:#574436;
}

.ibn-profile-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  margin-bottom:24px;
}

.ibn-profile-card,
.ibn-mission-card,
.ibn-highlight-bar,
.ibn-bottom-card,
.ibn-trust-card{
  background:#fff;
  border:1px solid rgba(90,64,40,.08);
  border-radius:32px;
  padding:30px;
  box-shadow:0 16px 34px rgba(46,31,20,.04);
}

.ibn-profile-card h2{
  margin:16px 0 12px;
  font-size:40px;
  line-height:1.02;
  color:#23160f;
}

.ibn-large-text{
  margin:0;
  font-size:20px;
  line-height:1.85;
  color:#584537;
}

.ibn-values-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:16px;
}

.ibn-value-card{
  background:#f8f4ee;
  border:1px solid rgba(90,64,40,.06);
  border-radius:24px;
  padding:18px;
}

.ibn-value-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.1;
  color:#1d6a47;
}

.ibn-value-card p{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:#6b584b;
}

.ibn-mission-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 20px;
  margin-top:16px;
}

.ibn-mission-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.ibn-mission-item span{
  width:10px;
  height:10px;
  margin-top:10px;
  border-radius:50%;
  background:#1d6a47;
  flex-shrink:0;
}

.ibn-mission-item p{
  margin:0;
  font-size:17px;
  line-height:1.75;
  color:#5e4a3c;
}

.ibn-timeline{
  display:grid;
  grid-template-columns:repeat(7, minmax(0,1fr));
  gap:16px;
}

.ibn-timeline-item{
  background:#fff;
  border:1px solid rgba(90,64,40,.08);
  border-radius:28px;
  padding:20px;
  box-shadow:0 16px 34px rgba(46,31,20,.04);
}

.ibn-timeline-item strong{
  display:block;
  margin-bottom:10px;
  font-size:30px;
  line-height:1;
  color:#1d6a47;
}

.ibn-timeline-item h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.15;
  color:#23160f;
}

.ibn-timeline-item p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#665345;
}

.ibn-highlight-bar{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:22px;
  background:linear-gradient(135deg,#1d6a47 0%, #7d4f2e 100%);
  color:#fff;
}

.ibn-highlight-bar small{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  opacity:.85;
}

.ibn-highlight-bar strong{
  display:block;
  font-size:34px;
  line-height:1.05;
}

.ibn-highlight-bar span{
  display:block;
  font-size:18px;
  line-height:1.7;
}

.ibn-portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
}

.ibn-portfolio-card{
  background:#fff;
  border:1px solid rgba(90,64,40,.08);
  border-radius:28px;
  padding:24px;
  box-shadow:0 16px 34px rgba(46,31,20,.04);
}

.ibn-portfolio-card h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.15;
  color:#23160f;
}

.ibn-portfolio-card p{
  margin:0;
  font-size:16px;
  line-height:1.75;
  color:#625041;
}

.ibn-plan-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.ibn-plan-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  padding:22px;
  backdrop-filter:blur(6px);
}

.ibn-plan-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.12;
  color:#ffffff;
}

.ibn-plan-card p{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:rgba(255,255,255,.85);
}

.ibn-bottom-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.ibn-bottom-card h2,
.ibn-trust-card h2{
  margin:16px 0 16px;
  font-size:40px;
  line-height:1.02;
  color:#23160f;
}

.ibn-team-list,
.ibn-office-list{
  display:grid;
  gap:14px;
}

.ibn-team-item,
.ibn-office-item,
.ibn-contact-item{
  padding:16px 0;
  border-top:1px solid rgba(90,64,40,.08);
}

.ibn-team-item:first-child,
.ibn-office-item:first-child,
.ibn-contact-item:first-child{
  border-top:0;
  padding-top:0;
}

.ibn-team-item strong,
.ibn-office-item strong,
.ibn-contact-item strong{
  display:block;
  margin-bottom:6px;
  font-size:18px;
  color:#1d6a47;
}

.ibn-team-item span,
.ibn-office-item span,
.ibn-contact-item span{
  display:block;
  font-size:16px;
  line-height:1.7;
  color:#625041;
}

.ibn-trust-section{
  padding-top:8px;
  padding-bottom:80px;
}

.ibn-trust-card{
  text-align:left;
}

.ibn-trust-card p{
  margin:0;
  max-width:900px;
  font-size:18px;
  line-height:1.75;
  color:#665345;
}

.ibn-contact-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
  margin:24px 0 8px;
}

@media (max-width: 1200px){
  .ibn-stats-grid,
  .ibn-plan-grid,
  .ibn-contact-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .ibn-timeline{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 1024px){
  .ibn-hero-grid,
  .ibn-profile-grid,
  .ibn-bottom-grid{
    grid-template-columns:1fr;
  }

  .ibn-business-grid,
  .ibn-portfolio-grid{
    grid-template-columns:1fr 1fr;
  }

  .ibn-plan-grid{
    grid-template-columns:1fr 1fr;
  }

  .ibn-hero-visual img{
    min-height:420px;
  }
}

@media (max-width: 768px){
  .ibn-home-2026{
    padding:24px 0;
  }

  .ibn-hero-copy,
  .ibn-profile-card,
  .ibn-mission-card,
  .ibn-highlight-bar,
  .ibn-bottom-card,
  .ibn-trust-card,
  .ibn-business-card,
  .ibn-portfolio-card,
  .ibn-timeline-item,
  .ibn-plan-card{
    padding:22px;
    border-radius:24px;
  }

  .ibn-section-head h2,
  .ibn-bottom-card h2,
  .ibn-trust-card h2,
  .ibn-profile-card h2{
    font-size:34px;
  }

  .ibn-hero-copy h1{
    font-size:48px;
  }

  .ibn-hero-tagline{
    font-size:24px;
  }

  .ibn-stats-grid,
  .ibn-business-grid,
  .ibn-values-grid,
  .ibn-mission-grid,
  .ibn-timeline,
  .ibn-portfolio-grid,
  .ibn-plan-grid,
  .ibn-contact-grid{
    grid-template-columns:1fr;
  }

  .ibn-highlight-bar{
    grid-template-columns:1fr;
  }

  .ibn-hero-visual{
    border-radius:24px;
  }

  .ibn-hero-visual img{
    min-height:300px;
  }
}

/* ===== IDEABORNEO 2026 COLOR OVERRIDE ===== */
:root{
  --bg: #f4efe6;
  --surface: #fffaf2;
  --surface-2: #f7f1e8;
  --surface-3: #efe4d0;
  --line: rgba(33, 89, 61, 0.12);
  --line-strong: rgba(33, 89, 61, 0.22);

  --text: #2d241b;
  --muted: #6b6257;
  --heading: #24170f;

  --accent: #c78a3a;
  --accent-dark: #1f5b3f;
  --accent-soft: #f0e1c6;

  --brand-green: #1f5b3f;
  --brand-green-2: #2a6a49;
  --brand-green-3: #184631;
  --brand-gold: #c78a3a;
  --brand-gold-dark: #9e6727;
  --brand-cream: #f7f2e8;
  --brand-ink: #2d2118;

  --shadow-lg: 0 24px 60px rgba(26, 53, 41, 0.12);
  --shadow-md: 0 14px 36px rgba(26, 53, 41, 0.08);
}

/* background utama */
body{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.65), transparent 30%),
    linear-gradient(180deg, #f7f2e8 0%, #f3ede2 58%, #eee4d5 100%);
  color: var(--text);
}

/* header */
.site-header{
  background: rgba(248, 243, 234, 0.88);
  border-bottom: 1px solid rgba(31, 91, 63, 0.10);
}

.site-title{
  color: var(--brand-ink);
}

.site-tagline{
  color: #7a6c5c;
}

.menu-list a:hover,
.mobile-menu-list a:hover{
  color: var(--brand-green);
}

/* tombol */
.btn-primary{
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-3) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 91, 63, 0.20);
}

.btn-primary:hover{
  background: linear-gradient(135deg, #266d4b 0%, #143d2b 100%);
}

.btn-secondary{
  background: rgba(255,255,255,0.88);
  border-color: rgba(199, 138, 58, 0.24);
  color: var(--brand-ink);
}

.btn-secondary:hover{
  border-color: rgba(199, 138, 58, 0.42);
}

/* badge / chip */
.eyebrow,
.ibn-chip,
.about-ibn-label,
.footer-mark,
.soft-tag,
.meta-chip{
  background: #f3e7d2;
  border-color: rgba(199, 138, 58, 0.22);
  color: var(--brand-gold-dark);
}

.meta-chip.alt{
  background: #e9f1ec;
  border-color: rgba(31, 91, 63, 0.16);
  color: var(--brand-green);
}

.dark-chip{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

/* link kecil */
.text-link{
  color: var(--brand-green);
}

/* card umum */
.glass-card,
.showcase-panel,
.category-card,
.room-card,
.advantage-card,
.product-card,
.documentation-card,
.testimonial-card,
.filter-bar,
.page-hero-inner,
.content-card,
.generic-page-card,
.single-gallery-card,
.single-content-card,
.cta-band-inner,
.empty-state,
.ibn-hero-copy,
.ibn-profile-card,
.ibn-mission-card,
.ibn-highlight-bar,
.ibn-bottom-card,
.ibn-trust-card,
.ibn-business-card,
.ibn-portfolio-card,
.ibn-timeline-item,
.about-ibn-hero,
.about-ibn-section{
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(31, 91, 63, 0.08);
  box-shadow: 0 18px 36px rgba(31, 91, 63, 0.05);
}

/* hero landing page */
.ibn-hero-copy h1{
  color: var(--brand-green);
}

.ibn-hero-tagline{
  color: var(--brand-gold-dark);
}

.ibn-hero-text{
  color: #65594c;
}

.ibn-lines span{
  background: #f7f1e7;
  border-color: rgba(31, 91, 63, 0.10);
  color: #4d4032;
}

/* heading section */
.ibn-section-head h2,
.about-ibn-hero h1,
.about-ibn-section-head h2,
.ibn-bottom-card h2,
.ibn-trust-card h2,
.ibn-profile-card h2{
  color: var(--brand-green);
}

.ibn-section-head p,
.about-ibn-hero p,
.ibn-large-text,
.ibn-trust-card p{
  color: #685c4f;
}

/* stats */
.ibn-stat-card{
  background: linear-gradient(180deg, #fffaf2 0%, #f6efe5 100%);
  border: 1px solid rgba(31, 91, 63, 0.08);
}

.ibn-stat-card strong{
  color: var(--brand-green);
}

.ibn-stat-card span{
  color: #6b5d4f;
}

/* business section */
.ibn-business-card h3{
  color: var(--brand-green);
}

.ibn-card-number{
  color: rgba(199, 138, 58, 0.70);
}

.ibn-mini-block{
  border-top: 1px solid rgba(31, 91, 63, 0.08);
}

.ibn-mini-block strong{
  color: var(--brand-gold-dark);
}

/* values */
.ibn-value-card{
  background: linear-gradient(180deg, #fbf6ed 0%, #f4ecdf 100%);
  border-color: rgba(199, 138, 58, 0.16);
}

.ibn-value-card h3{
  color: var(--brand-green);
}

/* bullet mission */
.ibn-mission-item span{
  background: var(--brand-gold);
}

/* timeline */
.ibn-timeline-item{
  background: #fffaf2;
  border-color: rgba(31, 91, 63, 0.08);
}

.ibn-timeline-item strong{
  color: var(--brand-gold-dark);
}

.ibn-timeline-item h3{
  color: var(--brand-green);
}

/* highlight omzet */
.ibn-highlight-bar{
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-gold-dark) 100%);
  border: 0;
}

/* portfolio */
.ibn-portfolio-card{
  background: #fffaf2;
}

.ibn-portfolio-card h3{
  color: var(--brand-green);
}

/* dark section */
.ibn-section-dark{
  background: linear-gradient(180deg, #1f5b3f 0%, #153f2e 100%);
}

.ibn-plan-card{
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.14);
}

.ibn-plan-card h3{
  color: #f4d4a3;
}

/* bottom team / office */
.ibn-team-item strong,
.ibn-office-item strong,
.ibn-contact-item strong{
  color: var(--brand-green);
}

/* about page */
.about-ibn-person h3{
  color: var(--brand-green);
}

.about-ibn-avatar{
  background: linear-gradient(180deg,#f8f1e5 0%, #eadfcd 100%);
}

.about-ibn-avatar span{
  color: var(--brand-gold-dark);
}

.about-ibn-team-connector.vertical{
  background: linear-gradient(180deg, var(--brand-green) 0%, rgba(31,91,63,.18) 100%);
}

.about-ibn-team-landscape,
.about-ibn-map-card,
.about-ibn-location-card{
  background: #fbf6ee;
  border-color: rgba(31, 91, 63, 0.08);
}

.about-ibn-location-copy h3{
  color: var(--brand-green);
}

/* home lama & umum */
.section-heading h2,
.page-hero-inner h1,
.hero-copy h1,
.single-content-card h1{
  color: var(--brand-green);
}

.hero-copy p,
.page-hero-inner p,
.advantage-card p,
.testimonial-card p,
.documentation-body p,
.footer-brand p,
.footer-col p{
  color: #685c4f;
}

.hero-stats div,
.spec-card,
.overview-box,
.detail-box,
.single-wa-box{
  background: #fbf6ee;
  border-color: rgba(31, 91, 63, 0.08);
}

.spec-card span{
  color: var(--brand-gold-dark);
}

.category-card strong,
.documentation-body h3,
.advantage-card h3,
.testimonial-card strong{
  color: var(--brand-green);
}

.room-card strong{
  background: rgba(31, 91, 63, 0.55);
  color: #fff !important;
}

.advantage-card.is-featured{
  background: linear-gradient(180deg, var(--brand-green) 0%, #173e2d 100%);
  color: #fff;
}

.advantage-icon{
  background: #efe2c8;
  color: var(--brand-gold-dark);
}

.advantage-card.is-featured .advantage-icon{
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* product */
.product-card{
  background: #fffaf2;
}

.product-card-image,
.gallery-main{
  background: #f6efe3;
}

.product-card-subtitle,
.single-subtitle,
.overview-lead,
.showcase-badge span{
  color: #726557;
}

.showcase-badge{
  background: rgba(248, 243, 234, 0.92);
  border-color: rgba(31, 91, 63, 0.10);
}

.showcase-badge strong{
  color: var(--brand-green);
}

/* footer */
.site-footer{
  background: linear-gradient(180deg, transparent 0%, rgba(31,91,63,0.03) 100%);
}

.footer-grid{
  border-top: 1px solid rgba(31, 91, 63, 0.12);
}

.footer-bottom{
  border-top: 1px solid rgba(31, 91, 63, 0.08);
  color: #726557;
}

/* =========================================================
   HEADER - LOGO PANJANG & MENU BARU
========================================================= */
.header-logo-long {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-long img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 100%;
}

.brand-wrap {
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.menu-list,
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.menu-list a,
.mobile-menu-list a {
  text-decoration: none;
  font-weight: 700;
  color: #2b2118;
  transition: all .2s ease;
}

.menu-list a:hover,
.mobile-menu-list a:hover {
  color: #1f6a45;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.site-header .btn-primary {
  background: #1f6a45;
  border-color: #1f6a45;
}

.site-header .btn-primary:hover {
  background: #185336;
  border-color: #185336;
}

/* =========================================================
   HERO SECTION - GAMBAR 1
========================================================= */
.ibn-hero-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 18px;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.ibn-hero-title .title-line {
  display: block;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 950;
  letter-spacing: -0.04em;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.95),
    0 2px 0 rgba(255,255,255,0.80),
    0 3px 0 rgba(255,255,255,0.60),
    0 4px 0 rgba(0,0,0,0.04),
    0 10px 20px rgba(0,0,0,0.12);
}

.ibn-hero-title .title-line-1 {
  color: #1f6a45;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.95),
    0 2px 0 rgba(255,255,255,0.75),
    0 3px 0 rgba(10,50,32,0.08),
    0 8px 18px rgba(31,106,69,0.18);
}

.ibn-hero-title .title-line-2 {
  color: #c2812d;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.95),
    0 2px 0 rgba(255,255,255,0.75),
    0 3px 0 rgba(120,70,20,0.10),
    0 8px 18px rgba(194,129,45,0.20);
}

.ibn-hero-tagline {
  margin: 0 0 22px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
  font-weight: 800;
  color: #b77729;
}

.ibn-hero-text {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  color: #5f5549;
}

/* kalau blok lama masih belum dihapus, paksa sembunyikan */
.ibn-hero-actions,
.ibn-hero-copy .ibn-lines {
  display: none !important;
}

/* =========================================================
   SECTION HEAD CENTER - GAMBAR 2
========================================================= */
.ibn-center-head {
  max-width: 1100px;
  margin: 0 auto 38px;
  text-align: center;
}

.ibn-center-head .ibn-chip {
  display: inline-flex;
  margin: 0 auto 20px;
}

.ibn-center-head h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ibn-center-head p {
  max-width: 980px;
  margin: 18px auto 0;
  text-align: center;
}

/* =========================================================
   SECTION BISNIS - GAMBAR 3
========================================================= */
.ibn-business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.ibn-business-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255,250,242,0.98) 0%, rgba(247,240,228,0.98) 100%);
  border: 1px solid rgba(31, 106, 69, 0.08);
  box-shadow: 0 18px 40px rgba(31, 106, 69, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ibn-business-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, #1f6a45 0%, #c2812d 100%);
}

.ibn-business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(31, 106, 69, 0.12);
}

.ibn-business-card h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.05;
  color: #1f6a45;
  font-weight: 850;
}

.ibn-business-card p {
  color: #5d5349;
  line-height: 1.8;
  margin-bottom: 18px;
}

.ibn-business-card .ibn-card-number {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 14px;
  font-weight: 900;
  color: #c2812d;
  letter-spacing: 0.08em;
}

.ibn-business-card .ibn-mini-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 106, 69, 0.08);
}

.ibn-business-card .ibn-mini-block strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #b77729;
  text-transform: uppercase;
}

/* background section bisnis lebih hidup */
.ibn-section-business,
.ibn-business-section {
  position: relative;
}

.ibn-section-business::before,
.ibn-business-section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(194,129,45,0.10) 0%, rgba(194,129,45,0) 70%);
  pointer-events: none;
}

.ibn-section-business::after,
.ibn-business-section::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31,106,69,0.10) 0%, rgba(31,106,69,0) 70%);
  pointer-events: none;
}

/* kalau eyebrow lama masih belum dihapus, paksa sembunyikan */
.ibn-business-section .ibn-chip:first-child,
.ibn-section-business .ibn-chip:first-child {
  display: none !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .ibn-business-grid {
    grid-template-columns: 1fr;
  }

  .menu-list {
    gap: 22px;
  }

  .header-logo-long img {
    height: 50px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .header-logo-long img {
    height: 36px;
  }
}

@media (min-width: 901px) {
  .mobile-toggle,
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .ibn-hero-title .title-line {
    font-size: 46px;
  }

  .ibn-hero-tagline {
    font-size: 24px;
  }

  .header-logo-long img {
    height: 36px;
  }
}

/* =========================================================
   BUSINESS CARDS - TITLE + SUBTITLE + IMAGE
========================================================= */
.ibn-business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.ibn-business-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,250,242,0.98) 0%, rgba(247,240,228,0.98) 100%);
  border: 1px solid rgba(31,106,69,0.08);
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(31,106,69,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ibn-business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(31,106,69,0.12);
}

.ibn-business-card:focus {
  outline: 2px solid rgba(31,106,69,0.25);
  outline-offset: 4px;
}

.ibn-business-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, #1f6a45 0%, #c2812d 100%);
}

.ibn-business-card-inner {
  padding: 28px 28px 24px;
}

.ibn-card-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 14px;
  font-weight: 900;
  color: #c2812d;
  letter-spacing: 0.08em;
}

.ibn-business-card h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.3vw, 44px);
  line-height: 1.02;
  color: #1f6a45;
  font-weight: 900;
}

.ibn-business-subtitle {
  margin: 0 0 18px;
  color: #5d5349;
  line-height: 1.75;
  font-size: 17px;
}

.ibn-business-thumb {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #efe5d6;
  aspect-ratio: 16 / 9;
}

.ibn-business-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.ibn-business-card:hover .ibn-business-thumb img {
  transform: scale(1.04);
}

/* =========================================================
   MODAL POPUP
========================================================= */
body.ibn-modal-open {
  overflow: hidden;
}

.ibn-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}

.ibn-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.ibn-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(4px);
}

.ibn-modal-dialog {
  position: relative;
  width: min(960px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  background: #fffaf2;
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(0,0,0,0.20);
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
}

.ibn-modal-media {
  background: #efe5d6;
  min-height: 100%;
}

.ibn-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.ibn-modal-content {
  padding: 36px 34px;
}

.ibn-modal-content h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.02;
  color: #1f6a45;
  font-weight: 900;
}

.ibn-modal-subtitle {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.8;
  color: #5d5349;
}

.ibn-modal-block {
  padding: 20px 0;
  border-top: 1px solid rgba(31,106,69,0.10);
}

.ibn-modal-block strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #b77729;
}

.ibn-modal-block p {
  margin: 0;
  line-height: 1.8;
  color: #2b2118;
}

.ibn-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #2b2118;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.ibn-modal-close:hover {
  background: #fff;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 980px) {
  .ibn-modal-dialog {
    grid-template-columns: 1fr;
  }

  .ibn-modal-media img {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .ibn-business-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ibn-business-card-inner {
    padding: 22px 20px 20px;
  }

  .ibn-business-card h3 {
    font-size: 30px;
  }

  .ibn-modal-content {
    padding: 24px 20px;
  }
}

.ibn-business-hint {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #b77729;
  background: #f4e7d3;
  border: 1px solid rgba(194,129,45,0.16);
}

/* =========================================================
   VISION MISSION SECTION
========================================================= */
.ibn-vm-section {
  position: relative;
}

.ibn-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 34px;
}

.ibn-vm-card {
  position: relative;
  padding: 34px 32px 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,251,244,0.98) 0%, rgba(247,240,228,0.98) 100%);
  border: 1px solid rgba(31,106,69,0.08);
  box-shadow: 0 18px 40px rgba(31,106,69,0.06);
  overflow: hidden;
}

.ibn-vm-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #1f6a45 0%, #c2812d 100%);
}

.ibn-vm-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ibn-vm-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f3e7d3;
  border: 1px solid rgba(194,129,45,0.22);
  color: #b77729;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ibn-vm-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,106,69,0.08);
  color: #1f6a45;
  font-size: 22px;
  font-weight: 900;
}

.ibn-vm-card h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.04;
  color: #155f3f;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ibn-vm-lead {
  margin: 0;
  font-size: 19px;
  line-height: 1.9;
  color: #5c534a;
}

.ibn-vm-highlight {
  margin-top: 26px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(31,106,69,0.05);
  border: 1px solid rgba(31,106,69,0.09);
}

.ibn-vm-highlight span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b77729;
}

.ibn-vm-highlight strong {
  display: block;
  color: #2b2118;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 700;
}

.ibn-vm-mission-list {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.ibn-vm-mission-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(31,106,69,0.08);
}

.ibn-vm-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f6a45 0%, #c2812d 100%);
  box-shadow: 0 0 0 5px rgba(31,106,69,0.07);
}

.ibn-vm-mission-item p {
  margin: 0;
  color: #4f473f;
  line-height: 1.8;
  font-size: 16px;
}

/* =========================================================
   CORE VALUES
========================================================= */
.ibn-core-values-wrap {
  margin-top: 30px;
  padding: 34px 32px 36px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,251,244,0.98) 0%, rgba(246,239,227,0.98) 100%);
  border: 1px solid rgba(31,106,69,0.08);
  box-shadow: 0 18px 40px rgba(31,106,69,0.05);
}

.ibn-values-head {
  margin-bottom: 24px;
}

.ibn-values-head h3 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  color: #155f3f;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ibn-core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ibn-core-value-card {
  position: relative;
  min-height: 220px;
  padding: 24px 22px 22px;
  border-radius: 24px;
  background: #fffdf8;
  border: 1px solid rgba(31,106,69,0.08);
  box-shadow: 0 10px 24px rgba(31,106,69,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ibn-core-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(31,106,69,0.10);
}

.ibn-core-number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 13px;
  font-weight: 900;
  color: #c2812d;
  letter-spacing: 0.08em;
}

.ibn-core-value-card h4 {
  margin: 8px 0 12px;
  font-size: 32px;
  line-height: 1.05;
  color: #155f3f;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ibn-core-value-card p {
  margin: 0;
  color: #5c534a;
  line-height: 1.8;
  font-size: 16px;
}

/* =========================================================
   RESPONSIVE
/* ===== VISI & MISI SAMA PANJANG ===== */
.ibn-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.ibn-vm-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Card visi: isi diatur agar box bawah turun ke bawah */
.ibn-vm-card-vision {
  min-height: 760px;
}

.ibn-vm-card-vision .ibn-vm-lead {
  margin-bottom: 18px;
}

.ibn-vm-card-vision .ibn-vm-highlight {
  margin-top: auto;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Card misi: samakan tinggi visual */
.ibn-vm-card-mission {
  min-height: 760px;
}

.ibn-vm-card-mission .ibn-vm-mission-list {
  margin-top: 8px;
  display: grid;
  gap: 14px;
  flex: 1;
}

.ibn-vm-card-mission .ibn-vm-mission-item {
  min-height: 74px;
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
}

/* Kalau judul terlalu besar dan bikin beda tinggi, rapikan */
.ibn-vm-card h3 {
  min-height: 150px;
  display: block;
}

/* Mobile tetap normal */
@media (max-width: 900px) {
  .ibn-vm-grid {
    grid-template-columns: 1fr;
  }

  .ibn-vm-card-vision,
  .ibn-vm-card-mission {
    min-height: auto;
  }

  .ibn-vm-card h3 {
    min-height: auto;
  }

  .ibn-vm-card-vision .ibn-vm-highlight {
    min-height: auto;
  }
  
  .ibn-vm-card-vision::after {
    content: "";
    display: block;
    height: 24px;
  }
}

/* ===== BUSINESS CARD ALIGN FIX ===== */
.ibn-business-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
  grid-auto-rows:1fr;
}

.ibn-business-card{
  height:100%;
  display:flex;
}

.ibn-business-card-inner{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  padding:28px 28px 24px;
}

.ibn-business-card h3{
  margin:0 0 10px;
  min-height:110px; /* samakan area judul */
  display:block;
  font-size:clamp(28px,2.3vw,44px);
  line-height:1.02;
  color:#1f6a45;
  font-weight:900;
}

.ibn-business-subtitle{
  margin:0 0 16px;
  min-height:92px; /* samakan area subjudul */
  line-height:1.75;
  color:#5d5349;
  font-size:17px;
}

.ibn-business-hint{
  display:inline-flex;
  align-self:flex-start;
  margin:0 0 16px;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  color:#b77729;
  background:#f4e7d3;
  border:1px solid rgba(194,129,45,0.16);
}

.ibn-business-thumb{
  margin-top:auto; /* dorong gambar ke bawah */
  width:100%;
  border-radius:22px;
  overflow:hidden;
  background:#efe5d6;
  aspect-ratio:16 / 9;
}

.ibn-business-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* kalau layar lebih kecil, balik fleksibel */
@media (max-width: 900px){
  .ibn-business-grid{
    grid-template-columns:1fr;
  }

  .ibn-business-card h3,
  .ibn-business-subtitle{
    min-height:auto;
  }
}

/* ===== HOME PAGE BIAR LEBIH NYAMAN DILIHAT ===== */

.ibn-section-head h2{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.05;
}

.ibn-section-head p{
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 17px;
  line-height: 1.8;
  color: #6a5f53;
}

/* statistik lebih ringan */
.ibn-stats-grid{
  gap: 16px;
  margin-top: 28px;
}

.ibn-stat-card{
  padding: 24px 18px;
  border-radius: 22px;
}

.ibn-stat-card strong{
  font-size: 28px;
  line-height: 1;
}

.ibn-stat-card span{
  font-size: 14px;
  line-height: 1.5;
}

/* section business lebih lapang */
.ibn-business-section{
  padding-top: 34px;
}

.ibn-business-grid{
  gap: 30px;
  margin-top: 30px;
}

.ibn-business-card{
  border-radius: 28px;
}

.ibn-business-card-inner{
  padding: 26px 26px 22px;
}

.ibn-business-card h3{
  margin: 0 0 10px;
  min-height: 86px;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.02;
}

.ibn-business-subtitle{
  margin: 0 0 14px;
  min-height: 58px;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.7;
  color: #62584d;
}

.ibn-business-hint{
  margin: 0 0 14px;
  padding: 7px 12px;
  font-size: 12px;
}

.ibn-business-thumb{
  margin-top: auto;
  border-radius: 20px;
  aspect-ratio: 16 / 8.8;
}

/* kasih ruang antar section */
.ibn-home-2026,
.ibn-business-section,
.ibn-vm-section{
  padding-top: 30px;
  padding-bottom: 30px;
}

/* visi misi juga diringankan */
.ibn-vm-card h3{
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
}

.ibn-vm-lead,
.ibn-vm-mission-item p{
  font-size: 16px;
  line-height: 1.8;
}

.ibn-core-value-card h4{
  font-size: 28px;
}

/* mobile */
@media (max-width: 900px){
  .ibn-section-head h2{
    font-size: 38px;
  }

  .ibn-business-card h3,
  .ibn-business-subtitle{
    min-height: auto;
    max-width: 100%;
  }

  .ibn-stat-card strong{
    font-size: 24px;
  }
}

/* =========================================
   FIX VISI MISI INTERAKTIF
========================================= */

/* heading */
.ibn-vm-section .ibn-section-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 26px;
}

.ibn-vm-section .ibn-section-head h2 {
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.ibn-vm-section .ibn-section-head p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #6a5f53;
}

/* grid */
.ibn-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
}

/* card umum */
.ibn-vm-card {
  position: relative;
  background: #f8f4ea;
  border: 1px solid #e6d9c6;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(63, 43, 20, 0.05);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
}

.ibn-vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #1d6a46, #c7903d);
}

.ibn-vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(63, 43, 20, 0.10);
  border-color: #d5c09b;
}

.ibn-vm-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.ibn-vm-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b77729;
  background: #f5ead8;
  border: 1px solid #e7cfaa;
}

.ibn-vm-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4ee;
  border: 1px solid #d6e4d8;
  color: #1d6a46;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.ibn-vm-card h3 {
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.03;
  margin: 0 0 16px;
  color: #0f5f42;
}

.ibn-vm-lead {
  font-size: 16px;
  line-height: 1.85;
  color: #5f5449;
  margin: 0 0 22px;
}

/* card visi */
.ibn-vm-card-vision .ibn-vm-highlight {
  margin-top: auto;
  background: linear-gradient(180deg, #f3efe4 0%, #eee8da 100%);
  border: 1px solid #ddd0ba;
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.ibn-vm-highlight-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b77729;
  margin-bottom: 10px;
}

.ibn-vm-highlight p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #2c241d;
  font-weight: 600;
}

/* card misi */
.ibn-vm-mission-list {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.ibn-vm-mission-item {
  border: 1px solid #e2d7c6;
  border-radius: 18px;
  background: #fbf8f1;
  overflow: hidden;
  transition: all 0.25s ease;
}

.ibn-vm-mission-item:hover {
  border-color: #d6c09b;
  box-shadow: 0 8px 22px rgba(54, 39, 19, 0.06);
}

.ibn-vm-mission-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
}

.ibn-vm-mission-trigger-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.ibn-vm-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b98a44;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(185, 138, 68, 0.12);
}

.ibn-vm-mission-title {
  display: block;
  flex: 1;
  min-width: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #3a3027;
  font-weight: 600;
  white-space: normal;
  word-break: normal;
}

.ibn-vm-acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4ee;
  color: #1d6a46;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ibn-vm-mission-item.active .ibn-vm-acc-icon {
  transform: rotate(45deg);
  background: #1d6a46;
  color: #fff;
}

.ibn-vm-mission-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 18px;
}

.ibn-vm-mission-item.active .ibn-vm-mission-content {
  max-height: 220px;
  padding: 0 18px 18px 18px;
}

.ibn-vm-mission-content p {
  margin: 0 0 0 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #6a5f53;
}

/* nilai inti */
.ibn-core-values-wrap {
  margin-top: 28px;
  background: #f8f4ea;
  border: 1px solid #e6d9c6;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(63, 43, 20, 0.05);
  position: relative;
  overflow: hidden;
}

.ibn-core-values-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1d6a46, #c7903d);
}

.ibn-core-values-wrap h3 {
  font-size: clamp(28px, 3vw, 48px);
  margin: 14px 0 22px;
  line-height: 1.08;
  color: #0f5f42;
}

.ibn-core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ibn-core-value-card {
  background: #fffdf8;
  border: 1px solid #e4dacb;
  border-radius: 18px;
  padding: 18px 16px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: 170px;
}

.ibn-core-value-card:hover {
  transform: translateY(-6px);
  border-color: #d6c09b;
  box-shadow: 0 14px 28px rgba(63, 43, 20, 0.08);
}

.ibn-core-value-no {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 800;
  color: #b77729;
}

.ibn-core-value-card h4 {
  font-size: 28px;
  margin: 0 0 10px;
  color: #0f5f42;
  line-height: 1.1;
}

.ibn-core-value-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #62584d;
}

/* responsive */
@media (max-width: 1024px) {
  .ibn-core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ibn-vm-grid {
    grid-template-columns: 1fr;
  }

  .ibn-core-values-grid {
    grid-template-columns: 1fr;
  }

  .ibn-vm-card,
  .ibn-core-values-wrap {
    padding: 20px;
  }

  .ibn-vm-card h3,
  .ibn-core-values-wrap h3 {
    font-size: 34px;
  }
}

/* =========================================================
   COMPANY PROFILE TABS SECTION - HOME 2026
========================================================= */
.ibn-corp-tabs-section{
  padding:72px 0 54px;
  background:linear-gradient(180deg,#f7f3ea 0%, #f3ede1 100%);
}

.ibn-corp-tabs-head{
  max-width:920px;
  margin:0 auto 30px;
  text-align:center;
}

.ibn-corp-topline{
  display:inline-flex;
  align-items:center;
  padding:10px 18px;
  border-radius:999px;
  background:#f7ecd9;
  border:1px solid rgba(199,138,58,.28);
  color:#b8792c;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.ibn-corp-tabs-head h2{
  margin:0 0 14px;
  font-size:clamp(34px,4vw,60px);
  line-height:1.04;
  color:#0f684b;
}

.ibn-corp-tabs-head p{
  max-width:760px;
  margin:0 auto;
  font-size:16px;
  line-height:1.85;
  color:#655c52;
}

.ibn-corp-tabs-nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin:0 auto 28px;
}

.ibn-corp-tab-btn{
  appearance:none;
  border:none;
  cursor:pointer;
  padding:14px 22px;
  border-radius:999px;
  background:#ffffff;
  color:#24483c;
  font-size:14px;
  font-weight:700;
  transition:all .25s ease;
  box-shadow:0 4px 14px rgba(26,35,24,.05);
}

.ibn-corp-tab-btn:hover{
  transform:translateY(-2px);
}

.ibn-corp-tab-btn.active{
  background:#0f684b;
  color:#fff;
  box-shadow:0 10px 24px rgba(15,104,75,.18);
}

.ibn-corp-tabs-content{
  position:relative;
}

.ibn-corp-panel{
  display:none;
}

.ibn-corp-panel.active{
  display:block;
}

.ibn-tab-shell{
  background:#fffdf8;
  border:1px solid #eadfce;
  border-radius:28px;
  padding:40px;
  box-shadow:0 20px 40px rgba(43,33,12,.05);
}

.ibn-section-label{
  display:inline-flex;
  align-items:center;
  padding:9px 16px;
  border-radius:999px;
  border:1px solid #dcb86a;
  color:#bb7a28;
  background:#f9f0de;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.ibn-section-label.is-light{
  background:rgba(255,255,255,.12);
  color:#ffd469;
  border-color:rgba(255,255,255,.18);
}

/* summary */
.ibn-summary-copy{
  text-align:center;
  max-width:860px;
  margin:0 auto 30px;
}

.ibn-summary-copy h3{
  margin:0 0 14px;
  font-size:clamp(32px,4vw,56px);
  line-height:1.08;
  color:#0f684b;
}

.ibn-summary-copy p{
  margin:0;
  font-size:16px;
  line-height:1.9;
  color:#5f5a52;
}

.ibn-summary-stats{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

.ibn-summary-stat-card{
  background:#faf7ef;
  border:1px solid #e7dccb;
  border-radius:22px;
  padding:24px 18px;
  text-align:center;
}

.ibn-summary-stat-card strong{
  display:block;
  font-size:clamp(24px,2vw,38px);
  line-height:1;
  color:#0f684b;
  margin-bottom:10px;
}

.ibn-summary-stat-card span{
  display:block;
  font-size:14px;
  line-height:1.6;
  color:#6a645d;
}

/* business */
.ibn-tab-business-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 28px;
}

.ibn-tab-business-head h3{
  margin:0 0 12px;
  font-size:clamp(32px,4vw,54px);
  line-height:1.08;
  color:#0f684b;
}

.ibn-tab-business-head p{
  margin:0;
  color:#5f5a52;
  line-height:1.8;
}

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

.ibn-tab-business-card{
  overflow:hidden;
  border-radius:24px;
  background:#faf7ef;
  border:1px solid #e8ddcb;
  transition:all .25s ease;
}

.ibn-tab-business-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(34,32,26,.09);
}

.ibn-tab-business-media{
  aspect-ratio:16/9;
  overflow:hidden;
}

.ibn-tab-business-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ibn-tab-business-body{
  position:relative;
  padding:24px;
}

.ibn-tab-card-no{
  position:absolute;
  top:18px;
  right:18px;
  font-size:12px;
  font-weight:800;
  color:#bb7a28;
  letter-spacing:.06em;
}

.ibn-tab-business-body h4,
.ibn-tab-value-card h4{
  margin:0 0 12px;
  font-size:clamp(24px,2vw,36px);
  line-height:1.08;
  color:#0f684b;
}

.ibn-tab-business-body p,
.ibn-tab-value-card p{
  margin:0;
  line-height:1.8;
  color:#5f5a52;
  font-size:15px;
}

/* vision */
.ibn-tab-vision-wrap{
  background:linear-gradient(180deg,#2b5fa8 0%, #1d4a8d 100%);
  border-radius:28px;
  padding:42px;
  color:#fff;
  overflow:hidden;
}

.ibn-tab-vision-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 38px;
}

.ibn-tab-vision-head h3{
  margin:0 0 12px;
  font-size:clamp(32px,4vw,54px);
  line-height:1.08;
  color:#fff;
}

.ibn-tab-vision-head p{
  margin:0;
  color:rgba(255,255,255,.86);
  line-height:1.8;
}

.ibn-tab-vision-diagram{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:38px 0 12px;
}

.ibn-tab-vision-circle{
  position:relative;
  width:760px;
  max-width:100%;
  height:560px;
}

.ibn-tab-vision-center{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:290px;
  height:290px;
  border-radius:50%;
  background:#0d397d;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:34px;
  z-index:3;
  box-shadow:0 18px 34px rgba(0,0,0,.15);
}

.ibn-tab-vision-center::before{
  content:"";
  position:absolute;
  width:392px;
  height:392px;
  border:2px solid rgba(255,255,255,.45);
  border-radius:50%;
  z-index:-1;
}

.ibn-tab-vision-center small{
  display:block;
  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
  color:#fff;
}

.ibn-tab-vision-center h4{
  margin:0;
  font-size:30px;
  line-height:1.18;
  color:#fff;
}

.ibn-tab-vision-orbit-label{
  position:absolute;
  top:32px;
  left:50%;
  transform:translateX(-50%);
  font-size:34px;
  font-weight:800;
  color:#fff;
  z-index:4;
}

.ibn-tab-vision-point{
  position:absolute;
  width:220px;
  font-size:15px;
  line-height:1.8;
  color:#fff;
}

.ibn-tab-vision-point .dot{
  position:absolute;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#0d397d;
  border:3px solid #8cb6f3;
}

.ibn-tab-vision-point p{
  margin:0;
}

.ibn-tab-vision-point.point-1{
  top:92px;
  left:0;
  text-align:right;
}
.ibn-tab-vision-point.point-1 .dot{
  top:12px;
  right:-34px;
}

.ibn-tab-vision-point.point-2{
  top:92px;
  right:0;
  text-align:left;
}
.ibn-tab-vision-point.point-2 .dot{
  top:12px;
  left:-34px;
}

.ibn-tab-vision-point.point-3{
  top:250px;
  left:-10px;
  text-align:right;
}
.ibn-tab-vision-point.point-3 .dot{
  top:12px;
  right:-34px;
}

.ibn-tab-vision-point.point-4{
  top:250px;
  right:-10px;
  text-align:left;
}
.ibn-tab-vision-point.point-4 .dot{
  top:12px;
  left:-34px;
}

.ibn-tab-vision-point.point-5{
  bottom:54px;
  left:50%;
  transform:translateX(-50%);
  width:340px;
  text-align:center;
}
.ibn-tab-vision-point.point-5 .dot{
  top:-26px;
  left:50%;
  transform:translateX(-50%);
}

/* values */
.ibn-tab-values-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 30px;
}

.ibn-tab-values-head h3{
  margin:0 0 12px;
  font-size:clamp(32px,4vw,54px);
  line-height:1.08;
  color:#0f684b;
}

.ibn-tab-values-head p{
  margin:0;
  line-height:1.8;
  color:#5f5a52;
}

.ibn-tab-values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.ibn-tab-value-card{
  position:relative;
  background:#faf7ef;
  border:1px solid #e7dccb;
  border-radius:22px;
  padding:24px 20px;
  min-height:180px;
  transition:all .25s ease;
}

.ibn-tab-value-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 28px rgba(34,32,26,.08);
}

/* responsive */
@media (max-width: 1199px){
  .ibn-summary-stats{
    grid-template-columns:repeat(3,1fr);
  }

  .ibn-tab-values-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 991px){
  .ibn-tab-business-grid{
    grid-template-columns:1fr;
  }

  .ibn-summary-stats{
    grid-template-columns:repeat(2,1fr);
  }

  .ibn-tab-vision-circle{
    width:100%;
    height:auto;
    display:flex;
    flex-direction:column;
    gap:18px;
    align-items:center;
  }

  .ibn-tab-vision-center{
    position:relative;
    left:auto;
    top:auto;
    transform:none;
    width:100%;
    max-width:420px;
    height:auto;
    border-radius:28px;
    padding:34px 24px;
  }

  .ibn-tab-vision-center::before{
    display:none;
  }

  .ibn-tab-vision-orbit-label{
    position:static;
    transform:none;
    font-size:28px;
    margin-bottom:12px;
    text-align:center;
  }

  .ibn-tab-vision-point{
    position:relative;
    width:100%;
    max-width:680px;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    bottom:auto !important;
    transform:none !important;
    text-align:left !important;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    padding:16px 16px 16px 46px;
  }

  .ibn-tab-vision-point .dot{
    top:20px !important;
    left:18px !important;
    right:auto !important;
    transform:none !important;
  }
}

@media (max-width: 767px){
  .ibn-corp-tabs-section{
    padding:56px 0 42px;
  }

  .ibn-tab-shell,
  .ibn-tab-vision-wrap{
    padding:24px;
  }

  .ibn-summary-stats,
  .ibn-tab-values-grid{
    grid-template-columns:1fr;
  }

  .ibn-corp-tab-btn{
    width:100%;
  }

  .ibn-corp-tabs-nav{
    flex-direction:column;
  }

  .ibn-tab-business-body h4,
  .ibn-tab-value-card h4{
    font-size:28px;
  }
}

/* ========================================
   TABS PRESERVED - REFINED COMPANY PROFILE
======================================== */
.ibn-corp-tabs-head h2 {
  max-width: 980px;
}

.ibn-tab-shell-summary {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.ibn-summary-wrap-refined {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 34px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(181, 148, 102, 0.2);
  box-shadow: 0 18px 40px rgba(61, 40, 22, 0.05);
}

.ibn-summary-lead {
  font-size: 1.06rem;
  line-height: 1.9;
  color: #4d4035;
}

.ibn-summary-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(17,105,73,0.08), rgba(211,154,66,0.12));
  border: 1px solid rgba(181, 148, 102, 0.18);
}

.ibn-summary-band-copy strong {
  display: block;
  color: #0f684b;
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 6px;
}

.ibn-summary-band-copy p {
  color: #6a594a;
  line-height: 1.75;
}

.ibn-summary-band-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(181,148,102,0.24);
  color: #a36a1a;
  font-size: 0.84rem;
  font-weight: 800;
}

.ibn-summary-stats-refined {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.ibn-summary-stats-refined .ibn-summary-stat-card {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(248,242,235,0.92));
  border: 1px solid rgba(181, 148, 102, 0.18);
}

.ibn-tab-business-grid-refined {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ibn-tab-business-card-detail {
  cursor: pointer;
  outline: none;
}

.ibn-tab-business-card-detail:focus,
.ibn-tab-business-card-detail:hover {
  border-color: rgba(181, 148, 102, 0.3);
}

.ibn-tab-business-card-detail .ibn-tab-business-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

.ibn-tab-business-hint {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(235, 214, 188, 0.72);
  border: 1px solid rgba(181,148,102,0.22);
  color: #a36a1a;
  font-size: 0.8rem;
  font-weight: 800;
}

.ibn-tab-business-card-detail:hover .ibn-tab-business-hint {
  background: #0f684b;
  color: #fff;
}

.ibn-tab-purpose-wrap {
  padding: 4px 2px 2px;
}

.ibn-tab-purpose-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 24px;
}

.ibn-tab-purpose-head h3 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  color: #0f684b;
}

.ibn-tab-purpose-head p {
  margin: 0;
  color: #645548;
  line-height: 1.85;
}

.ibn-tab-purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.ibn-tab-purpose-card {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(247,241,234,0.96));
  border: 1px solid rgba(181,148,102,0.18);
  box-shadow: 0 16px 34px rgba(61, 40, 22, 0.04);
}

.ibn-tab-purpose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, #0f684b 0%, #d39a42 100%);
}

.ibn-tab-purpose-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(238,223,202,0.78);
  border: 1px solid rgba(181,148,102,0.22);
  color: #a56a18;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ibn-tab-purpose-card h4 {
  margin: 18px 0 12px;
  color: #0f684b;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 0.98;
}

.ibn-tab-purpose-card p {
  color: #5d4e41;
  line-height: 1.82;
}

.ibn-tab-purpose-focus {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(17,105,73,0.08), rgba(211,154,66,0.1));
  border: 1px solid rgba(181,148,102,0.18);
}

.ibn-tab-purpose-focus small {
  display: block;
  margin-bottom: 8px;
  color: #a56a18;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
}

.ibn-tab-purpose-focus strong {
  display: block;
  color: #2c241d;
  line-height: 1.75;
  font-size: 1rem;
}

.ibn-tab-purpose-accordion {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.ibn-tab-purpose-item {
  border-radius: 22px;
  border: 1px solid rgba(181,148,102,0.18);
  background: rgba(255,255,255,0.76);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ibn-tab-purpose-item:hover,
.ibn-tab-purpose-item.is-active {
  border-color: rgba(15,104,75,0.18);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 24px rgba(61, 40, 22, 0.04);
}

.ibn-tab-purpose-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.ibn-tab-purpose-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(211,154,66,0.14);
  color: #a56a18;
  font-size: 0.78rem;
  font-weight: 800;
}

.ibn-tab-purpose-trigger-text {
  min-width: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
  color: #2d241b;
}

.ibn-tab-purpose-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15,104,75,0.1);
  color: #0f684b;
  font-size: 1.15rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ibn-tab-purpose-item.is-active .ibn-tab-purpose-toggle {
  transform: rotate(45deg);
  background: #0f684b;
  color: #fff;
}

.ibn-tab-purpose-content {
  display: none;
  padding: 0 18px 18px 66px;
}

.ibn-tab-purpose-item.is-active .ibn-tab-purpose-content {
  display: block;
}

.ibn-tab-purpose-content p {
  margin: 0;
  color: #6a5b4d;
  line-height: 1.78;
}

.ibn-tab-values-wrap-refined {
  padding: 0;
}

.ibn-tab-values-grid-refined {
  gap: 14px;
}

.ibn-tab-values-grid-refined .ibn-tab-value-card {
  min-height: 100%;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(181,148,102,0.18);
}

.ibn-tab-values-grid-refined .ibn-tab-card-no {
  color: #b26d0c;
}

#ibnTabBusinessModal .ibn-modal-dialog {
  border-radius: 28px;
  border: 1px solid rgba(181,148,102,0.24);
}

#ibnTabBusinessModal .ibn-modal-content h3 {
  color: #0f684b;
}

@media (max-width: 1080px) {
  .ibn-summary-stats-refined {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ibn-tab-purpose-grid,
  .ibn-tab-values-grid-refined {
    grid-template-columns: 1fr 1fr;
  }

  .ibn-tab-values-grid-refined {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .ibn-summary-band,
  .ibn-tab-business-grid-refined,
  .ibn-tab-purpose-grid,
  .ibn-tab-values-grid-refined {
    grid-template-columns: 1fr;
  }

  .ibn-summary-wrap-refined,
  .ibn-tab-purpose-card {
    padding: 22px;
  }

  .ibn-summary-stats-refined {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ibn-tab-purpose-card h4,
  .ibn-tab-business-body h4,
  .ibn-tab-values-head h3 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .ibn-tab-purpose-content {
    padding-left: 18px;
  }
}

@media (max-width: 560px) {
  .ibn-summary-stats-refined .ibn-summary-stat-card:last-child {
    grid-column: 1 / -1;
  }

  .ibn-tab-shell {
    padding: 24px;
  }

  .ibn-tab-purpose-trigger {
    grid-template-columns: auto 1fr;
  }

  .ibn-tab-purpose-toggle {
    grid-column: 2;
    justify-self: end;
  }
}

/* ========================================
   V4 PREMIUM CORPORATE TABS REFINEMENT
======================================== */
.ibn-corp-tabs-section{
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at top center, rgba(210,161,82,0.08), transparent 28%),
    linear-gradient(180deg, #f7f2e9 0%, #f3ede2 100%);
}

.ibn-corp-tabs-head{
  max-width: 980px;
  margin-bottom: 40px;
}

.ibn-corp-tabs-head h2{
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ibn-corp-tabs-head p{
  max-width: 760px;
  color: #6a594a;
}

.ibn-corp-tabs-nav{
  gap: 14px;
  margin-bottom: 36px;
}

.ibn-corp-tab-btn{
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(17,105,73,0.10);
  background: rgba(255,255,255,0.82);
  color: #24483c;
  box-shadow: 0 10px 24px rgba(43,33,12,.04);
}

.ibn-corp-tab-btn:hover{
  border-color: rgba(211,154,66,0.30);
  box-shadow: 0 12px 28px rgba(43,33,12,.07);
}

.ibn-corp-tab-btn.active{
  background: linear-gradient(135deg, #116949 0%, #0f5b40 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(17,105,73,.22);
}

.ibn-tab-shell,
.ibn-summary-wrap,
.ibn-tab-purpose-wrap,
.ibn-tab-values-wrap{
  border-radius: 34px;
  border: 1px solid rgba(181,148,102,.18);
  box-shadow: 0 24px 44px rgba(43,33,12,.05);
}

.ibn-tab-shell{
  background: rgba(255,255,255,0.64);
  padding: 12px;
}

.ibn-summary-wrap-refined,
.ibn-tab-purpose-wrap,
.ibn-tab-values-wrap-refined{
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(247,240,231,.94));
}

.ibn-summary-wrap-refined{
  padding: 42px;
}

.ibn-summary-copy h3,
.ibn-tab-business-head h3,
.ibn-tab-purpose-head h3,
.ibn-tab-values-head h3{
  color: #0f6b4b;
  letter-spacing: -0.045em;
}

.ibn-summary-band{
  background: linear-gradient(135deg, rgba(17,105,73,.10), rgba(211,154,66,.10));
  border: 1px solid rgba(181,148,102,.18);
}

.ibn-summary-band-copy strong{
  color: #1e3d33;
}

.ibn-summary-band-tag{
  background: rgba(255,255,255,.82);
  color: #a56a18;
}

.ibn-summary-stats-refined{
  gap: 18px;
}

.ibn-summary-stat-card{
  min-height: 150px;
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(248,242,235,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}

.ibn-summary-stat-card strong{
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.ibn-tab-business-grid-refined{
  gap: 20px;
}

.ibn-tab-business-card{
  border-radius: 30px;
  border: 1px solid rgba(181,148,102,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,239,231,.98));
  box-shadow: 0 18px 36px rgba(43,33,12,.05);
}

.ibn-tab-business-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 26px 42px rgba(43,33,12,.08);
  border-color: rgba(211,154,66,.34);
}

.ibn-tab-business-media{
  aspect-ratio: 16 / 9.2;
}

.ibn-tab-business-media img{
  transition: transform .42s ease;
}

.ibn-tab-business-card:hover .ibn-tab-business-media img{
  transform: scale(1.04);
}

.ibn-tab-business-body{
  padding: 22px 24px 24px;
}

.ibn-tab-business-body h4{
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  margin-bottom: 10px;
}

.ibn-tab-business-body p{
  color: #5b4a3d;
  min-height: 82px;
}

.ibn-tab-business-hint{
  min-height: 40px;
  padding: 0 14px;
  background: rgba(235,214,188,.72);
  border: 1px solid rgba(181,148,102,.20);
  color: #a86714;
  font-weight: 800;
}

.ibn-tab-business-card:hover .ibn-tab-business-hint{
  background: #116949;
  color: #fff;
}

.ibn-tab-purpose-wrap{
  padding: 42px;
}

.ibn-tab-purpose-head{
  max-width: 880px;
  margin: 0 auto 28px;
}

.ibn-tab-purpose-head p,
.ibn-tab-values-head p{
  color: #6a594a;
}

.ibn-tab-purpose-grid{
  gap: 20px;
}

.ibn-tab-purpose-card{
  border-radius: 30px;
  border: 1px solid rgba(181,148,102,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(246,239,231,.95));
  box-shadow: 0 16px 34px rgba(43,33,12,.04);
}

.ibn-tab-purpose-card::before{
  height: 5px;
}

.ibn-tab-purpose-card-vision{
  overflow: hidden;
}

.ibn-tab-purpose-card-vision::after{
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,105,73,.10) 0%, rgba(17,105,73,0) 70%);
  pointer-events: none;
}

.ibn-tab-purpose-chip{
  background: rgba(238,223,202,.76);
}

.ibn-tab-purpose-card h4{
  font-size: clamp(2rem, 3.2vw, 3.45rem);
}

.ibn-tab-purpose-card p{
  color: #5d4c3f;
}

.ibn-tab-purpose-focus{
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(17,105,73,.09), rgba(211,154,66,.10));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
}

.ibn-tab-purpose-focus strong{
  color: #2d241b;
}

.ibn-tab-purpose-item{
  border-radius: 20px;
}

.ibn-tab-purpose-item:hover,
.ibn-tab-purpose-item.is-active{
  box-shadow: 0 12px 24px rgba(43,33,12,.05);
}

.ibn-tab-purpose-trigger-text{
  font-size: 1rem;
}

.ibn-tab-purpose-toggle{
  transition: transform .24s ease, background .24s ease, color .24s ease;
}

.ibn-tab-values-wrap-refined{
  padding: 42px;
}

.ibn-tab-values-grid-refined{
  gap: 18px;
}

.ibn-tab-value-card{
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,242,235,.98));
  border: 1px solid rgba(181,148,102,.16);
  box-shadow: 0 12px 24px rgba(43,33,12,.04);
}

.ibn-tab-value-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(43,33,12,.07);
}

.ibn-tab-value-card h4{
  font-size: 1.55rem;
}

.ibn-modal-dialog{
  border-radius: 30px;
  box-shadow: 0 28px 64px rgba(20,18,16,.20);
}

@media (max-width: 991px){
  .ibn-corp-tabs-section{
    padding: 72px 0 70px;
  }

  .ibn-summary-wrap-refined,
  .ibn-tab-purpose-wrap,
  .ibn-tab-values-wrap-refined{
    padding: 28px;
  }

  .ibn-summary-stat-card{
    min-height: 132px;
  }
}

@media (max-width: 767px){
  .ibn-corp-tabs-nav{
    flex-direction: column;
  }

  .ibn-corp-tab-btn{
    width: 100%;
  }

  .ibn-tab-shell{
    padding: 8px;
  }

  .ibn-summary-wrap-refined,
  .ibn-tab-purpose-wrap,
  .ibn-tab-values-wrap-refined{
    padding: 22px;
  }

  .ibn-tab-business-body p{
    min-height: auto;
  }
}


/* ===== BILINGUAL SWITCHER + HIDE HEADER BRAND TEXT ===== */
.brand-copy,
.site-title,
.site-tagline,
.brand-name-link {
  display: none !important;
}

.brand-link-long,
.brand-link {
  gap: 0 !important;
}

.header-actions-bilingual {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher,
.mobile-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(61, 40, 22, 0.12);
  box-shadow: 0 10px 24px rgba(61, 40, 22, 0.08);
}

.lang-option,
.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8b8178;
  background: transparent;
  transition: all .2s ease;
}

.lang-option:hover,
.lang-pill:hover {
  color: #5b3d26;
  transform: translateY(-1px);
}

.lang-option.is-active,
.lang-pill.is-active {
  background: #1763ad;
  color: #fff;
  box-shadow: 0 10px 22px rgba(23, 99, 173, 0.22);
}

.mobile-lang-switcher {
  display: none;
  justify-content: center;
  margin: 0 0 14px;
}

@media (max-width: 1140px) {
  .mobile-lang-switcher {
    display: inline-flex;
  }

  .lang-switcher {
    display: none;
  }
}

/* ===== BESARKAN LOGO HEADER ===== */
.brand-link {
  gap: 0 !important;
}

.site-logo,
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-logo img,
.site-logo .custom-logo,
.custom-logo-link img {
  width: auto !important;
  height: 58px !important;
  max-height: 58px !important;
  max-width: 240px !important;
  object-fit: contain;
  display: block;
}

/* kalau header ikut terlalu pendek */
.header-inner {
  min-height: 92px;
}

/* versi mobile */
@media (max-width: 760px) {
  .site-logo img,
  .site-logo .custom-logo,
  .custom-logo-link img {
    height: 42px !important;
    max-height: 42px !important;
    max-width: 170px !important;
  }

  .header-inner {
    min-height: 76px;
  }
}

/* =========================
   CARD NILAI INTI - RAPIIH
   ========================= */
.ibn-core-values-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.ibn-core-value-card{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  min-height:170px;
  padding:22px 20px 20px;
  border:1px solid rgba(214, 195, 161, 0.75);
  border-radius:22px;
  background:#fcfaf4;
  box-shadow:0 8px 24px rgba(30, 58, 46, 0.04);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

/* nomor */
.ibn-core-value-no{
  position:absolute;
  top:16px;
  left:16px;
  font-size:13px;
  line-height:1;
  font-weight:800;
  color:#c7821c;
  z-index:2;
}

/* background image/icon */
.ibn-core-value-card.has-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--core-bg);
  background-repeat:no-repeat;
  background-position:center center;
  background-size:120px 120px; /* diperbesar */
  opacity:var(--core-bg-opacity, 0.20);
  pointer-events:none;
  z-index:0;
}

/* overlay tipis biar teks tetap kebaca */
.ibn-core-value-card.has-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(252, 250, 244, 0.08);
  pointer-events:none;
  z-index:1;
}

/* isi card */
.ibn-core-value-card > *{
  position:relative;
  z-index:2;
}

.ibn-core-value-card h4{
  margin:22px 0 10px;
  font-size:22px;
  line-height:1.1;
  font-weight:800;
  color:#0d6b4e;
  letter-spacing:-0.02em;
}

.ibn-core-value-card p{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:#5a4a3c;
  max-width:92%;
}

/* versi tablet */
@media (max-width: 1024px){
  .ibn-core-values-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .ibn-core-value-card.has-bg::before{
    background-size:110px 110px;
  }
}

/* versi mobile */
@media (max-width: 640px){
  .ibn-core-values-grid{
    grid-template-columns:1fr;
  }

  .ibn-core-value-card{
    min-height:160px;
    padding:20px 18px 18px;
  }

  .ibn-core-value-card h4{
    font-size:20px;
  }

  .ibn-core-value-card p{
    font-size:14px;
    max-width:100%;
  }

  .ibn-core-value-card.has-bg::before{
    background-size:100px 100px;
  }
}

/* ===== RAPIIHKAN CARD RINGKASAN PERUSAHAAN ===== */
.ibn-summary-stats-refined,
.ibn-stats-grid,
.ibn-stats-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 220px));
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.ibn-summary-stat-card,
.ibn-stat-card {
  min-height: 170px;
  padding: 26px 18px;
  border-radius: 26px;
  background: #fcfaf5;
  border: 1px solid rgba(214, 195, 161, 0.75);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ibn-summary-stat-card strong,
.ibn-stat-card strong {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(44px, 4vw, 56px);
  line-height: 0.95;
  font-weight: 800;
  color: #0d6b4e;
}

.ibn-summary-stat-card span,
.ibn-stat-card span {
  display: block;
  max-width: 150px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.45;
  color: #6b584b;
}

/* kalau card paling luar terlalu mepet */
.ibn-summary-shell,
.ibn-summary-wrap {
  padding-bottom: 28px;
}

/* tablet */
@media (max-width: 1024px) {
  .ibn-summary-stats-refined,
  .ibn-stats-grid,
  .ibn-stats-grid-clean {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

/* mobile */
@media (max-width: 640px) {
  .ibn-summary-stats-refined,
  .ibn-stats-grid,
  .ibn-stats-grid-clean {
    grid-template-columns: 1fr;
  }

  .ibn-summary-stat-card,
  .ibn-stat-card {
    min-height: 145px;
    border-radius: 22px;
  }

  .ibn-summary-stat-card strong,
  .ibn-stat-card strong {
    font-size: 42px;
  }

  .ibn-summary-stat-card span,
  .ibn-stat-card span {
    max-width: 100%;
    font-size: 15px;
  }
}

/* ===============================
   JOURNEY / TIMELINE SECTION
================================== */
.ibn-journey-section {
  padding: 56px 0 40px;
}

.ibn-journey-head {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.ibn-journey-head .ibn-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #dcc8a1;
  background: #f8f4eb;
  color: #b8791d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ibn-journey-title {
  max-width: 860px;
  margin: 0 auto 18px;
  text-align: center;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  color: #0f6c4d;
  letter-spacing: -0.03em;
}

.ibn-journey-subtitle {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: #6f5a49;
}

.ibn-journey-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.ibn-journey-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border-radius: 28px;
  background: #fbf8f2;
  border: 1px solid rgba(219, 201, 171, 0.8);
  box-shadow: 0 10px 24px rgba(47, 33, 17, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ibn-journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(47, 33, 17, 0.08);
}

.ibn-journey-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #eee7db;
  overflow: hidden;
}

.ibn-journey-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ibn-journey-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0ebe1, #e8e1d4);
  color: #b8791d;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ibn-journey-card-body {
  padding: 18px 18px 22px;
}

.ibn-journey-year {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #b8791d;
}

.ibn-journey-card-title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f6c4d;
}

.ibn-journey-card-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #6f5a49;
}

/* responsive */
@media (max-width: 1280px) {
  .ibn-journey-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .ibn-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ibn-journey-title {
    font-size: clamp(32px, 6vw, 50px);
  }

  .ibn-journey-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .ibn-journey-grid {
    grid-template-columns: 1fr;
  }

  .ibn-journey-section {
    padding: 40px 0 24px;
  }

  .ibn-journey-card-body {
    padding: 16px 16px 20px;
  }

  .ibn-journey-year {
    font-size: 20px;
  }

  .ibn-journey-card-title {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .ibn-summary-stats-refined,
  .ibn-stats-grid,
  .ibn-stats-grid-clean {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

/* ===== MOBILE SUMMARY CARD 2x2 RAPI ===== */
@media (max-width: 640px) {
  .ibn-summary-stats-refined,
  .ibn-stats-grid,
  .ibn-stats-grid-clean {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    max-width: 100% !important;
    margin: 18px auto 0 !important;
  }

  .ibn-summary-stat-card,
  .ibn-stat-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 126px !important;
    padding: 18px 10px !important;
    border-radius: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    justify-self: stretch !important;
  }

  .ibn-summary-stat-card strong,
  .ibn-stat-card strong {
    font-size: 32px !important;
    line-height: 1 !important;
    margin-bottom: 8px !important;
  }

  .ibn-summary-stat-card span,
  .ibn-stat-card span {
    font-size: 13px !important;
    line-height: 1.35 !important;
    max-width: 100% !important;
  }

  /* PENTING: batalkan rule card terakhir full width */
  .ibn-summary-stat-card:last-child,
  .ibn-stat-card:last-child {
    grid-column: auto !important;
  }
}

/* ===== UNIT BISNIS 2x2 KHUSUS MOBILE ===== */
@media (max-width: 640px) {
  .ibn-business-grid,
  .ibn-business-grid-refined,
  .ibn-tab-business-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  .ibn-business-card,
  .ibn-tab-business-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .ibn-business-thumb,
  .ibn-tab-business-thumb,
  .ibn-business-media {
    aspect-ratio: 1 / 1 !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .ibn-business-thumb img,
  .ibn-tab-business-thumb img,
  .ibn-business-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .ibn-business-card-inner,
  .ibn-tab-business-body {
    padding: 12px !important;
    min-height: auto !important;
  }

  .ibn-business-card h3,
  .ibn-tab-business-card h3,
  .ibn-tab-business-body h4 {
    font-size: 16px !important;
    line-height: 1.15 !important;
    margin: 0 0 8px !important;
    min-height: auto !important;
  }

  .ibn-business-subtitle,
  .ibn-tab-business-card p,
  .ibn-tab-business-body p {
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin: 0 0 10px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: auto !important;
    max-width: 100% !important;
  }

  .ibn-business-hint,
  .ibn-tab-business-hint {
    width: 100% !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 0 10px !important;
    font-size: 11px !important;
    border-radius: 999px !important;
    margin: 0 !important;
  }

  .ibn-card-number,
  .ibn-tab-business-card .ibn-card-number {
    top: 10px !important;
    right: 10px !important;
    font-size: 11px !important;
  }
}

/* ===== RATAKAN JUDUL & SUBJUDUL PORTOFOLIO 2025 ===== */
.ibn-portfolio-head,
.ibn-portfolio-section .ibn-section-head,
.ibn-portfolio-section .ibn-section-head h2,
.ibn-portfolio-section .ibn-section-head p {
  text-align: center !important;
}

.ibn-portfolio-head,
.ibn-portfolio-section .ibn-section-head {
  max-width: 980px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ibn-portfolio-section .ibn-section-head h2 {
  margin-left: auto !important;
  margin-right: auto !important;
}

.ibn-portfolio-section .ibn-section-head p {
  max-width: 820px;
  margin: 16px auto 0 !important;
  line-height: 1.8;
}

/* ===== RATA KIRIKAN JUDUL & SUBJUDUL RENCANA PROJECT 2026 ===== */
.ibn-section-dark .ibn-section-head,
.ibn-section-dark .ibn-section-head h2,
.ibn-section-dark .ibn-section-head p {
  text-align: left !important;
}

.ibn-section-dark .ibn-section-head {
  max-width: 980px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.ibn-section-dark .ibn-section-head h2 {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.ibn-section-dark .ibn-section-head p {
  max-width: 820px !important;
  margin: 16px 0 0 !important;
}

.company-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-company .footer-eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8791d;
  background: #f5ecdc;
  border: 1px solid rgba(184,121,29,0.18);
  margin-bottom: 14px;
}

.footer-company h3 {
  margin: 0 0 12px;
}

.company-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  margin-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.company-footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .company-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-footer-bottom {
    flex-direction: column;
  }
}

/* =========================
   PARTNER LOGO - HOME
========================= */
.ibn-partner-home-section {
  padding: 40px 0 20px;
}

.ibn-partner-home-card {
  background: #fdfaf4;
  border: 1px solid rgba(214, 195, 161, 0.75);
  border-radius: 34px;
  padding: 32px 28px 34px;
  box-shadow: 0 10px 26px rgba(45, 31, 18, 0.04);
}

.ibn-partner-home-rows {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ibn-partner-row {
  display: grid;
  gap: 18px;
  justify-content: center;
}

.partner-row-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.partner-row-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 84%;
  margin: 0 auto;
}

.ibn-partner-logo-card {
  background: #fffdf8;
  border: 1px solid rgba(214, 195, 161, 0.7);
  border-radius: 22px;
  min-height: 112px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ibn-partner-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(45, 31, 18, 0.08);
}

.ibn-partner-logo-card img {
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.ibn-partner-home-action {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* =========================
   PARTNER LOGO - ABOUT PAGE
========================= */
.ibn-partner-about-section {
  padding: 56px 0 24px;
}

.ibn-partner-group-large {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.ibn-partner-group-small {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.ibn-partner-logo-card.large {
  min-height: 118px;
  padding: 20px;
}

.ibn-partner-logo-card.large img {
  max-height: 68px;
}

.ibn-partner-logo-card.small {
  min-height: 92px;
  padding: 16px;
}

.ibn-partner-logo-card.small img {
  max-height: 52px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .partner-row-6,
  .ibn-partner-group-large {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .partner-row-5,
  .ibn-partner-group-small {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .partner-row-6,
  .partner-row-5,
  .ibn-partner-group-large,
  .ibn-partner-group-small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ibn-partner-logo-card {
    min-height: 96px;
  }
}

@media (max-width: 640px) {
  .partner-row-6,
  .partner-row-5,
  .ibn-partner-group-large,
  .ibn-partner-group-small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ibn-partner-home-card {
    padding: 22px 18px 24px;
    border-radius: 24px;
  }

  .ibn-partner-logo-card {
    min-height: 84px;
    padding: 14px;
    border-radius: 18px;
  }

  .ibn-partner-logo-card img {
    max-height: 44px;
  }
}

/* =========================================
   LOGO KEMITRAAN 1:1 TANPA MARGIN TAMBAHAN
========================================= */

/* HOME + ABOUT */
.ibn-partner-row,
.ibn-partner-group-large,
.ibn-partner-group-small {
  align-items: stretch;
}

.ibn-partner-logo-card,
.ibn-partner-logo-card.large,
.ibn-partner-logo-card.small {
  aspect-ratio: 1 / 1 !important;
  min-height: unset !important;
  height: auto !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  background: #fffdf8;
}

/* gambar full area */
.ibn-partner-logo-card img,
.ibn-partner-logo-card.large img,
.ibn-partner-logo-card.small img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* kalau mau benar-benar full box dan siap crop */
.ibn-partner-logo-card.is-cover img,
.ibn-partner-logo-card.large.is-cover img,
.ibn-partner-logo-card.small.is-cover img {
  object-fit: cover !important;
}

/* HOME: 6-6-5 tetap rapi */
.partner-row-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px !important;
}

.partner-row-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px !important;
  max-width: none !important;
  margin: 0 !important;
}

/* ABOUT: 17 lebih besar, sisanya sedikit lebih kecil */
.ibn-partner-group-large {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px !important;
}

.ibn-partner-group-small {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px !important;
}

/* responsive */
@media (max-width: 1200px) {
  .partner-row-6,
  .ibn-partner-group-large {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .partner-row-5,
  .ibn-partner-group-small {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .partner-row-6,
  .partner-row-5,
  .ibn-partner-group-large,
  .ibn-partner-group-small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .partner-row-6,
  .partner-row-5,
  .ibn-partner-group-large,
  .ibn-partner-group-small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ibn-partner-logo-card,
  .ibn-partner-logo-card.large,
  .ibn-partner-logo-card.small {
    border-radius: 16px !important;
  }
}

/* ===== HERO BUTTON KONTAK IDEA ===== */
.ibn-hero-contact-trigger-wrap {
  margin-top: 22px;
}

.ibn-contact-idea-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f6b4b;
  border: 1px solid rgba(181, 148, 102, 0.22);
  box-shadow: 0 12px 24px rgba(61, 40, 22, 0.08);
  font-size: 15px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.ibn-contact-idea-btn:hover {
  transform: translateY(-2px);
  background: #0f6b4b;
  color: #fff;
}

/* ===== CONTACT MODAL ===== */
.ibn-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ibn-contact-modal.is-active {
  display: block;
}

.ibn-contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 18, 0.48);
  backdrop-filter: blur(4px);
}

.ibn-contact-modal-card {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100vw - 32px));
  margin: 7vh auto 0;
  border-radius: 30px;
  background: #fcfaf5;
  border: 1px solid rgba(214, 195, 161, 0.75);
  box-shadow: 0 24px 60px rgba(31, 22, 15, 0.22);
  padding: 28px;
}

.ibn-contact-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f3eee5;
  color: #6d5a49;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.ibn-contact-modal-head {
  margin-bottom: 18px;
}

.ibn-contact-modal-head h3 {
  margin: 14px 0 8px;
  color: #0f6b4b;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.ibn-contact-modal-head p {
  margin: 0;
  color: #6f5a49;
  line-height: 1.75;
}

.ibn-contact-list {
  display: grid;
  gap: 12px;
}

.ibn-contact-item {
  display: block;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fffdf8;
  border: 1px solid rgba(214, 195, 161, 0.72);
  transition: all 0.18s ease;
}

.ibn-contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 148, 102, 0.95);
  box-shadow: 0 10px 22px rgba(61, 40, 22, 0.07);
}

.ibn-contact-label {
  display: block;
  margin-bottom: 6px;
  color: #b8791d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ibn-contact-item strong {
  display: block;
  color: #0f6b4b;
  font-size: 18px;
  line-height: 1.4;
}

.ibn-contact-modal-action {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.ibn-contact-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .ibn-contact-modal-card {
    padding: 22px 18px;
    border-radius: 24px;
    margin-top: 9vh;
  }

  .ibn-contact-item strong {
    font-size: 16px;
  }

  .ibn-contact-modal-action .btn {
    width: 100%;
    justify-content: center;
  }
}

.ibn-contact-list{
    display:grid;
    gap:14px;
    margin-top:22px;
}

.ibn-contact-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:22px 20px;
    border:1.5px solid #dcc9a6;
    border-radius:24px;
    background:#f7f4ee;
    text-decoration:none;
    transition:all .25s ease;
}

.ibn-contact-item:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(15,107,75,.08);
}

.ibn-contact-main{
    display:flex;
    flex-direction:column;
    gap:8px;
    min-width:0;
    flex:1;
}

.ibn-contact-label{
    font-size:14px;
    font-weight:800;
    letter-spacing:.08em;
    color:#6e5a47;
    text-transform:uppercase;
}

.ibn-contact-main strong{
    font-size:18px;
    line-height:1.4;
    color:#0f6b4b;
    font-weight:800;
    word-break:break-word;
}

.ibn-contact-icon{
    width:54px;
    height:54px;
    min-width:54px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid rgba(220,201,166,.9);
}

.ibn-contact-icon img{
    width:28px;
    height:28px;
    object-fit:contain;
    display:block;
}

@media (max-width: 767px){
    .ibn-contact-item{
        padding:18px 16px;
        border-radius:20px;
    }

    .ibn-contact-main strong{
        font-size:16px;
    }

    .ibn-contact-icon{
        width:46px;
        height:46px;
        min-width:46px;
        border-radius:14px;
    }

    .ibn-contact-icon img{
        width:24px;
        height:24px;
    }
}

.ibn-contact-list{
    display:grid;
    gap:14px;
    margin-top:22px;
}

.ibn-contact-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:22px 20px;
    border:1.5px solid #dcc9a6;
    border-radius:24px;
    background:#f7f4ee;
    text-decoration:none;
    transition:all .25s ease;
}

.ibn-contact-item:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(15,107,75,.08);
}

.ibn-contact-main{
    display:flex;
    flex-direction:column;
    gap:8px;
    min-width:0;
    flex:1;
}

.ibn-contact-label{
    font-size:14px;
    font-weight:800;
    letter-spacing:.08em;
    color:#6e5a47;
    text-transform:uppercase;
}

.ibn-contact-main strong{
    font-size:18px;
    line-height:1.4;
    color:#0f6b4b;
    font-weight:800;
    word-break:break-word;
}

.ibn-contact-icon{
    width:54px;
    height:54px;
    min-width:54px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid rgba(220,201,166,.9);
}

.ibn-contact-icon img{
    width:28px;
    height:28px;
    object-fit:contain;
    display:block;
}

@media (max-width: 767px){
    .ibn-contact-item{
        padding:18px 16px;
        border-radius:20px;
    }

    .ibn-contact-main strong{
        font-size:16px;
    }

    .ibn-contact-icon{
        width:46px;
        height:46px;
        min-width:46px;
        border-radius:14px;
    }

    .ibn-contact-icon img{
        width:24px;
        height:24px;
    }
}

.ibn-hero-contact-trigger-wrap{
  margin-top:22px;
}

.ibn-contact-idea-btn{
  appearance:none;
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  background:#ffffff;
  color:#0f6b4b;
  border:1px solid rgba(181,148,102,.22);
  box-shadow:0 12px 24px rgba(61,40,22,.08);
  font-size:15px;
  font-weight:800;
  transition:all .2s ease;
}

.ibn-contact-idea-btn:hover{
  transform:translateY(-2px);
  background:#0f6b4b;
  color:#fff;
}

body.ibn-contact-modal-open{
  overflow:hidden;
}

.ibn-contact-modal{
  position:fixed;
  inset:0;
  z-index:10000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:all .22s ease;
}

.ibn-contact-modal.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.ibn-contact-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(16,18,17,.56);
  backdrop-filter:blur(4px);
}

.ibn-contact-modal-card{
  position:relative;
  z-index:2;
  width:min(560px, calc(100vw - 32px));
  margin:6vh auto 0;
  border-radius:30px;
  background:#fcfaf5;
  border:1px solid rgba(214,195,161,.75);
  box-shadow:0 24px 60px rgba(31,22,15,.22);
  padding:28px;
}

.ibn-contact-modal-close{
  position:absolute;
  top:14px;
  right:16px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#f3eee5;
  color:#6d5a49;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.ibn-contact-modal-head{
  margin-bottom:18px;
}

.ibn-contact-modal-head h3{
  margin:14px 0 8px;
  color:#0f6b4b;
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.08;
}

.ibn-contact-modal-head p{
  margin:0;
  color:#6f5a49;
  line-height:1.75;
}

.ibn-contact-list{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.ibn-contact-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px 20px;
  border:1.5px solid #dcc9a6;
  border-radius:24px;
  background:#f7f4ee;
  text-decoration:none;
  transition:all .25s ease;
}

.ibn-contact-item:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(15,107,75,.08);
}

.ibn-contact-main{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
  flex:1;
}

.ibn-contact-label{
  display:block;
  margin-bottom:6px;
  color:#6e5a47;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ibn-contact-main strong{
  display:block;
  font-size:18px;
  line-height:1.4;
  color:#0f6b4b;
  font-weight:800;
  word-break:break-word;
}

.ibn-contact-icon{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid rgba(220,201,166,.9);
  flex-shrink:0;
}

.ibn-contact-icon svg{
  width:28px;
  height:28px;
  display:block;
  color:#0f6b4b;
  fill:currentColor;
  stroke:none;
  margin:auto;
}

.ibn-contact-modal-action{
  margin-top:18px;
  display:flex;
  justify-content:flex-start;
}

.ibn-contact-modal-action .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.ibn-contact-wa-icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.ibn-contact-wa-icon svg{
  width:20px;
  height:20px;
  display:block;
  color:#fff;
  fill:currentColor;
  stroke:none;
  margin:auto;
}

@media (max-width:640px){
  .ibn-contact-modal-card{
    padding:22px 18px;
    border-radius:24px;
    margin-top:9vh;
  }

  .ibn-contact-item{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:110px;
  padding:22px 96px 22px 20px; /* kanan dibesarkan agar ada ruang icon */
  border:1.5px solid #dcc9a6;
  border-radius:24px;
  background:#f7f4ee;
  text-decoration:none;
  transition:all .25s ease;
}

.ibn-contact-icon{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-10%); /* dibuat sedikit lebih ke bawah */
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid rgba(220,201,166,.9);
  flex-shrink:0;
}

.ibn-contact-icon svg{
  width:26px;
  height:26px;
  display:block;
  color:#0f6b4b;
  fill:currentColor;
  stroke:none;
  margin:0;
}

  .ibn-contact-modal-action .btn{
    width:100%;
    justify-content:center;
  }
}

@media (max-width:640px){
  .ibn-contact-item{
    min-height:96px;
    padding:18px 82px 18px 16px;
    border-radius:20px;
  }

  .ibn-contact-icon{
    right:16px;
    width:48px;
    height:48px;
    min-width:48px;
    border-radius:16px;
    transform:translateY(-40%);
  }

  .ibn-contact-icon svg{
    width:22px;
    height:22px;
  }
}

.ibn-hero-contact-trigger-wrap{
  margin-top:22px;
}

.ibn-contact-idea-btn{
  appearance:none;
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  background:#ffffff;
  color:#0f6b4b;
  border:1px solid rgba(181,148,102,.22);
  box-shadow:0 12px 24px rgba(61,40,22,.08);
  font-size:15px;
  font-weight:800;
  transition:all .2s ease;
}

.ibn-contact-idea-btn:hover{
  transform:translateY(-2px);
  background:#0f6b4b;
  color:#fff;
}

body.ibn-contact-modal-open{
  overflow:hidden;
}

.ibn-contact-modal{
  position:fixed;
  inset:0;
  z-index:10000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:all .22s ease;
}

.ibn-contact-modal.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.ibn-contact-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(16,18,17,.56);
  backdrop-filter:blur(4px);
}

.ibn-contact-modal-card{
  position:relative;
  z-index:2;
  width:min(560px, calc(100vw - 32px));
  margin:6vh auto 0;
  border-radius:30px;
  background:#fcfaf5;
  border:1px solid rgba(214,195,161,.75);
  box-shadow:0 24px 60px rgba(31,22,15,.22);
  padding:28px;
}

.ibn-contact-modal-close{
  position:absolute;
  top:14px;
  right:16px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#f3eee5;
  color:#6d5a49;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.ibn-contact-modal-head{
  margin-bottom:18px;
}

.ibn-contact-modal-head h3{
  margin:14px 0 8px;
  color:#0f6b4b;
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.08;
}

.ibn-contact-modal-head p{
  margin:0;
  color:#6f5a49;
  line-height:1.75;
}

.ibn-contact-list{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.ibn-contact-item{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:110px;
  padding:22px 96px 22px 20px;
  border:1.5px solid #dcc9a6;
  border-radius:24px;
  background:#f7f4ee;
  text-decoration:none;
  transition:all .25s ease;
}

.ibn-contact-item:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(15,107,75,.08);
}

.ibn-contact-main{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
  flex:1;
}

.ibn-contact-label{
  display:block;
  margin-bottom:6px;
  color:#6e5a47;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ibn-contact-main strong{
  display:block;
  font-size:18px;
  line-height:1.4;
  color:#0f6b4b;
  font-weight:800;
  word-break:break-word;
}

.ibn-contact-icon{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-38%);
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid rgba(220,201,166,.9);
  flex-shrink:0;
}

.ibn-contact-icon svg{
  width:26px;
  height:26px;
  display:block;
  color:#0f6b4b;
  fill:currentColor;
  stroke:none;
  margin:0;
}

.ibn-contact-modal-action{
  margin-top:18px;
  display:flex;
  justify-content:flex-start;
}

.ibn-contact-modal-action .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.ibn-contact-wa-icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.ibn-contact-wa-icon svg{
  width:20px;
  height:20px;
  display:block;
  color:#fff;
  fill:currentColor;
  stroke:none;
  margin:0;
}

@media (max-width:640px){
  .ibn-contact-modal-card{
    width:min(420px, calc(100vw - 20px));
    padding:20px 16px;
    border-radius:24px;
    margin-top:7vh;
  }

  .ibn-contact-modal-head h3{
    font-size:clamp(24px, 7vw, 34px);
  }

  .ibn-contact-modal-head p{
    font-size:15px;
    line-height:1.6;
  }

  .ibn-contact-list{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:12px;
  }

  .ibn-contact-item{
    min-height:108px;
    padding:14px;
    border-radius:20px;
    justify-content:center;
    align-items:center;
    text-align:center;
  }

  .ibn-contact-main{
    display:none;
  }

  .ibn-contact-icon{
    position:static;
    transform:none;
    width:56px;
    height:56px;
    min-width:56px;
    border-radius:18px;
  }

  .ibn-contact-icon svg{
    width:28px;
    height:28px;
  }

  .ibn-contact-modal-action{
    margin-top:16px;
    justify-content:center;
  }

  .ibn-contact-modal-action .btn{
    width:auto;
    min-width:210px;
  }
}
/* ================================
   FIX HEADER MOBILE IDEABORNEO
================================ */

/* default desktop */
.mobile-menu-toggle,
.mobile-nav-panel,
.mobile-nav-overlay {
  display: none;
}

/* ===== MOBILE / TABLET ===== */
@media (max-width: 991px) {
  /* header container */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #f3efe6;
    border-bottom: 1px solid #ddd4c3;
  }

  .site-header .header-inner,
  .site-header .header-inner.header-inner-bilingual {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 74px;
    padding: 12px 16px;
    position: relative;
  }

  /* logo */
  .site-header .brand-wrap,
  .site-header .site-branding,
  .site-header .site-logo {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
  }

  .site-header .custom-logo-link,
  .site-header .site-logo a {
    display: inline-flex;
    align-items: center;
    max-width: 180px;
  }

  .site-header .custom-logo,
  .site-header .custom-logo-link img,
  .site-header .site-logo img {
    width: auto !important;
    height: 42px !important;
    max-height: 42px !important;
    max-width: 170px !important;
    object-fit: contain;
    display: block;
  }

  /* tombol hamburger */
  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #ddd4c3;
    border-radius: 16px;
    background: #fff;
    color: #4a3828;
    flex: 0 0 46px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    position: relative;
    z-index: 10001;
  }

  .mobile-menu-toggle svg,
  .mobile-menu-toggle i {
    width: 22px;
    height: 22px;
    font-size: 22px;
  }

  /* overlay */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.28);
    z-index: 9997;
  }

  .mobile-nav-overlay.active {
    display: block;
  }

  /* panel menu mobile */
  .mobile-nav-panel {
    display: block;
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #f7f4ed;
    border: 1px solid #e1d7c7;
    border-radius: 28px;
    padding: 18px;
    overflow-y: auto;
    box-shadow: 0 18px 50px rgba(0,0,0,0.18);
    z-index: 9998;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    pointer-events: none;
  }

  .mobile-nav-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* language switcher di panel */
  .mobile-nav-panel .lang-switcher,
  .mobile-nav-panel .mobile-lang-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ddd4c3;
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .mobile-nav-panel .lang-switcher a,
  .mobile-nav-panel .mobile-lang-switcher a {
    min-width: 82px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    color: #8b7c6d;
    background: transparent;
  }

  .mobile-nav-panel .lang-switcher a.active,
  .mobile-nav-panel .mobile-lang-switcher a.active {
    background: #1f67b6;
    color: #fff;
    box-shadow: 0 10px 24px rgba(31,103,182,0.25);
  }

  /* list menu mobile */
  .mobile-nav-panel ul,
  .mobile-nav-panel .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #e1d7c7;
    border-radius: 28px;
    padding: 14px 18px;
  }

  .mobile-nav-panel ul li,
  .mobile-nav-panel .mobile-menu-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #efe7da;
  }

  .mobile-nav-panel ul li:last-child,
  .mobile-nav-panel .mobile-menu-list li:last-child {
    border-bottom: none;
  }

  .mobile-nav-panel ul li a,
  .mobile-nav-panel .mobile-menu-list li a {
    display: block;
    padding: 18px 8px;
    font-size: 18px;
    font-weight: 700;
    color: #2f2924;
    text-decoration: none;
  }

  /* tombol WA di bawah panel */
  .mobile-nav-panel .mobile-contact-btn,
  .mobile-nav-panel .btn-mobile-contact {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 64px;
    border-radius: 999px;
    background: #1f7a49;
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    margin-top: 16px;
    box-shadow: 0 14px 28px rgba(31,122,73,0.22);
  }
}

/* =========================
   ABOUT PAGE - OFFICE MAPS
========================= */
.about-ibn-location-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.about-ibn-map-card {
  background: #f7f3eb;
  border: 1px solid rgba(176, 134, 74, 0.18);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 760px;
}

.about-ibn-map-embed-wrap {
  position: relative;
  flex: 1;
  min-height: 580px;
}

.about-ibn-map-embed {
  width: 100%;
  height: 100%;
  min-height: 580px;
  border: 0;
  display: block;
}

.about-ibn-map-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: #fffdf8;
  border-top: 1px solid rgba(176, 134, 74, 0.14);
}

.about-ibn-map-card-copy h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.15;
  color: #0f6b4c;
}

.about-ibn-map-card-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #6b5b4a;
}

.about-ibn-map-btn,
.about-ibn-location-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #0f6b4c;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all .25s ease;
}

.about-ibn-map-btn:hover,
.about-ibn-location-link:hover {
  background: #0c5a40;
  color: #fff;
}

.about-ibn-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-ibn-location-card {
  background: #f7f3eb;
  border: 1px solid rgba(176, 134, 74, 0.18);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.about-ibn-location-photo.is-map {
  position: relative;
  min-height: 200px;
  background: #efe8db;
  overflow: hidden;
}

.about-ibn-location-map {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
  display: block;
}

.about-ibn-location-copy {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.about-ibn-location-copy h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  color: #0f6b4c;
}

.about-ibn-location-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #6b5b4a;
}

.about-ibn-location-link {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 1100px) {
  .about-ibn-location-layout {
    grid-template-columns: 1fr;
  }

  .about-ibn-map-card {
    min-height: auto;
  }

  .about-ibn-map-embed,
  .about-ibn-map-embed-wrap {
    min-height: 460px;
  }
}

@media (max-width: 767px) {
  .about-ibn-location-grid {
    grid-template-columns: 1fr;
  }

  .about-ibn-map-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-ibn-map-btn {
    width: 100%;
  }
}

/* =========================
   ARTICLE PAGE
========================= */

.article-page,
.single-article{
    padding:80px 0;
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
    margin-top:40px;
}

.article-card{
    background:#f7f3ec;
    border-radius:32px;
    overflow:hidden;
    border:1px solid #e5d6bf;
}

.article-thumb img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
    display:block;
}

.article-content{
    padding:24px;
}

.article-date{
    font-size:14px;
    color:#8b6b47;
}

.article-card h2{
    font-size:28px;
    line-height:1.2;
    margin:12px 0;
}

.article-card h2 a{
    text-decoration:none;
    color:#0d5c3f;
}

.article-link{
    display:inline-flex;
    margin-top:16px;
    color:#0d5c3f;
    font-weight:700;
}

.single-hero{
    margin-bottom:40px;
}

.single-hero h1{
    font-size:64px;
    line-height:1.1;
    color:#0d5c3f;
}

.single-thumbnail img{
    width:100%;
    border-radius:32px;
    margin-bottom:40px;
}

.single-content{
    max-width:900px;
    font-size:20px;
    line-height:1.9;
}

.single-content h2,
.single-content h3{
    color:#0d5c3f;
}

@media(max-width:991px){

    .article-grid{
        grid-template-columns:1fr;
    }

    .single-hero h1{
        font-size:42px;
    }

}

.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.perpage-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.perpage-selector span {
    color: #666;
    margin-right: 4px;
}

.perpage-btn {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.perpage-btn:hover {
    border-color: #2d6a4f;
    color: #2d6a4f;
}

.perpage-btn.active {
    background-color: #2d6a4f;
    border-color: #2d6a4f;
    color: #fff;
    font-weight: 600;
}
/* =========================================================
   Biomassa Machine Page
========================================================= */
.biomass-page,
.biomass-story-section,
.biomass-process-section,
.biomass-catalog-section,
.biomass-cta-section {
  position: relative;
}

.biomass-hero-section {
  padding: 46px 0 34px;
}

.biomass-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.biomass-hero-copy,
.biomass-hero-photo,
.biomass-process-wrap,
.biomass-cta-card {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(61, 40, 22, 0.08);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
}

.biomass-hero-copy {
  padding: clamp(30px, 4.5vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
}

.biomass-hero-copy h1 {
  margin: 18px 0 16px;
  max-width: 760px;
  font-size: clamp(2.45rem, 5vw, 5.35rem);
}

.biomass-hero-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.biomass-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.biomass-hero-photo {
  overflow: hidden;
  min-height: 560px;
  position: relative;
}

.biomass-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.biomass-photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(61, 40, 22, 0.08);
  backdrop-filter: blur(12px);
}

.biomass-photo-caption strong {
  color: var(--heading);
  font-size: 0.98rem;
}

.biomass-photo-caption span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: right;
}

.biomass-story-section,
.biomass-process-section,
.biomass-catalog-section,
.biomass-cta-section {
  padding: 44px 0;
}

.biomass-section-head {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 24px;
}

.biomass-section-head h2,
.biomass-process-copy h2,
.biomass-cta-card h2 {
  font-size: clamp(2rem, 3.2vw, 3.55rem);
}

.biomass-section-head p,
.biomass-process-copy p,
.biomass-cta-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.biomass-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.biomass-journey-card,
.biomass-product-card,
.biomass-process-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(61, 40, 22, 0.08);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.biomass-journey-image,
.biomass-product-image {
  background: linear-gradient(135deg, #f7efe5, #dfc7ac);
  overflow: hidden;
}

.biomass-journey-image img,
.biomass-product-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.26s ease;
}

.biomass-journey-image img {
  height: 250px;
}

.biomass-product-image img {
  height: 260px;
}

.biomass-journey-card:hover img,
.biomass-product-card:hover img {
  transform: scale(1.035);
}

.biomass-journey-body,
.biomass-product-body {
  padding: 24px;
}

.biomass-journey-body span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(123, 84, 52, 0.11);
  color: var(--accent-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.biomass-journey-body h3,
.biomass-product-body h3,
.biomass-process-card h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
}

.biomass-journey-body p,
.biomass-product-body p,
.biomass-process-card p {
  color: var(--muted);
}

.biomass-process-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  padding: clamp(26px, 4vw, 44px);
}

.biomass-process-copy {
  align-self: center;
  display: grid;
  gap: 14px;
}

.biomass-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.biomass-process-card {
  box-shadow: none;
  padding: 22px;
}

.biomass-process-card strong {
  display: inline-flex;
  margin-bottom: 16px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c5536, #5b3d26);
  color: #fff;
  font-size: 0.9rem;
}

.biomass-catalog-head {
  margin-bottom: 26px;
}

.biomass-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.biomass-product-card {
  display: flex;
  flex-direction: column;
}

.biomass-product-image {
  display: block;
}

.biomass-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.biomass-product-body .term-row {
  margin-bottom: 12px;
}

.biomass-product-body h3 {
  font-size: 1.42rem;
}

.biomass-spec-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.biomass-spec-list div {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(61, 40, 22, 0.08);
}

.biomass-spec-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.biomass-spec-list strong {
  color: var(--heading);
  font-size: 0.9rem;
  line-height: 1.35;
}

.biomass-feature-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.biomass-feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.biomass-feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.72em;
}

.biomass-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.biomass-card-actions .btn {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.biomass-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
}

.biomass-cta-card > div {
  display: grid;
  gap: 14px;
}

.biomass-single-section .gallery-main img {
  background: linear-gradient(135deg, #f7efe5, #dfc7ac);
}

.biomass-single-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.03rem;
}

@media (max-width: 1024px) {
  .biomass-hero-grid,
  .biomass-process-wrap,
  .biomass-cta-card {
    grid-template-columns: 1fr;
  }

  .biomass-journey-grid,
  .biomass-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .biomass-hero-section {
    padding-top: 24px;
  }

  .biomass-hero-copy,
  .biomass-hero-photo,
  .biomass-hero-photo img {
    min-height: auto;
  }

  .biomass-hero-photo img {
    height: 360px;
  }

  .biomass-photo-caption {
    position: static;
    margin: -18px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .biomass-photo-caption span {
    text-align: left;
  }

  .biomass-journey-grid,
  .biomass-process-grid,
  .biomass-product-grid {
    grid-template-columns: 1fr;
  }

  .biomass-spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .biomass-card-actions .btn,
  .biomass-hero-actions .btn,
  .biomass-cta-card .btn {
    width: 100%;
  }
}

/* === Biomassa Machine Catalog - List Layout === */

.biomass-product-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
}

.biomass-product-card {
  display: grid !important;
  grid-template-columns: 38% 62%;
  flex-direction: unset !important;
  min-height: 330px;
  border-radius: 28px;
  overflow: hidden;
}

.biomass-product-image {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 330px;
  background: #ffffff !important;
}

.biomass-product-image img {
  width: 100%;
  height: 100% !important;
  max-height: 330px;
  object-fit: contain !important;
  padding: 24px;
  background: #ffffff;
}

.biomass-product-card:hover img {
  transform: none !important;
}

.biomass-product-body {
  padding: 34px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.biomass-product-body h3 {
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.biomass-product-body p {
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 720px;
}

.biomass-feature-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
}

.biomass-card-actions {
  margin-top: 24px;
  padding-top: 0;
}

/* Mobile */
@media (max-width: 780px) {
  .biomass-product-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .biomass-product-image {
    min-height: 260px;
  }

  .biomass-product-image img {
    max-height: 260px;
    padding: 18px;
  }

  .biomass-product-body {
    padding: 24px !important;
  }

  .biomass-feature-list {
    grid-template-columns: 1fr;
  }

  .biomass-product-body h3 {
    font-size: 1.45rem;
  }
}
