/* ════════════════════════════════════════════════════
   KONVEKSIMEDIA — PREMIUM B2B DESIGN SYSTEM
   Theme: Minimalist · Elegant · Corporate Trust
   Target: Enterprise Brands & Large Corporations
════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Design Tokens ── */
:root {
  /* Neutrals */
  --ink:      #0B0B0B;
  --ink-2:    #1C1C1C;
  --ink-3:    #333333;
  --muted:    #6E6B65;
  --subtle:   #9E9B96;
  --border:   #E8E5DF;
  --border-d: #2A2A2A;

  /* Backgrounds */
  --bg:       #FFFFFF;
  --bg-warm:  #F9F8F6;
  --bg-dark:  #0B0B0B;
  --bg-dark2: #141414;
  --bg-dark3: #1C1C1C;

  /* Gold accent — used sparingly */
  --gold:     #C4A35A;
  --gold-l:   #D4B878;
  --gold-d:   #A88840;

  /* Typography */
  --font-h: 'Poppins', sans-serif;
  --font-b: 'Inter', sans-serif;

  /* Spacing */
  --pad-section: 112px;
  --pad-sm:       72px;

  /* Radius — very minimal */
  --r:   4px;
  --rl:  8px;
  --rxl: 12px;

  /* Shadows — ultra-subtle */
  --sh:    0 1px 4px rgba(0,0,0,0.06), 0 6px 20px rgba(0,0,0,0.04);
  --shl:   0 2px 8px rgba(0,0,0,0.05), 0 16px 48px rgba(0,0,0,0.09);
  --shxl:  0 4px 16px rgba(0,0,0,0.07), 0 32px 72px rgba(0,0,0,0.12);

  --dur:  0.26s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 16px; line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--sm  { max-width: 840px; }
.container--lg  { max-width: 1400px; }
.container--xl  { max-width: 1600px; }

/* ── Section ── */
.section     { padding: var(--pad-section) 0; }
.section--sm { padding: var(--pad-sm) 0; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; }
p  { line-height: 1.8; }

/* Auto-white text on dark sections */
.dark h1, .dark h2, .dark h3, .dark h4,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: #fff;
}

/* ── Section Label ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-b);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow--light { color: rgba(255,255,255,0.45); }
.eyebrow--light::before { background: rgba(255,255,255,0.35); }

/* ── Gold rule ── */
.gold-rule {
  display: block;
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-h); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--r);
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
}
.btn-lg  { padding: 18px 44px; font-size: 0.95rem; }
.btn-sm  { padding: 10px 22px; font-size: 0.82rem; }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,163,90,0.4); }

.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--bg-warm); transform: translateY(-2px); box-shadow: var(--shl); }

/* ── Logo ── */
.logo {
  font-family: var(--font-h); font-weight: 800;
  font-size: 1.45rem; letter-spacing: -0.03em;
  color: var(--ink);
}
.logo span { color: var(--gold); }
.logo--white { color: #fff; }
.logo--white span { color: var(--gold-l); }

/* ── Divider ── */
hr { border: none; border-top: 1px solid var(--border); margin: 0; }
hr.dark { border-top-color: var(--border-d); }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-up   { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal-up.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX( 36px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.07s; } .d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; } .d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.35s; } .d6 { transition-delay: 0.42s; }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; gap: 48px; }
.nav-links  { display: flex; gap: 36px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em;
  transition: color var(--dur);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; border-radius: 2px; transition: all var(--dur); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════════════
   HERO — PREMIUM DARK
════════════════════════════════ */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(rgba(11, 11, 11, 0.75), rgba(11, 11, 11, 0.75)), url('img/hero_bg.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

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

/* Subtle gradient wash */
.hero-premium::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(196,163,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}

.hero-premium-inner {
  position: relative; z-index: 1;
  padding: 140px 0 80px;
  width: 100%;
}

.hero-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-premium h1 { color: #fff; margin-bottom: 0; }

.hero-subtext {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.8;
  margin-top: 28px;
  margin-bottom: 48px;
}
.hero-subtext strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Clients row below hero headline */
.hero-clients-row {
  display: flex; align-items: center; gap: 20px;
  padding-top: 52px; border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 52px; flex-wrap: wrap;
}
.hero-clients-label { color: rgba(255,255,255,0.3); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.hero-client-chips  { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-client-chip {
  padding: 5px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: rgba(255,255,255,0.5);
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.04em;
  transition: all var(--dur);
}
.hero-client-chip:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }

/* Hero right visual */
.hero-right-visual { display: flex; flex-direction: column; gap: 12px; }

.hero-credential-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rl);
  padding: 28px 32px;
  transition: all var(--dur);
}
.hero-credential-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }

.hcc-label { color: rgba(255,255,255,0.35); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.hcc-value { font-family: var(--font-h); font-weight: 800; font-size: 2.4rem; color: #fff; line-height: 1; margin-bottom: 4px; }
.hcc-desc  { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

.hero-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-mini-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--rl);
  padding: 20px;
  transition: all var(--dur);
}
.hero-mini-card:hover { background: rgba(196,163,90,0.05); border-color: rgba(196,163,90,0.2); }
.hero-mini-icon  { font-size: 1.4rem; margin-bottom: 10px; }
.hero-mini-title { font-family: var(--font-h); font-weight: 600; font-size: 0.88rem; color: #fff; margin-bottom: 4px; }
.hero-mini-sub   { color: rgba(255,255,255,0.35); font-size: 0.74rem; }

/* Page-level heroes (inner pages) */
.page-hero {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 160px 0 100px;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 30%, rgba(196,163,90,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero .hero-subtext { margin-bottom: 32px; }

.page-hero--produk {
  background-image: url(img/hero_produk.jpg);
  background-size: cover;
  background-position: center;
}
.page-hero--produk::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(11,11,11,0.78);
  z-index: 0;
}

.bg-material-img {
  position: relative;
  background-image: url(img/hero_produk.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bg-material-img::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(11,11,11,0.82);
  pointer-events: none;
  z-index: 0;
}
.bg-material-img > * { position: relative; z-index: 1; }

/* ════════════════════════════════
   STATS BAR
════════════════════════════════ */
.stats-band {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-col {
  padding: 52px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background var(--dur);
}
.stat-col:last-child { border-right: none; }
.stat-col:hover { background: var(--bg); }

.stat-number {
  font-family: var(--font-h); font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--ink); line-height: 1;
  margin-bottom: 8px; letter-spacing: -0.03em;
}
.stat-label {
  color: var(--muted);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ════════════════════════════════
   MARQUEE — Clients
════════════════════════════════ */
.marquee-band {
  background: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.marquee-band-header {
  text-align: center;
  margin-bottom: 56px;
}
.marquee-band-header h2 { color: #fff; margin-bottom: 12px; }
.marquee-band-header p  { color: rgba(255,255,255,0.4); font-size: 0.95rem; }

.marquee-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 16px;
  width: max-content;
  animation: marqueeRun 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-item {
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--rl);
  padding: 20px 28px;
  background: rgba(255,255,255,0.03);
  transition: all var(--dur);
  cursor: default;
  min-width: 220px;
}
.marquee-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(196,163,90,0.25); }

.marquee-item-icon { width: 56px; height: 56px; overflow: hidden; border-radius: 8px; margin: 0 auto 12px; }
.marquee-item-icon img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity var(--dur); }
.marquee-item:hover .marquee-item-icon img { opacity: 0.9; }
.marquee-item-logo {
  height: 32px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity var(--dur);
}
.marquee-item:hover .marquee-item-logo { opacity: 0.85; }
.marquee-item-name {
  font-family: var(--font-h); font-weight: 700;
  color: #fff; font-size: 0.9rem; margin-bottom: 4px;
}
.marquee-item-detail { color: rgba(255,255,255,0.35); font-size: 0.72rem; }

.marquee-band-footer { text-align: center; margin-top: 52px; }

/* ════════════════════════════════
   SECTION HEADERS
════════════════════════════════ */
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.section-intro p { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.section-intro a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-header-center p { color: var(--muted); margin-top: 16px; font-size: 1rem; }

/* ════════════════════════════════
   SERVICE CARDS
════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.svc-item {
  background: var(--bg);
  padding: 52px 44px;
  transition: background var(--dur);
  position: relative;
}
.svc-item:hover { background: var(--bg-warm); }
.svc-item--highlight { background: var(--bg-dark); }
.svc-item--highlight:hover { background: var(--bg-dark2); }
.svc-item--highlight h3 { color: #fff; }
.svc-item--highlight p  { color: rgba(255,255,255,0.55); }
.svc-item--highlight .svc-item-num { color: rgba(255,255,255,0.12); }
.svc-item--highlight .svc-link { color: rgba(255,255,255,0.7); }
.svc-item--highlight .svc-link:hover { color: #fff; }

.svc-item-num {
  font-family: var(--font-h); font-weight: 800;
  font-size: 4rem; color: rgba(0,0,0,0.04);
  line-height: 1; margin-bottom: 32px; letter-spacing: -0.05em;
}
.svc-item h3 { margin-bottom: 16px; }
.svc-item p  { color: var(--muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 28px; }

.svc-item-features { margin-bottom: 36px; display: flex; flex-direction: column; gap: 8px; }
.svc-item-features li { display: flex; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.svc-item-features li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.svc-item--highlight .svc-item-features li { color: rgba(255,255,255,0.5); }

.svc-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.85rem; color: var(--ink); transition: gap var(--dur); }
.svc-link:hover { gap: 12px; }

/* ════════════════════════════════
   PRODUCT CARDS — Premium
════════════════════════════════ */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-grid--4 { grid-template-columns: repeat(4,1fr); }

.product-card-premium {
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--bg);
  transition: all var(--dur) var(--ease);
}
.product-card-premium:hover { box-shadow: var(--shl); transform: translateY(-4px); border-color: transparent; }

.product-visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
}
.product-card-premium:hover .product-visual img {
  transform: scale(1.05);
}
.product-visual-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.product-visual-icon {
  font-size: 4rem; opacity: 0.18;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.product-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.product-visual-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.product-visual-label .pv-category {
  display: block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 4px;
}
.product-visual-label .pv-name {
  display: block; font-family: var(--font-h); font-weight: 700;
  font-size: 1.05rem; color: #fff;
}

.product-card-body { padding: 20px 22px 22px; }
.product-card-body p { color: var(--muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; }
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.pcf-moq { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--subtle); }
.pcf-price { font-family: var(--font-h); font-weight: 700; font-size: 0.92rem; color: var(--ink); }

/* ════════════════════════════════
   TABS
════════════════════════════════ */
.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  gap: 0;
}
.tab-btn {
  padding: 14px 28px;
  font-family: var(--font-b); font-weight: 500; font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--dur);
}
.tab-btn.active { color: var(--ink); border-bottom-color: var(--ink); font-weight: 600; }
.tab-btn:hover  { color: var(--ink); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ════════════════════════════════
   PROCESS STEPS
════════════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; background: var(--border); border: 1px solid var(--border); }
.process-col {
  background: var(--bg);
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  transition: background var(--dur);
}
.process-col:last-child { border-right: none; }
.process-col:hover { background: var(--bg-warm); }
.process-step-num {
  font-family: var(--font-h); font-weight: 900;
  font-size: 2.8rem; color: rgba(0,0,0,0.05);
  line-height: 1; margin-bottom: 24px;
  letter-spacing: -0.05em;
}
.process-col h4 { margin-bottom: 10px; font-size: 0.95rem; }
.process-col p  { color: var(--muted); font-size: 0.84rem; line-height: 1.7; }

/* ════════════════════════════════
   PRICING TABLE
════════════════════════════════ */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.price-col {
  background: var(--bg);
  padding: 48px 36px;
  position: relative;
  transition: background var(--dur);
}
.price-col:hover { background: var(--bg-warm); }
.price-col--featured {
  background: var(--bg-dark);
  color: #fff;
}
.price-col--featured:hover { background: var(--bg-dark2); }
.price-col--featured h3 { color: #fff; }

.price-col-tag {
  position: absolute; top: -1px; left: 0; right: 0;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 0; text-align: center;
}

.price-col-icon { font-size: 2rem; margin-bottom: 20px; }
.price-col h3 { margin-bottom: 6px; font-size: 1.1rem; }
.price-col-desc { color: var(--muted); font-size: 0.82rem; margin-bottom: 28px; }
.price-col--featured .price-col-desc { color: rgba(255,255,255,0.45); }

.price-amount { margin-bottom: 28px; }
.price-from-label { display: block; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 4px; }
.price-col--featured .price-from-label { color: rgba(255,255,255,0.4); }
.price-num { font-family: var(--font-h); font-weight: 900; font-size: 2rem; color: var(--ink); line-height: 1; }
.price-col--featured .price-num { color: #fff; }
.price-per { font-size: 0.78rem; color: var(--muted); display: block; margin-top: 4px; }
.price-col--featured .price-per { color: rgba(255,255,255,0.4); }

.price-feats { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.price-feats li { display: flex; gap: 10px; font-size: 0.86rem; color: var(--muted); }
.price-feats li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.price-col--featured .price-feats li { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════
   PORTFOLIO CLIENT GRID
════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1px; background: var(--border);
}
.portfolio-item {
  background: var(--bg);
  padding: 36px 28px;
  transition: background var(--dur);
  position: relative;
}
.portfolio-item:hover { background: var(--bg-warm); }

.portfolio-item--featured {
  background: var(--bg-dark); grid-column: span 2;
}
.portfolio-item--featured:hover { background: var(--bg-dark2); }
.portfolio-item--featured .pi-name { color: #fff; font-size: 1.4rem; }
.portfolio-item--featured .pi-detail { color: rgba(255,255,255,0.4); }
.portfolio-item--featured .pi-year { color: rgba(255,255,255,0.25); }

.pi-icon   { font-size: 2rem; margin-bottom: 16px; }
.pi-name   { font-family: var(--font-h); font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: var(--ink); }
.pi-detail { color: var(--muted); font-size: 0.8rem; margin-bottom: 8px; }
.pi-pcs    { font-family: var(--font-h); font-weight: 800; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.pi-year   { color: var(--subtle); font-size: 0.72rem; }
.portfolio-item--featured .pi-pcs { color: #fff; font-size: 2.5rem; }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 44px 40px;
  position: relative;
  transition: all var(--dur);
}
.testi-card:hover { box-shadow: var(--shl); border-color: transparent; }
.testi-card--dark { background: var(--bg-dark); border-color: var(--border-d); }
.testi-card--dark:hover { background: var(--bg-dark2); box-shadow: var(--shxl); }

.testi-quote {
  position: absolute; top: 32px; right: 36px;
  font-family: Georgia, serif; font-size: 5rem;
  color: var(--border); line-height: 1; pointer-events: none;
}
.testi-card--dark .testi-quote { color: rgba(255,255,255,0.05); }

.testi-text { font-size: 0.94rem; line-height: 1.85; color: var(--ink-3); margin-bottom: 32px; }
.testi-card--dark .testi-text { color: rgba(255,255,255,0.7); }

.testi-author { display: flex; gap: 14px; align-items: center; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: #fff;
  font-family: var(--font-h); font-weight: 700; font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
  object-fit: cover;
}
.testi-card--dark .testi-av { background: rgba(255,255,255,0.1); }
.testi-name { display: block; font-weight: 600; font-size: 0.9rem; }
.testi-role { color: var(--muted); font-size: 0.78rem; }
.testi-card--dark .testi-name { color: #fff; }
.testi-card--dark .testi-role  { color: rgba(255,255,255,0.4); }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0;
  font-family: var(--font-b); font-weight: 500; font-size: 0.95rem;
  text-align: left; color: var(--ink);
  transition: color var(--dur);
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted); transition: transform var(--dur); }
.faq-item.open .faq-q { color: var(--ink); }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 0 24px; color: var(--muted); font-size: 0.9rem; line-height: 1.8; max-width: 680px; }

/* Dark FAQ variant */
.faq-list--dark { border-top-color: var(--border-d); }
.faq-list--dark .faq-item { border-bottom-color: var(--border-d); }
.faq-list--dark .faq-q { color: rgba(255,255,255,0.8); }
.faq-list--dark .faq-q svg { color: rgba(255,255,255,0.3); }
.faq-list--dark .faq-item.open .faq-q { color: #fff; }
.faq-list--dark .faq-item.open .faq-q svg { color: #fff; }
.faq-list--dark .faq-a p { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════
   CTA SECTION
════════════════════════════════ */
.cta-section {
  background: var(--bg-dark);
  padding: var(--pad-section) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,163,90,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 80px; align-items: center;
}
.cta-text h2 { color: #fff; margin-bottom: 16px; }
.cta-text p  { color: rgba(255,255,255,0.5); font-size: 1rem; margin-bottom: 28px; }
.cta-trust-row { display: flex; gap: 28px; flex-wrap: wrap; }
.cta-trust-row span { color: rgba(255,255,255,0.35); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; }
.cta-buttons { display: flex; flex-direction: column; gap: 12px; }

/* ════════════════════════════════
   ABOUT SPLIT
════════════════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.about-year-block {
  background: var(--bg-dark);
  padding: 56px;
  border-radius: var(--rl);
  position: relative;
  overflow: hidden;
}
.about-year-block::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(196,163,90,0.1), transparent 70%);
}
.aby-year {
  font-family: var(--font-h); font-weight: 900;
  font-size: 5.5rem; color: #fff; line-height: 1;
  letter-spacing: -0.04em; margin-bottom: 4px;
  position: relative; z-index: 1;
}
.aby-label { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-bottom: 36px; position: relative; z-index: 1; }
.aby-stats { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.aby-stat-row { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.aby-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.about-image-wrapper {
  position: relative;
  border-radius: var(--rl);
  overflow: visible;
}
.about-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--rl);
  box-shadow: var(--shl);
  display: block;
}
.about-year-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--ink);
  color: #fff;
  padding: 24px 32px;
  border-radius: var(--r);
  border: 1px solid var(--border-d);
  box-shadow: var(--shxl);
  z-index: 2;
  text-align: center;
}
.about-year-badge .ayb-year {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  color: #fff;
}
.about-year-badge .ayb-label {
  font-size: 0.7rem;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--muted); margin-bottom: 20px; font-size: 0.97rem; line-height: 1.85; }

.about-pillars { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.about-pillar { display: flex; gap: 16px; align-items: flex-start; }
.ap-icon {
  width: 40px; height: 40px; border-radius: var(--r);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.ap-body strong { display: block; font-weight: 600; margin-bottom: 2px; font-size: 0.95rem; }
.ap-body p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ════════════════════════════════
   INDUSTRY / VISUAL STRIP
════════════════════════════════ */
.industry-strip {
  display: grid; grid-template-columns: repeat(5,1fr);
  background: var(--border); gap: 1px;
}
.industry-item {
  background: var(--bg-dark);
  padding: 40px 32px; text-align: center;
  transition: background var(--dur);
}
.industry-item:hover { background: var(--bg-dark2); }
.industry-icon { font-size: 2rem; margin-bottom: 14px; opacity: 0.6; }
.industry-name { color: rgba(255,255,255,0.55); font-size: 0.82rem; font-weight: 500; }

/* ════════════════════════════════
   VIDEO SHOWCASE
════════════════════════════════ */
.video-cat-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,163,90,0.12); border: 1px solid rgba(196,163,90,0.3);
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.video-row { margin-bottom: 56px; }
.video-row:last-child { margin-bottom: 0; }
.video-row-title { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.video-shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.video-short-wrap {
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.video-short-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.video-landscape-wrap {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.video-landscape-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
@media(max-width:768px) {
  .video-shorts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) {
  .video-shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ════════════════════════════════
   CONTACT CARDS
════════════════════════════════ */
.contact-method {
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 44px 40px;
  transition: all var(--dur);
}
.contact-method:hover { box-shadow: var(--shl); border-color: transparent; }
.contact-method--wa {
  background: var(--bg-dark);
  border-color: var(--border-d);
}
.contact-method--wa:hover { background: var(--bg-dark2); box-shadow: var(--shxl); }

.cm-icon { font-size: 2.2rem; margin-bottom: 20px; }
.cm-method { color: var(--muted); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.contact-method--wa .cm-method { color: rgba(255,255,255,0.35); }
.cm-value { font-family: var(--font-h); font-weight: 700; font-size: 1.4rem; color: var(--ink); margin-bottom: 8px; }
.contact-method--wa .cm-value { color: #fff; }
.cm-desc { color: var(--muted); font-size: 0.86rem; margin-bottom: 28px; }
.contact-method--wa .cm-desc { color: rgba(255,255,255,0.4); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--bg-dark); }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 64px; padding: 80px 0 72px;
  border-bottom: 1px solid var(--border-d);
}
.footer-brand-desc { color: rgba(255,255,255,0.4); font-size: 0.87rem; line-height: 1.75; max-width: 280px; margin: 18px 0 32px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: var(--r);
  border: 1px solid var(--border-d);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: all var(--dur);
}
.socials a:hover { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.15); }

.footer-col h5 { color: rgba(255,255,255,0.5); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.35); font-size: 0.87rem; transition: color var(--dur); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.7); }

.contact-info-list { display: flex; flex-direction: column; gap: 12px; }
.contact-info-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,0.35); font-size: 0.86rem; }
.contact-info-list li svg { flex-shrink: 0; margin-top: 3px; opacity: 0.5; }
.contact-info-list li a { color: rgba(255,255,255,0.35); transition: color var(--dur); }
.contact-info-list li a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.8rem; }

/* ════════════════════════════════
   WA FLOAT
════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 998;
  transition: all var(--dur);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

/* ════════════════════════════════
   UTILITY
════════════════════════════════ */
.bg-dark  { background: var(--bg-dark); }
.bg-dark2 { background: var(--bg-dark2); }
.bg-warm  { background: var(--bg-warm); }
.bg-white { background: var(--bg); }

.text-white { color: #fff !important; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-gold  { color: var(--gold); }

.mt-8  { margin-top: 8px; }  .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.mb-24 { margin-bottom: 24px; } .mb-48 { margin-bottom: 48px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.flex { display: flex; } .items-center { align-items: center; }
.gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

/* ════════════════════════════════
   PHOTO MASONRY GALLERY
════════════════════════════════ */
.photo-masonry {
  columns: 4 180px;
  column-gap: 12px;
}
.photo-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: var(--rl);
  background: var(--bg-warm);
  cursor: zoom-in;
}
.photo-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.4s var(--ease);
}
.photo-item:hover img { transform: scale(1.05); }
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.72) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 14px 12px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.photo-item:hover .photo-overlay { opacity: 1; }
.po-company { font-family: var(--font-h); font-weight: 700; font-size: 0.85rem; color: #fff; display: block; }
.po-type    { font-size: 0.72rem; color: rgba(255,255,255,0.55); display: block; margin-top: 2px; }

.gallery-tabs-wrap { margin-bottom: 48px; }

/* ── Category label badge on photo ── */
.photo-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.8); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}

@media(max-width:1200px) { .photo-masonry { columns: 3 160px; } }
@media(max-width:768px)  { .photo-masonry { columns: 2 140px; } }
@media(max-width:480px)  { .photo-masonry { columns: 2 120px; } }

/* ════════════════════════════════
   FAQ SPLIT LAYOUT (Home page)
════════════════════════════════ */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-split-left {
  position: sticky;
  top: 120px;
}

/* ════════════════════════════════
   GUARANTEE CARDS
════════════════════════════════ */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.guarantee-card {
  background: var(--bg);
  padding: 44px 36px;
  transition: background var(--dur);
  position: relative;
}
.guarantee-card:hover { background: var(--bg-warm); }
.guarantee-card::before {
  content: '';
  position: absolute; top: 0; left: 36px;
  width: 32px; height: 2px;
  background: var(--gold);
}
.gc-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.gc-title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 1rem; margin-bottom: 10px; color: var(--ink);
}
.gc-desc { color: var(--muted); font-size: 0.86rem; line-height: 1.8; }

/* ════════════════════════════════
   HOW IT WORKS — STEPS
════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}
/* Connecting line between steps */
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border-d);
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 20px;
  position: relative; z-index: 1;
}
.step-num-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-dark2);
  border: 1px solid var(--border-d);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--dur);
}
.step-item:hover .step-num-wrap {
  background: var(--gold);
  border-color: var(--gold);
}
.step-num-wrap span {
  font-family: var(--font-h); font-weight: 800;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: color var(--dur);
}
.step-item:hover .step-num-wrap span { color: #fff; }
.step-title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 0.92rem; color: #fff;
  margin-bottom: 10px; line-height: 1.3;
}
.step-desc { color: rgba(255,255,255,0.4); font-size: 0.8rem; line-height: 1.7; }

/* ════════════════════════════════
   TRUST SIGNAL BAR
════════════════════════════════ */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-signal {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: 0.85rem; font-weight: 500;
}
.trust-signal-icon { font-size: 1.1rem; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad-section: 88px; --pad-sm: 60px; }
  .hero-premium-grid  { grid-template-columns: 1fr; }
  .hero-right-visual  { display: none; }
  .about-split        { grid-template-columns: 1fr; gap: 56px; }
  .svc-grid           { grid-template-columns: 1fr; }
  .pricing-table      { grid-template-columns: 1fr 1fr; }
  .process-grid       { grid-template-columns: 1fr 1fr; }
  .portfolio-grid     { grid-template-columns: repeat(3,1fr); }
  .portfolio-item--featured { grid-column: span 1; }
  .footer-main        { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-inner          { grid-template-columns: 1fr; gap: 40px; }
  .cta-buttons        { flex-direction: row; }
  .testi-grid         { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .section-intro      { grid-template-columns: 1fr; gap: 16px; }
  .industry-strip     { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  :root { --pad-section: 64px; --pad-sm: 48px; }
  .container { padding: 0 20px; }

  .hamburger   { display: flex; }
  .nav-cta     { display: none; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(11,11,11,0.98);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 40px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: rgba(255,255,255,0.8); }

  .stats-band-inner   { grid-template-columns: 1fr 1fr; }
  .stat-col           { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-col:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat-col:nth-child(3), .stat-col:nth-child(4) { border-bottom: none; }

  .product-grid       { grid-template-columns: 1fr; }
  .product-grid--4    { grid-template-columns: 1fr 1fr; }
  .pricing-table      { grid-template-columns: 1fr; }
  .portfolio-grid     { grid-template-columns: 1fr 1fr; }
  .process-grid       { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .industry-strip     { grid-template-columns: 1fr 1fr; }
  .footer-main        { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom      { flex-direction: column; gap: 8px; text-align: center; }
  .cta-buttons        { flex-direction: column; }
  .cta-buttons .btn   { justify-content: center; }
  .hero-actions       { flex-direction: column; }
  .hero-actions .btn  { justify-content: center; }
}

@media (max-width: 1100px) {
  .guarantee-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 36px; }
  .steps-row::before { display: none; }
  .step-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; text-align: left; }
  .step-num-wrap { margin: 0; flex-shrink: 0; }
  .trust-bar { gap: 24px; }
  .faq-split { grid-template-columns: 1fr; gap: 40px; }
  .faq-split-left { position: static; }
}

@media (max-width: 768px) {
  .guarantee-grid { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; gap: 16px; align-items: flex-start; padding: 24px 0; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .industry-strip { grid-template-columns: 1fr 1fr; }
  .product-grid--4 { grid-template-columns: 1fr; }
}
