/* =================================================================
   METAL WORKS — Premium industrial theme stylesheet
   Author: @snapbyedy
   Palette: Graphite · Charcoal · Steel Gray · Molten Orange · Concrete
   Type: Manrope (display) + Inter (body) + mono numerals
   Character: industrial · masculine · corporate · high-trust · minimal
   ================================================================= */

:root {
  --concrete:    var(--bg-cream, #F4F5F6);     /* cool concrete white */
  --concrete-2:  #FAFAFB;
  --white:       #FFFFFF;
  --ink:         var(--text-dark, #16181B);     /* graphite near-black */
  --graphite:    var(--bg-dark, #16181B);
  --graphite-2:  #20242A;
  --steel:       #3A4047;
  --steel-line:  #2C3137;
  --accent:      var(--accent, #E2581E);        /* molten orange */
  --accent-2:    #C8481296;
  --accent-deep: #BE4A14;
  --stone:       #6A7077;                         /* muted text */
  --stone-light: #98A0A8;
  --line:        #E1E4E7;                         /* cool hairline */
  --line-2:      #ECEEF0;
  --dark:        var(--bg-dark, #16181B);
  --text-muted:  var(--stone);
  --border:      var(--line);

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 60px);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius:    8px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(22,24,27,.06), 0 2px 8px rgba(22,24,27,.04);
  --shadow:    0 8px 24px rgba(22,24,27,.08);
  --shadow-lg: 0 24px 60px rgba(22,24,27,.16);

  --ff-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-mono:    ui-monospace, "SFMono-Regular", "JetBrains Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(.22,.61,.36,1);
  --nav-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--accent); color: #fff; }

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

body {
  font-family: var(--ff-body);
  background: var(--concrete);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: var(--ff-display); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; color: var(--ink); }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }

/* ---------- Section atoms ---------- */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono);
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
}
.section-label::before {
  content: ""; width: 9px; height: 9px; background: var(--accent); display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* square marker */
}
.section-label.light { color: #F0975F; }
.section-label.light::before { background: var(--accent); }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-top: 18px;
  color: var(--ink);
  letter-spacing: -.03em;
}
.section-title.light { color: #fff; }

.section-divider { width: 48px; height: 3px; background: var(--accent); margin: 22px 0; }
.section-desc { color: var(--stone); font-size: 16px; line-height: 1.7; max-width: 540px; }

/* Buttons — squared, industrial */
.hero-cta, .cta-button, .consult-cta, .home-blog-all, .btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-body); font-weight: 600; font-size: 14.5px;
  padding: 15px 28px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff; border: 1.5px solid var(--accent);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
  cursor: pointer; letter-spacing: .01em;
}
.hero-cta:hover, .cta-button:hover, .consult-cta:hover, .home-blog-all:hover, .btn-primary:hover {
  background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px);
}
.arrow-icon, .arrow-circle {
  width: 26px; height: 26px; border-radius: var(--radius-xs); background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  transition: transform .25s var(--ease);
}
.hero-cta:hover .arrow-icon, .cta-button:hover .arrow-icon, .consult-cta:hover .arrow-circle { transform: translateX(3px); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar { position: absolute; top: 0; left: 0; right: 0; z-index: 60; transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease); }
.navbar-inner { max-width: var(--maxw); margin: 0 auto; padding: 16px var(--gutter); display: flex; align-items: center; gap: 28px; height: var(--nav-h); }
.navbar-logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 800; font-size: 20px; letter-spacing: -.03em; color: var(--ink); text-transform: uppercase; }
.navbar-logo img { height: 34px; width: auto; }
.logo-r { width: 36px; height: 36px; border-radius: var(--radius-xs); background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 19px; }

.navbar-menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.navbar-menu > a, .nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 5px; padding: 9px 15px; border-radius: var(--radius-xs);
  font-size: 14px; font-weight: 500; color: var(--ink); transition: color .2s, background .2s; cursor: pointer;
}
.navbar-menu > a:hover, .nav-dropdown-toggle:hover, .navbar-menu > a.active, .nav-dropdown-toggle.active { color: var(--accent); }

.navbar-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 600; background: var(--ink); color: #fff; transition: all .25s var(--ease); letter-spacing: .01em;
}
.navbar-cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 7px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .24s var(--ease); z-index: 70;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item { display: block; padding: 10px 14px; border-radius: var(--radius-xs); font-size: 14px; color: var(--ink); transition: all .18s; }
.nav-dropdown-item:hover { background: var(--concrete); color: var(--accent); padding-left: 18px; }
.nav-dropdown-item.dropdown-all { color: var(--accent); font-weight: 600; }

.navbar-toggle { display: none; background: none; border: 0; color: var(--ink); padding: 6px; }

.navbar.scrolled { position: fixed; background: rgba(255,255,255,.92); backdrop-filter: blur(12px) saturate(140%); box-shadow: 0 1px 0 var(--line), 0 8px 24px -18px rgba(22,24,27,.4); }
.navbar.scrolled .navbar-inner { height: 66px; }
.navbar.hide-up { transform: translateY(-100%); }

/* Navbar over dark hero */
.hero-wrap .navbar .navbar-logo, .hero-wrap .navbar .navbar-menu > a, .hero-wrap .navbar .nav-dropdown-toggle { color: #fff; }
.hero-wrap .navbar .navbar-menu > a:hover, .hero-wrap .navbar .nav-dropdown-toggle:hover, .hero-wrap .navbar .navbar-menu > a.active { color: var(--accent); }
.hero-wrap .navbar .navbar-cta { background: var(--accent); color: #fff; }
.hero-wrap .navbar .navbar-cta:hover { background: #fff; color: var(--ink); }
.hero-wrap .navbar .navbar-toggle { color: #fff; }
.hero-wrap .navbar.scrolled .navbar-logo, .hero-wrap .navbar.scrolled .navbar-menu > a, .hero-wrap .navbar.scrolled .nav-dropdown-toggle { color: var(--ink); }
.hero-wrap .navbar.scrolled .navbar-menu > a.active, .hero-wrap .navbar.scrolled .navbar-menu > a:hover, .hero-wrap .navbar.scrolled .nav-dropdown-toggle:hover { color: var(--accent); }
.hero-wrap .navbar.scrolled .navbar-cta { background: var(--ink); color: #fff; }
.hero-wrap .navbar.scrolled .navbar-cta:hover { background: var(--accent); }
.hero-wrap .navbar.scrolled .navbar-toggle { color: var(--ink); }

/* =====================================================
   HERO
   ===================================================== */
.hero-wrap { position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: hidden; background: var(--graphite); }
.hero-wrap-bg { position: absolute; inset: 0; z-index: 0; }
.hero-wrap-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) contrast(1.05); }
.hero-wrap::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,17,20,.7) 0%, rgba(15,17,20,.45) 45%, rgba(15,17,20,.92) 100%),
    rgba(15,17,20, var(--hero-overlay, .6));
}
/* blueprint grid overlay */
.hero-wrap::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) contrast(1.05); }
.hero-slide-overlay { position: absolute; inset: 0; background: rgba(15,17,20,.35); }

.hero-content { position: relative; z-index: 5; margin-top: auto; margin-bottom: clamp(52px, 9vh, 116px); max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }
.hero-slide-text { display: none; }
.hero-slide-text.active { display: block; }
.hero-title { color: #fff; font-size: clamp(38px, 6.2vw, 82px); font-weight: 800; line-height: 1.02; max-width: 17ch; letter-spacing: -.035em; animation: heroUp .8s var(--ease) both; }
.hero-divider { width: 60px; height: 3px; background: var(--accent); margin: 26px 0; animation: heroUp .8s .12s var(--ease) both; }
.hero-subtitle { color: rgba(255,255,255,.78); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.7; max-width: 56ch; animation: heroUp .8s .2s var(--ease) both; }
.hero-content .hero-cta { margin-top: 34px; animation: heroUp .8s .3s var(--ease) both; }
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.hero-dots { display: flex; gap: 8px; margin-top: 32px; }
.hero-dot { width: 22px; height: 4px; border-radius: 0; border: 0; background: rgba(255,255,255,.3); transition: all .25s; }
.hero-dot.active { background: var(--accent); width: 38px; }

.hero-wrap .scroll-cue { position: absolute; z-index: 5; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.55); font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-wrap .scroll-cue span { width: 1px; height: 36px; background: linear-gradient(rgba(255,255,255,.5), transparent); animation: cue 2s infinite; }
@keyframes cue { 0%,100% { opacity: .25; } 50% { opacity: 1; } }

/* =====================================================
   PAGE HERO (inner)
   ===================================================== */
.page-hero-wrap { position: relative; background: var(--graphite); padding-top: var(--nav-h); }
.page-hero-wrap::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 80%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 80%);
}
.page-hero { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; padding: clamp(46px, 7vw, 86px) var(--gutter) clamp(44px, 6vw, 74px); }
.page-hero-breadcrumb { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-mono); font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.5); margin-bottom: 22px; }
.page-hero-breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--accent); }
.page-hero-breadcrumb .sep { opacity: .4; }
.page-hero-title { color: #fff; font-size: clamp(34px, 5.4vw, 62px); font-weight: 800; letter-spacing: -.035em; animation: heroUp .8s var(--ease) both; }
.page-hero-desc { color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.7; max-width: 62ch; margin: 20px auto 0; animation: heroUp .8s .12s var(--ease) both; }

/* =====================================================
   ABOUT (home) — overlapping
   ===================================================== */
.about-section { position: relative; margin-top: -64px; z-index: 10; padding: 0 var(--gutter) 0; }
.about-card { max-width: var(--maxw); margin: 0 auto; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: var(--radius-md); padding: clamp(28px, 4vw, 56px); box-shadow: var(--shadow-lg); }
.about-grid { display: grid; grid-template-columns: 220px 1fr; gap: clamp(20px, 4vw, 56px); align-items: start; }
.about-text { font-size: clamp(18px, 2vw, 24px); line-height: 1.5; color: var(--ink); font-weight: 600; letter-spacing: -.015em; }

.performance-section { padding: clamp(72px, 9vw, 124px) var(--gutter); }
.performance-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 92px); align-items: center; }
.performance-left h2 { font-size: clamp(28px, 3.4vw, 46px); margin-top: 18px; }
.performance-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: var(--concrete-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: transform .25s var(--ease), border-color .25s; position: relative; }
.stat-card::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--accent); transition: width .3s var(--ease); }
.stat-card:hover { transform: translateY(-3px); }
.stat-card:hover::before { width: 100%; }
.stat-card-1 { background: var(--graphite); border-color: var(--graphite); }
.stat-card-1 .stat-card-label { color: rgba(255,255,255,.55); }
.stat-card-1 .stat-card-value { color: #fff; }
.stat-card-3 { grid-column: span 2; background: var(--accent); border-color: var(--accent); }
.stat-card-3 .stat-card-label { color: rgba(255,255,255,.82); }
.stat-card-3 .stat-card-value { color: #fff; }
.stat-card-label { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--stone); line-height: 1.4; margin-bottom: 14px; }
.stat-card-value { font-family: var(--ff-display); font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -.04em; color: var(--ink); font-variant-numeric: tabular-nums; }

/* =====================================================
   SERVICES (home, dark)
   ===================================================== */
.services-section { background: var(--graphite); color: #fff; padding: clamp(72px, 9vw, 124px) var(--gutter); margin: 0; position: relative; }
.services-section::before { content: ""; position: absolute; inset: 0; opacity: .4; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 60px 60px; }
.services-header { max-width: var(--maxw); margin: 0 auto 48px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; position: relative; z-index: 2; }
.services-header h2 { margin-top: 18px; }
.services-header-line { width: 180px; max-width: 32vw; height: 1px; background: rgba(255,255,255,.16); }
.services-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); position: relative; z-index: 2; }
.service-card { background: var(--graphite); padding: clamp(30px,3vw,46px) clamp(26px,3vw,38px) clamp(36px,4vw,54px); display: flex; flex-direction: column; gap: 14px; transition: background .25s var(--ease); position: relative; }
.service-card:hover { background: var(--graphite-2); }
.service-card-num { font-family: var(--ff-mono); font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: .05em; }
.service-card-title { font-size: clamp(19px, 1.8vw, 23px); color: #fff; letter-spacing: -.02em; }
.service-card-desc { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.58); }
.service-card::after { content: "→"; position: absolute; right: clamp(26px,3vw,38px); bottom: clamp(26px,3vw,38px); color: var(--accent); font-size: 18px; opacity: 0; transform: translateX(-6px); transition: all .25s var(--ease); }
.service-card:hover::after { opacity: 1; transform: translateX(0); }

/* Services (layanan page) */
.services-main { max-width: var(--maxw); margin: 0 auto; background: var(--graphite); border-radius: var(--radius-md); padding: clamp(40px,6vw,72px) clamp(28px,4vw,56px); color: #fff; }
.services-main-header { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
.services-main-header h2 { margin-top: 16px; }
.services-grid-light { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card-light { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 30px 28px 36px; display: flex; flex-direction: column; gap: 12px; transition: all .25s var(--ease); }
.service-card-light:hover { background: rgba(255,255,255,.07); border-color: var(--accent); transform: translateY(-3px); }
.service-card-light .service-card-title { color: #fff; }
.service-card-light .service-card-desc { color: rgba(255,255,255,.58); }

/* =====================================================
   ADVANTAGE bento (about)
   ===================================================== */
.advantage-section { padding: clamp(72px, 9vw, 124px) 0; }
.advantage-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.advantage-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 224px; gap: 16px; }
.advantage-card { border-radius: var(--radius-md); padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; position: relative; }
.advantage-card.cream { background: var(--white); border: 1px solid var(--line); }
.advantage-card.cream::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.advantage-card.cream:hover::before { transform: scaleX(1); }
.advantage-card.image { background-size: cover; background-position: center; color: #fff; }
.advantage-card.image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(15,17,20,.85)); }
.advantage-card.image .advantage-title, .advantage-card.image .advantage-desc { position: relative; z-index: 2; color: #fff; }
.advantage-card.image .advantage-desc { color: rgba(255,255,255,.8); }
.advantage-card.span-2-rows { grid-row: span 2; }
.advantage-title { font-size: 20px; margin-bottom: 10px; letter-spacing: -.02em; }
.advantage-desc { font-size: 14px; line-height: 1.6; color: var(--stone); }

/* WHY (layanan) */
.why-section { padding: clamp(72px,9vw,124px) 0; }
.why-header { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.why-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.why-card { position: relative; min-height: 360px; border-radius: var(--radius-md); overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 30px; }
.why-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,17,20,.15) 35%, rgba(15,17,20,.9)); }
.why-card-text { position: relative; z-index: 2; color: #fff; font-size: 15px; line-height: 1.65; }

/* SERVICE TYPES (layanan detail) */
.service-types-section { padding: clamp(60px,8vw,100px) 0; }
.service-types-header { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.service-types-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-type-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .25s var(--ease); }
.service-type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-type-img { aspect-ratio: 4/3; overflow: hidden; }
.service-type-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-type-card:hover .service-type-img img { transform: scale(1.05); }
.service-type-body { padding: 24px 26px 28px; }
.service-type-title { font-family: var(--ff-display); font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.02em; }
.service-type-desc { font-size: 14px; color: var(--stone); line-height: 1.6; }

/* SHOWCASE */
.showcase-section { max-width: var(--maxw); margin: 0 auto; background: var(--graphite); border-radius: var(--radius-md); padding: clamp(44px,6vw,80px) clamp(28px,4vw,56px); }
.showcase-header { text-align: center; max-width: 600px; margin: 0 auto 44px; }
.showcase-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.showcase-item { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; }
.showcase-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); filter: grayscale(.2); }
.showcase-item:hover img { transform: scale(1.05); filter: none; }

/* CONSULT */
.consult-section { padding: clamp(60px,8vw,110px) 0; }
.consult-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,72px); align-items: center; }
.consult-title { font-size: clamp(28px,3.4vw,44px); margin: 16px 0 18px; letter-spacing: -.03em; }
.consult-desc { color: var(--stone); font-size: 16px; line-height: 1.75; margin-bottom: 30px; }
.consult-images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consult-img-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.consult-img-item:first-child { grid-column: span 2; aspect-ratio: 16/10; }
.consult-img-item img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-section { padding: clamp(60px,8vw,110px) 0; }
.testimonial-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.testimonial-header { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; margin-bottom: 44px; }
.testimonial-header h2 { margin-top: 16px; }
.testimonial-desc { color: var(--stone); font-size: 15px; line-height: 1.7; max-width: 420px; }
.ts-carousel { position: relative; }
.ts-viewport { overflow: hidden; }
.ts-track { display: flex; transition: transform .5s var(--ease); }
.ts-card { flex: 0 0 calc(100% / var(--ts-perview, 3) - 16px); margin: 0 8px; box-sizing: border-box; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px 34px; transition: border-color .25s, box-shadow .25s, transform .25s; position: relative; }
.ts-card::before { content: ""; position: absolute; top: 0; left: 0; width: 38px; height: 3px; background: var(--accent); }
.ts-card.featured { background: var(--graphite); border-color: var(--graphite); }
.ts-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.ts-card .ts-author { display: flex; align-items: center; gap: 13px; }
.ts-photo, .ts-avatar { width: 50px; height: 50px; border-radius: var(--radius-xs); object-fit: cover; flex: 0 0 auto; }
.ts-avatar { background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; font-size: 20px; }
.ts-name { font-family: var(--ff-display); font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.ts-role { font-size: 13px; color: var(--stone); }
.ts-text { color: var(--ink); font-size: 15px; line-height: 1.74; margin-top: 18px; }
.ts-card.featured .ts-name { color: #fff; }
.ts-card.featured .ts-role { color: rgba(255,255,255,.55); }
.ts-card.featured .ts-text { color: rgba(255,255,255,.82); }
.ts-dots { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.ts-dot { width: 22px; height: 4px; border-radius: 0; border: 0; background: var(--line); transition: all .25s; cursor: pointer; }
.ts-dot.active { background: var(--accent); width: 34px; }
.ts-nav { position: absolute; top: 38%; width: 44px; height: 44px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line); color: var(--ink); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); z-index: 4; }
.ts-prev { left: -10px; } .ts-next { right: -10px; }
.ts-nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =====================================================
   FAQ
   ===================================================== */
.faq-section { padding: clamp(60px,8vw,110px) var(--gutter); }
.faq-container { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.3fr; gap: clamp(36px,6vw,80px); align-items: start; }
.faq-container h2 { margin-top: 16px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 24px; cursor: pointer; transition: border-color .25s, box-shadow .25s; }
.faq-item:hover { border-color: var(--accent); }
.faq-item.active { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; font-family: var(--ff-display); font-weight: 700; font-size: 16.5px; color: var(--ink); letter-spacing: -.01em; }
.faq-icon { flex: 0 0 auto; width: 28px; height: 28px; border-radius: var(--radius-xs); background: var(--concrete); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; transition: transform .3s var(--ease), background .25s, color .25s; }
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; color: var(--stone); font-size: 14.5px; line-height: 1.72; transition: max-height .35s var(--ease), padding .35s var(--ease); }
.faq-item.active .faq-answer { max-height: 420px; padding: 0 0 22px; }

/* =====================================================
   BRANDS / LOGO carousel
   ===================================================== */
.brands-section { padding: clamp(52px,7vw,92px) 0; }
.brands-header { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.brands-header h2 { margin-top: 16px; }
.logo-carousel-wrap, .logo-carousel-static, .logo-carousel-fade { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.lc-marquee-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.lc-marquee-track { display: flex; gap: 0; width: max-content; animation: lc-scroll var(--lc-speed,40s) linear infinite; }
.lc-pause-hover:hover .lc-marquee-track { animation-play-state: paused; }
@keyframes lc-scroll { to { transform: translateX(-50%); } }
.lc-item { flex: 0 0 calc((100vw - 2 * var(--gutter)) / var(--lc-d, 5)); max-width: 220px; display: flex; align-items: center; justify-content: center; padding: 18px 26px; }
.logo-carousel-static, .logo-carousel-fade { display: grid; grid-template-columns: repeat(var(--lc-d,5), 1fr); gap: 18px; }
.logo-carousel-static .lc-item, .logo-carousel-fade .lc-item { flex: none; max-width: none; }
.lc-item img { max-height: 44px; width: auto; object-fit: contain; opacity: .75; transition: opacity .25s, filter .25s; }
.lc-grayscale { filter: grayscale(1); opacity: .5; }
.lc-item:hover img { opacity: 1; filter: none; }

/* =====================================================
   HOME BLOG
   ===================================================== */
.home-blog-section { padding: clamp(60px,8vw,110px) 0; }
.home-blog-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.home-blog-header h2 { margin-top: 14px; }
.home-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.home-blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .25s var(--ease); }
.home-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.home-blog-img { aspect-ratio: 16/10; overflow: hidden; }
.home-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.home-blog-card:hover .home-blog-img img { transform: scale(1.05); }
.home-blog-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--concrete); color: var(--stone-light); }
.home-blog-body { padding: 24px 26px 28px; }
.home-blog-meta { font-family: var(--ff-mono); font-size: 12px; color: var(--stone); letter-spacing: .03em; margin-bottom: 12px; text-transform: uppercase; }
.home-blog-title { font-size: 19px; line-height: 1.3; margin-bottom: 12px; letter-spacing: -.02em; }
.home-blog-excerpt { font-size: 14px; color: var(--stone); line-height: 1.6; margin-bottom: 16px; }
.home-blog-cta { color: var(--accent); font-weight: 600; font-size: 14px; }

/* =====================================================
   BLOG list + sidebar
   ===================================================== */
.blog-section { padding: clamp(50px,7vw,90px) 0; }
.blog-container { display: grid; grid-template-columns: 1fr 320px; gap: clamp(28px,4vw,52px); align-items: start; }
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .25s var(--ease); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--concrete); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px 24px 26px; }
.blog-card-meta { display: flex; gap: 8px; font-family: var(--ff-mono); font-size: 12px; color: var(--stone); margin-bottom: 10px; text-transform: uppercase; }
.blog-card-title { font-size: 18px; line-height: 1.32; margin-bottom: 10px; letter-spacing: -.02em; }
.blog-card-desc { font-size: 13.5px; color: var(--stone); line-height: 1.6; }
.blog-search-info { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 20px; margin-bottom: 22px; font-size: 14px; color: var(--stone); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.blog-clear { color: var(--accent); font-weight: 600; }
.blog-empty { text-align: center; padding: 70px 20px; }
.blog-empty-icon { margin-bottom: 14px; opacity: .4; display: flex; justify-content: center; }
.blog-empty h3 { margin-bottom: 8px; }
.blog-empty p { color: var(--stone); }
.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.blog-pg, .blog-pg-arrow { display: inline-flex; align-items: center; gap: 6px; min-width: 40px; height: 40px; padding: 0 14px; justify-content: center; border-radius: var(--radius-sm); border: 1px solid var(--line); background: #fff; font-size: 14px; font-weight: 600; color: var(--ink); transition: all .2s; }
.blog-pg:hover, .blog-pg-arrow:hover { border-color: var(--accent); color: var(--accent); }
.blog-pg.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.blog-pg-gap { color: var(--stone-light); padding: 0 4px; }
.blog-sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 90px; }
.blog-side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.blog-side-title { font-size: 16px; margin-bottom: 16px; letter-spacing: -.01em; }
.blog-search-form { display: flex; gap: 8px; }
.blog-search-form input { flex: 1; min-width: 0; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: inherit; font-size: 14px; background: var(--concrete-2); }
.blog-search-form input:focus { outline: none; border-color: var(--accent); }
.blog-search-form button { width: 44px; flex: 0 0 auto; border: 0; border-radius: var(--radius-sm); background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; }
.blog-cat-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.blog-cat-list a { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: var(--radius-xs); font-size: 14px; color: var(--ink); transition: all .18s; }
.blog-cat-list a:hover, .blog-cat-list a.active { background: var(--concrete); color: var(--accent); }
.blog-cat-list .cat-count, .cat-count { margin-left: auto; font-family: var(--ff-mono); font-size: 11px; color: var(--stone-light); background: var(--concrete); padding: 1px 9px; border-radius: 3px; }
.cat-children { list-style: none; padding-left: 16px; display: none; }
.cat-node.expanded > .cat-children { display: block; }
.cat-toggle { background: none; border: 0; color: var(--stone); display: inline-flex; padding: 0; transition: transform .2s; }
.cat-node.expanded > .cat-row .cat-toggle { transform: rotate(90deg); }
.cat-bullet { width: 5px; height: 5px; background: var(--accent); display: inline-block; }
.cat-name { flex: 1; }
.blog-recent-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.blog-recent-item { display: flex; gap: 12px; align-items: center; }
.blog-recent-thumb { width: 64px; height: 56px; flex: 0 0 auto; border-radius: var(--radius-sm); overflow: hidden; background: var(--concrete); }
.blog-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-recent-meta h4 { font-size: 13.5px; line-height: 1.35; font-weight: 600; }
.blog-recent-meta time { font-family: var(--ff-mono); font-size: 11px; color: var(--stone); }

/* =====================================================
   SHOP / PRODUK
   ===================================================== */
.shop-wrap { padding: clamp(40px,6vw,70px) 0; }
.shop-container { display: grid; grid-template-columns: 280px 1fr; gap: clamp(24px,3vw,44px); align-items: start; }
.shop-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.shop-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.shop-card-title { font-size: 15px; margin-bottom: 14px; }
.shop-search { display: flex; gap: 8px; }
.shop-search input { flex: 1; min-width: 0; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 14px; background: var(--concrete-2); }
.shop-search button { width: 42px; border: 0; border-radius: var(--radius-sm); background: var(--accent); color: #fff; }
.shop-cat-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.shop-cat-list a { display: flex; gap: 8px; padding: 9px 10px; border-radius: var(--radius-xs); font-size: 14px; transition: all .18s; }
.shop-cat-list a:hover, .shop-cat-list a.active { background: var(--concrete); color: var(--accent); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.shop-toolbar-info { font-family: var(--ff-mono); font-size: 13px; color: var(--stone); }
.shop-toolbar-controls { display: flex; align-items: center; gap: 10px; }
.shop-sort-form select { padding: 9px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: inherit; font-size: 13.5px; background: #fff; }
.shop-view-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.shop-view-toggle a { padding: 8px 11px; color: var(--stone); }
.shop-view-toggle a.active { background: var(--accent); color: #fff; }
.shop-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.shop-products.list { grid-template-columns: 1fr; }
.shop-prod { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .25s var(--ease); display: flex; flex-direction: column; }
.shop-prod:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.shop-prod-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--concrete); }
.shop-prod-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.shop-prod:hover .shop-prod-thumb img { transform: scale(1.05); }
.shop-prod-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--stone-light); }
.shop-prod-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; font-family: var(--ff-mono); font-size: 11px; font-weight: 600; letter-spacing: .04em; padding: 5px 11px; border-radius: 3px; text-transform: uppercase; }
.shop-prod-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shop-prod-title { font-size: 16px; line-height: 1.3; letter-spacing: -.01em; }
.shop-prod-desc { font-size: 13px; color: var(--stone); line-height: 1.55; }
.shop-prod-price { font-family: var(--ff-display); font-weight: 800; font-size: 19px; color: var(--ink); margin-top: auto; font-variant-numeric: tabular-nums; }
.shop-prod-actions { display: flex; gap: 8px; margin-top: 6px; }
.shop-prod-wa, .shop-prod-detail { flex: 1; text-align: center; padding: 10px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; transition: all .2s; }
.shop-prod-detail { border: 1px solid var(--line); color: var(--ink); }
.shop-prod-detail:hover { border-color: var(--accent); color: var(--accent); }
.shop-prod-wa { background: var(--accent); color: #fff; }
.shop-prod-wa:hover { background: var(--accent-deep); }
.shop-empty { text-align: center; padding: 70px 20px; color: var(--stone); }
.shop-empty-icon { opacity: .4; margin-bottom: 12px; display: flex; justify-content: center; }
.shop-help { background: var(--graphite); color: #fff; border-radius: var(--radius); padding: 24px; }
.shop-help-cta { display: inline-block; margin-top: 14px; background: var(--accent); color: #fff; padding: 10px 18px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; }
.shop-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.shop-pg, .shop-pg-arrow { min-width: 40px; height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; font-weight: 600; font-size: 14px; transition: all .2s; }
.shop-pg:hover, .shop-pg-arrow:hover { border-color: var(--accent); color: var(--accent); }
.shop-pg.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.shop-pg-gap { color: var(--stone-light); }

/* Woo detail */
.woo-product-top { padding: 20px 0 50px; }
.woo-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: start; }
.woo-main-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: var(--concrete); }
.woo-main-img img { width: 100%; height: 100%; object-fit: cover; }
.woo-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.woo-thumb { width: 76px; height: 76px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--line); background: var(--concrete); padding: 0; }
.woo-thumb.active { border-color: var(--accent); }
.woo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.woo-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.woo-cat-chip { font-family: var(--ff-mono); font-size: 11px; padding: 5px 12px; border-radius: 3px; background: var(--concrete); color: var(--accent); font-weight: 600; text-transform: uppercase; }
.woo-badge { display: inline-block; background: var(--accent); color: #fff; font-family: var(--ff-mono); font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 3px; margin-bottom: 12px; text-transform: uppercase; }
.woo-title { font-size: clamp(26px,3vw,38px); margin-bottom: 16px; letter-spacing: -.03em; }
.woo-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.woo-price-now { font-family: var(--ff-display); font-weight: 800; font-size: 30px; color: var(--ink); font-variant-numeric: tabular-nums; }
.woo-price-old { font-size: 17px; color: var(--stone-light); text-decoration: line-through; }
.woo-short-desc { color: var(--stone); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.woo-stock { font-family: var(--ff-mono); font-size: 13px; color: var(--stone); margin-bottom: 20px; }
.woo-wa-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #fff; padding: 14px 26px; border-radius: var(--radius-sm); font-weight: 600; }
.woo-wa-cta:hover { background: var(--accent-deep); }
.woo-marketplace { margin-top: 24px; }
.woo-mp-label { font-size: 13px; color: var(--stone); margin-bottom: 10px; }
.woo-mp-list { display: flex; gap: 10px; flex-wrap: wrap; }
.woo-mp-btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 16px; font-size: 14px; font-weight: 600; transition: all .2s; }
.woo-mp-btn:hover { border-color: var(--accent); color: var(--accent); }
.woo-product-desc { padding: 0 0 60px; }
.woo-desc-heading { font-size: 22px; margin-bottom: 18px; }
.woo-desc-body { max-width: 820px; color: var(--ink); line-height: 1.8; }
.woo-desc-body p { margin-bottom: 14px; }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section { padding: clamp(40px,6vw,70px) 0; }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.gallery-filter { padding: 9px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; background: #fff; transition: all .2s; }
.gallery-filter:hover { border-color: var(--accent); color: var(--accent); }
.gallery-filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery-grid { columns: 3; column-gap: 14px; }
.gallery-item { break-inside: avoid; margin-bottom: 14px; border-radius: var(--radius); overflow: hidden; background: var(--concrete); }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.03); }
.gal-hidden { display: none; }
.gal-fade-in { animation: galFade .45s var(--ease) both; }
@keyframes galFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.gallery-loadmore-wrap { text-align: center; margin-top: 36px; }
.gallery-loadmore { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: 14px; transition: all .2s; }
.gallery-loadmore:hover { border-color: var(--accent); color: var(--accent); }
.loadmore-count { font-family: var(--ff-mono); color: var(--stone-light); font-weight: 500; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section { padding: clamp(50px,7vw,90px) var(--gutter); }
.contact-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px,4vw,52px); align-items: stretch; }
.contact-info-card { background: var(--graphite); color: #fff; border-radius: var(--radius-md); padding: clamp(28px,4vw,44px); display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden; }
.contact-info-card::before { content: ""; position: absolute; inset: 0; opacity: .4; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 44px 44px; }
.contact-info-card > * { position: relative; z-index: 2; }
.contact-info-card .section-label { color: #F0975F; }
.contact-info-card h3 { color: #fff; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; flex: 0 0 auto; border-radius: var(--radius-sm); background: rgba(255,255,255,.08); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.contact-info-label { font-family: var(--ff-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 600; color: #fff; }

.flex-block-section h2 { color: var(--ink); }

/* =====================================================
   CTA + FOOTER
   ===================================================== */
.cta-footer-wrap { background: var(--graphite); color: #fff; margin-top: clamp(40px,7vw,90px); padding: clamp(56px,7vw,96px) var(--gutter) 0; position: relative; overflow: hidden; }
.cta-footer-wrap::before { content: ""; position: absolute; inset: 0; opacity: .4; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 60%); mask-image: linear-gradient(180deg, #000, transparent 60%); }
.cta-section { max-width: var(--maxw); margin: 0 auto; text-align: center; padding-bottom: clamp(48px,6vw,72px); position: relative; z-index: 2; }
.cta-title { color: #fff; font-size: clamp(30px,4.6vw,58px); font-weight: 800; letter-spacing: -.035em; }
.cta-desc { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; margin: 20px 0 32px; }
.footer-divider { max-width: var(--maxw); margin: 0 auto; height: 1px; background: rgba(255,255,255,.1); }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: clamp(28px,4vw,64px); padding: clamp(44px,5vw,64px) 0; }
.footer-brand-logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 800; font-size: 22px; color: #fff; text-transform: uppercase; letter-spacing: -.02em; }
.footer-brand-logo img { height: 38px; }
.footer-brand-logo .logo-r { background: var(--accent); }
.footer-col h5 { font-family: var(--ff-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); margin-bottom: 6px; font-weight: 600; }
.footer-col p { color: rgba(255,255,255,.85); font-size: 15px; }
.footer-desc { color: rgba(255,255,255,.6); font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; transition: transform .2s; }
.social-btn:hover { transform: translateY(-3px); }
.social-btn svg { width: 18px; height: 18px; }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0; text-align: center; font-family: var(--ff-mono); font-size: 12.5px; color: rgba(255,255,255,.5); }

/* =====================================================
   WHATSAPP float
   ===================================================== */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wa-float-btn { width: 56px; height: 56px; border-radius: var(--radius); background: #25D366; color: #fff; border: 0; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.55); transition: transform .25s; }
.wa-float-btn:hover { transform: scale(1.05); }
.wa-greeting { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 40px 16px 18px; max-width: 250px; box-shadow: var(--shadow-lg); position: relative; opacity: 0; transform: translateY(10px) scale(.96); pointer-events: none; transition: all .3s var(--ease); }
.wa-greeting.show { opacity: 1; transform: none; pointer-events: auto; }
.wa-greeting-close { position: absolute; top: 8px; right: 10px; background: none; border: 0; font-size: 18px; color: var(--stone-light); line-height: 1; }
.wa-greeting-title { font-family: var(--ff-display); font-weight: 700; font-size: 14.5px; margin-bottom: 3px; }
.wa-greeting-text { font-size: 13px; color: var(--stone); line-height: 1.45; }
.wa-float-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); width: 300px; max-width: calc(100vw - 44px); box-shadow: var(--shadow-lg); overflow: hidden; opacity: 0; transform: translateY(12px) scale(.97); pointer-events: none; transition: all .3s var(--ease); transform-origin: bottom right; }
.wa-float-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.wa-panel-title { background: var(--graphite); color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: 16px; padding: 18px 20px 4px; }
.wa-panel-subtitle { background: var(--graphite); color: rgba(255,255,255,.6); font-size: 12.5px; padding: 0 20px 18px; }
.wa-contact-item { display: flex; gap: 12px; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line-2); transition: background .2s; }
.wa-contact-item:hover { background: var(--concrete); }
.wa-contact-avatar { width: 42px; height: 42px; border-radius: var(--radius-sm); background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.wa-contact-name { font-weight: 600; font-size: 14.5px; }
.wa-contact-role { font-size: 12.5px; color: var(--stone); }

/* =====================================================
   MOBILE NAV
   ===================================================== */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(15,17,20,.6); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: all .3s; z-index: 95; }
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 86vw; background: var(--graphite); color: #fff; z-index: 96; padding: 80px 26px 30px; display: flex; flex-direction: column; gap: 4px; transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; }
.mobile-nav.open { transform: none; }
.mobile-nav > a { color: #fff; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 16px; font-weight: 500; }
.mobile-nav-close { position: absolute; top: 22px; right: 22px; background: rgba(255,255,255,.1); border: 0; color: #fff; width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }

/* =====================================================
   SCROLL REVEAL (subtle)
   ===================================================== */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =====================================================
   Inner-page navbar over dark page-hero
   ===================================================== */
.page-hero-wrap .navbar .navbar-logo, .page-hero-wrap .navbar .navbar-menu > a, .page-hero-wrap .navbar .nav-dropdown-toggle { color: #fff; }
.page-hero-wrap .navbar .navbar-menu > a:hover, .page-hero-wrap .navbar .nav-dropdown-toggle:hover, .page-hero-wrap .navbar .navbar-menu > a.active { color: var(--accent); }
.page-hero-wrap .navbar .navbar-cta { background: var(--accent); color: #fff; }
.page-hero-wrap .navbar .navbar-cta:hover { background: #fff; color: var(--ink); }
.page-hero-wrap .navbar .navbar-toggle { color: #fff; }
.page-hero-wrap .navbar .nav-dropdown-item { color: var(--ink); }
.page-hero-wrap .navbar.scrolled .navbar-logo, .page-hero-wrap .navbar.scrolled .navbar-menu > a, .page-hero-wrap .navbar.scrolled .nav-dropdown-toggle { color: var(--ink); }
.page-hero-wrap .navbar.scrolled .navbar-menu > a:hover, .page-hero-wrap .navbar.scrolled .nav-dropdown-toggle:hover, .page-hero-wrap .navbar.scrolled .navbar-menu > a.active { color: var(--accent); }
.page-hero-wrap .navbar.scrolled .navbar-cta { background: var(--ink); color: #fff; }
.page-hero-wrap .navbar.scrolled .navbar-cta:hover { background: var(--accent); }
.page-hero-wrap .navbar.scrolled .navbar-toggle { color: var(--ink); }

.blog-section, .shop-wrap, .gallery-section, .contact-section, .faq-section, .home-blog-section,
.testimonial-section, .performance-section, .advantage-section, .why-section, .service-types-section,
.consult-section, .brands-section { background: var(--concrete); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .performance-grid, .consult-grid, .faq-container, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .services-grid-light, .home-blog-grid, .service-types-grid, .why-grid, .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-products { grid-template-columns: repeat(2,1fr); }
  .blog-container { grid-template-columns: 1fr; }
  .blog-sidebar, .shop-sidebar { position: static; }
  .woo-top-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .advantage-grid { grid-auto-rows: 200px; }
}
@media (max-width: 860px) {
  .navbar-menu, .navbar-cta { display: none; }
  .navbar-toggle { display: inline-flex; margin-left: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  :root { --nav-h: 66px; }
  .about-grid { grid-template-columns: 1fr; gap: 18px; }
  .services-grid, .services-grid-light, .home-blog-grid, .service-types-grid, .why-grid, .showcase-grid, .shop-products, .shop-products.list, .blog-grid { grid-template-columns: 1fr; }
  .ts-card { flex: 0 0 calc(100% - 16px); }
  .services-header, .testimonial-header, .shop-toolbar { grid-template-columns: 1fr; }
  .services-header-line { display: none; }
  .advantage-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .advantage-card { min-height: 200px; }
  .advantage-card.span-2-rows { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero-content { margin-bottom: 60px; }
  .consult-images { grid-template-columns: 1fr; }
  .consult-img-item:first-child { grid-column: auto; }
  .wa-float { right: 14px; bottom: 14px; }
}
