/* ============================================================
   ITEZIA — Page Styles
   Services · Projects · About · Contact · Products
   ============================================================ */

/* ══════════════════════════════════════════════════════
   PORTFOLIO PAGE
   ══════════════════════════════════════════════════════ */

/* ─── Hero ──────────────────────────────────────────── */
.ptf-hero {
  padding: var(--s24) 0 var(--s12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ptf-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(192,150,60,.09) 0%, transparent 70%);
}

/* ─── Filter tabs ───────────────────────────────────── */
.ptf-tabs {
  display: flex; justify-content: center; gap: var(--s2); flex-wrap: wrap; margin-top: var(--s6);
}
.ptf-tab {
  display: flex; align-items: center;
  padding: 8px 22px;
  background: var(--surface); border: 1px solid var(--b-1); border-radius: var(--rfull);
  font-size: var(--fs-sm); font-weight: 500; color: var(--t3);
  cursor: pointer; transition: all var(--t2s);
}
.ptf-tab:hover  { border-color: var(--b-2); color: var(--t1); }
.ptf-tab.active { background: var(--brand); border-color: var(--brand); color: #000; font-weight: 600; }

/* ─── Grid section ──────────────────────────────────── */
.ptf-section {
  padding: 0 var(--s6) var(--s24);
  max-width: 1240px;
  margin: 0 auto;
}
.ptf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

/* ─── Card ──────────────────────────────────────────── */
.ptf-card {
  background: var(--card); border: 1px solid var(--b-1); border-radius: var(--r4);
  overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column;
  transition: border-color var(--t2s), transform var(--t2s), box-shadow var(--t2s);
}
.ptf-card:hover {
  border-color: rgba(255,255,255,.12);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}

/* ─── Card visual ───────────────────────────────────── */
.ptf-card-visual {
  position: relative; aspect-ratio: 5/3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--deep);
}
.ptf-card-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform .5s ease;
}
.ptf-card:hover .ptf-card-hero-img { transform: scale(1.04); }
.ptf-card-visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 25%, var(--ptf-c1) 0%, transparent 55%),
    radial-gradient(circle at 75% 75%, var(--ptf-c2) 0%, transparent 55%);
  opacity: .12;
  transition: opacity var(--t3s);
}
.ptf-card:hover .ptf-card-visual-bg { opacity: .22; }

.ptf-card-visual-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.ptf-card-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,8,16,.7) 100%);
}
.ptf-card-icon {
  width: 60px; height: 60px; position: relative; z-index: 1;
  filter: drop-shadow(0 0 18px var(--ptf-c1));
  transition: transform var(--t2s), filter var(--t2s);
}
.ptf-card:hover .ptf-card-icon {
  transform: scale(1.12);
  filter: drop-shadow(0 0 28px var(--ptf-c1));
}
.ptf-card-num {
  position: absolute; bottom: var(--s3); right: var(--s4);
  font-size: var(--fs-5xl); font-weight: 800; font-family: var(--mono);
  color: rgba(255,255,255,.05); line-height: 1; z-index: 1; user-select: none;
}
.ptf-card-cat-badge {
  position: absolute; top: var(--s3); left: var(--s3); z-index: 2;
  font-size: 10px; font-family: var(--mono); text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 3px 8px; border-radius: var(--rfull);
}

/* ─── Card body ─────────────────────────────────────── */
.ptf-card-body  { padding: var(--s5) var(--s6) var(--s6); flex: 1; display: flex; flex-direction: column; }
.ptf-card-meta  { display: flex; align-items: center; gap: var(--s2); margin-bottom: var(--s3); }
.ptf-card-title { font-size: var(--fs-lg); font-weight: 700; color: var(--t1); letter-spacing: -.02em; margin-bottom: var(--s2); }
.ptf-card-desc  { font-size: var(--fs-sm); color: var(--t3); line-height: 1.75; flex: 1; margin-bottom: var(--s4); }
.ptf-card-tags  { display: flex; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s5); }
.ptf-card-cta {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--fs-sm); font-weight: 600; color: var(--brand);
  margin-top: auto; transition: gap var(--t1s);
}
.ptf-card:hover .ptf-card-cta { gap: var(--s3); }
.ptf-card-cta i { transition: transform var(--t2s); }
.ptf-card:hover .ptf-card-cta i { transform: translateX(4px) rotate(-45deg); }

/* ─── Detail Panel ──────────────────────────────────── */
.ptf-panel {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; justify-content: flex-end;
  pointer-events: none; opacity: 0;
  transition: opacity var(--t3s);
}
.ptf-panel.open { pointer-events: all; opacity: 1; }

.ptf-panel-backdrop {
  position: absolute; inset: 0;
  background: rgba(4,4,12,.75);
  backdrop-filter: blur(6px);
}
.ptf-panel-inner {
  position: relative; width: min(700px, 100vw); height: 100%;
  background: #0a0a14;
  border-left: 1px solid rgba(255,255,255,.07);
  overflow-y: auto; overflow-x: hidden;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.ptf-panel.open .ptf-panel-inner { transform: translateX(0); }

.ptf-panel-close {
  position: sticky; top: var(--s5); float: right; margin: var(--s5) var(--s5) 0 0;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
  color: var(--t3); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 10;
  transition: all var(--t1s);
}
.ptf-panel-close:hover { background: rgba(255,255,255,.12); color: var(--t1); }

/* ─── Panel Header ──────────────────────────────────── */
.ptf-pnl-header {
  position: relative; padding: var(--s14) var(--s8) var(--s8); overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ptf-pnl-header-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 120% at 0% 0%, var(--ptf-c1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 90% at 100% 100%, var(--ptf-c2) 0%, transparent 55%);
  opacity: .07;
}
.ptf-pnl-header::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(10,10,20,.8));
  pointer-events: none;
}
.ptf-pnl-header-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: var(--s5); flex-wrap: wrap;
}
.ptf-pnl-icon-wrap {
  width: 64px; height: 64px; border-radius: var(--r3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ptf-pnl-icon  { width: 36px; height: 36px; filter: drop-shadow(0 0 10px var(--ptf-c1)); }
.ptf-pnl-num   { font-size: var(--fs-xs); font-family: var(--mono); color: var(--t4); margin-bottom: 4px; letter-spacing: .08em; }
.ptf-pnl-title { font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl)); font-weight: 700; color: var(--t1); letter-spacing: -.03em; margin-bottom: 4px; }
.ptf-pnl-sub   { font-size: var(--fs-sm); color: var(--t3); }

/* ─── Panel Body ────────────────────────────────────── */
.ptf-pnl-body    { padding: var(--s8); display: flex; flex-direction: column; gap: var(--s6); clear: both; }
.ptf-pnl-section { display: flex; flex-direction: column; gap: var(--s4); }
.ptf-pnl-divider { height: 1px; background: rgba(255,255,255,.05); }
.ptf-pnl-label   {
  font-size: 10px; font-family: var(--mono); text-transform: uppercase;
  letter-spacing: .14em; color: var(--brand-l); margin-bottom: var(--s1);
}
.ptf-pnl-desc  { font-size: var(--fs-base); color: var(--t2); line-height: 1.85; }
.ptf-pnl-feats { display: flex; flex-direction: column; gap: var(--s3); }
.ptf-pnl-feat  { display: flex; align-items: baseline; gap: var(--s3); font-size: var(--fs-sm); color: var(--t2); }
.ptf-pnl-feat i { color: var(--green); font-size: 10px; flex-shrink: 0; }
.ptf-pnl-tags  { display: flex; gap: var(--s2); flex-wrap: wrap; }

/* ─── Panel Image Side (left of screen) ─────────────── */
.ptf-panel-img-side {
  position: fixed;
  top: 0; left: 0;
  width: calc(100vw - min(700px, 100vw));
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .5s ease .1s;
  pointer-events: none;
}
.ptf-panel-img-side::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(4,4,12,.3), rgba(4,4,12,.85));
}
.ptf-panel.open .ptf-panel-img-side { opacity: 1; }
@media (max-width: 700px) { .ptf-panel-img-side { display: none; } }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) { .ptf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  {
  .ptf-grid    { grid-template-columns: 1fr; }
  .ptf-section { padding: 0 var(--s4) var(--s16); }
}

/* ──────────────────────── PROJECTS PAGE ───────────────────── */
.projects-page { padding: var(--s24) 0; }

.proj-bridge {
  background: var(--deep);
  border-top: 1px solid rgba(192,150,60,.12);
  position: relative;
}
.proj-bridge::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 180px;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(192,150,60,.04) 0%, transparent 100%);
  pointer-events: none;
}

.proj-grid    { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--s6); margin-top: var(--s12); }
.proj-card    { background: var(--card); border: 1px solid var(--b-1); border-radius: var(--r3); padding: var(--s8); display: flex; flex-direction: column; gap: var(--s4); transition: all var(--t3s); }
.proj-card:hover  { border-color: var(--b-2); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.proj-card-head   { display: flex; align-items: center; justify-content: space-between; }
.proj-name    { font-size: var(--fs-lg); font-weight: 600; color: var(--t1); }
.proj-desc    { font-size: var(--fs-sm); color: var(--t3); line-height: 1.7; flex: 1; }
.proj-stack   { display: flex; gap: var(--s2); flex-wrap: wrap; }
.proj-links   { display: flex; gap: var(--s3); margin-top: auto; }

/* ──────────────────────── ABOUT PAGE ──────────────────────── */
.about-page   { padding: var(--s20) 0 var(--s24); }
.about-hero   { text-align: center; padding: var(--s20) 0 var(--s16); position: relative; }
.about-body   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s20); align-items: start; padding: var(--s16) 0; }
.about-text h2             { font-size: clamp(var(--fs-3xl), 3.5vw, var(--fs-5xl)); margin-bottom: var(--s6); }
.about-text p              { font-size: var(--fs-base); color: var(--t3); line-height: 1.85; margin-bottom: var(--s5); }
.about-text blockquote     { border-left: 3px solid var(--brand); padding-left: var(--s6); margin-top: var(--s8); font-size: var(--fs-lg); color: var(--t2); font-style: italic; }
.about-stat-grid           { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
.about-stat-card           { background: var(--card); border: 1px solid var(--b-1); border-radius: var(--r3); padding: var(--s8); text-align: center; transition: all var(--t2s); }
.about-stat-card:hover     { border-color: rgba(192,150,60,.2); background: rgba(16,14,10,.9); }
.about-stat-val            { font-size: var(--fs-4xl); font-weight: 700; color: var(--t1); display: block; }
.about-stat-label          { font-size: var(--fs-xs); color: var(--t3); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ──────────────────────── CONTACT PAGE ────────────────────── */
.contact-page      { padding: var(--s24) 0; }
.contact-hero      { text-align: center; margin-bottom: var(--s16); }
.contact-cols      { display: grid; grid-template-columns: 3fr 2fr; gap: var(--s10); align-items: start; }
.contact-form-card { background: var(--card); border: 1px solid var(--b-1); border-radius: var(--r4); padding: var(--s10); }
.contact-form-card h3              { font-size: var(--fs-xl); font-weight: 600; color: var(--t1); margin-bottom: var(--s8); display: flex; align-items: center; gap: var(--s3); }
.contact-form-card textarea.input  { resize: vertical; min-height: 140px; max-height: 320px; }
.form-label   { display: block; margin-bottom: var(--s2); font-size: var(--fs-sm); font-weight: 500; color: var(--t3); }
.form-field   { margin-bottom: var(--s6); }
.contact-aside     { display: flex; flex-direction: column; gap: var(--s5); }
.contact-info      { background: var(--card); border: 1px solid var(--b-1); border-radius: var(--r3); padding: var(--s8); }
.contact-info h5   { font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--t3); margin-bottom: var(--s5); }
.contact-info p, .contact-info a { font-size: var(--fs-sm); color: var(--t2); line-height: 1.7; }
.social-row  { display: flex; gap: var(--s3); margin-top: var(--s3); }
.social-btn  { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--b-1); border-radius: var(--r2); color: var(--t3); transition: all var(--t1s); }
.social-btn:hover { background: var(--b-dim); color: var(--t1); border-color: var(--b-2); }

/* ── Contact tabs ── */
.ctab-row { display: flex; gap: var(--s2); margin-bottom: var(--s8); border-bottom: 1px solid var(--b-1); padding-bottom: var(--s4); }
.ctab { display: flex; align-items: center; gap: var(--s2); padding: 8px 16px; background: transparent; border: 1px solid transparent; border-radius: var(--r2); font-size: var(--fs-sm); font-weight: 500; color: var(--t3); cursor: pointer; transition: all var(--t1s); }
.ctab:hover { color: var(--t1); border-color: var(--b-1); background: var(--surface); }
.ctab--active { color: var(--brand-l); border-color: rgba(192,150,60,.25); background: rgba(192,150,60,.06); }

/* ── Booking ── */
.contact-booking {
  border-color: rgba(192,150,60,.2) !important;
  background: rgba(192,150,60,.03) !important;
}
.contact-booking-slots {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.booking-slot-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--fs-xs);
  color: var(--t3);
  padding: var(--s3) var(--s4);
  background: var(--surface);
  border: 1px solid var(--b-1);
  border-radius: var(--r2);
}
.booking-slot-row i {
  color: var(--brand-l);
  font-size: 11px;
  flex-shrink: 0;
}

/* ── Map ── */
.contact-map-frame {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
  border-radius: var(--r2);
  margin-top: var(--s5);
  filter: invert(90%) hue-rotate(180deg);
}

/* ──────────────────────── PRODUCTS PAGE ───────────────────── */
.prod-page      { min-height: 100vh; }
.prod-page-head { position: relative; text-align: center; overflow: hidden; border-bottom: 1px solid var(--b-1); }
.prod-page-nebula {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(192,150,60,.07) 0%, transparent 70%);
  pointer-events: none;
}

.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s6); margin: var(--s10) 0;
}
@media (max-width: 900px) { .prod-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }

.prod-card {
  position: relative; background: var(--card); border: 1px solid var(--b-1);
  border-radius: var(--r3); padding: var(--s8);
  display: flex; flex-direction: column; gap: var(--s4);
  transition: border-color var(--t3s), box-shadow var(--t3s), transform var(--t3s);
  overflow: hidden;
}
.prod-card:hover         { border-color: color-mix(in srgb, var(--pc) 50%, transparent); box-shadow: 0 0 40px var(--pc-glow), var(--sh-lg); transform: translateY(-4px); }
.prod-card--featured     { border-color: rgba(192,150,60,.2); background: linear-gradient(160deg, rgba(192,150,60,.05) 0%, var(--card) 60%); }
.prod-card--featured:hover { box-shadow: 0 0 60px rgba(192,150,60,.14), var(--sh-xl); }

.prod-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--pc) 40%, var(--pc) 60%, transparent); opacity: .7; border-radius: var(--r3) var(--r3) 0 0; }

.prod-card-top { display: flex; align-items: center; justify-content: space-between; }
.prod-num      { font-family: var(--mono); font-size: var(--fs-xs); color: var(--t4); letter-spacing: .1em; }

.prod-icon { width: 52px; height: 52px; border-radius: var(--r2); border: 1px solid; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }

.prod-title   { font-size: var(--fs-xl); font-weight: 700; color: var(--t1); letter-spacing: -.02em; margin-top: var(--s1); }
.prod-tagline { font-size: var(--fs-sm); color: var(--t3); font-style: italic; margin-top: calc(-1 * var(--s2)); }
.prod-desc    { font-size: var(--fs-sm); color: var(--t2); line-height: 1.65; flex: 1; }

.prod-feats    { list-style: none; display: flex; flex-direction: column; gap: var(--s2); }
.prod-feats li { display: flex; align-items: center; gap: var(--s3); font-size: var(--fs-sm); color: var(--t2); }
.prod-feats li i { font-size: 9px; color: var(--pc, var(--brand)); flex-shrink: 0; }

.prod-tags { display: flex; gap: var(--s2); flex-wrap: wrap; margin-top: var(--s1); }
.prod-foot { display: flex; gap: var(--s3); margin-top: var(--s2); }

/* ──────────────────────── DOCUMENTATION PAGE ──────────────── */
.docs-page  { padding: var(--s16) 0 var(--s24); }
.docs-hero  { text-align: center; padding: var(--s16) 0 var(--s8); }

.docs-layout { display: grid; grid-template-columns: 220px 1fr; gap: var(--s12); align-items: start; padding-bottom: var(--s24); }

/* Sidebar */
.docs-sidebar { position: sticky; top: 90px; }
.docs-nav-group-label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--t4); margin: var(--s6) 0 var(--s2); padding-left: var(--s3); }
.docs-nav-group-label:first-child { margin-top: 0; }
.docs-nav-item { display: flex; align-items: center; gap: var(--s3); width: 100%; text-align: left; background: none; border: none; padding: var(--s2) var(--s3); border-radius: var(--r2); font-size: var(--fs-sm); color: var(--t3); cursor: pointer; transition: all var(--t1s); }
.docs-nav-item i { font-size: 11px; width: 14px; flex-shrink: 0; }
.docs-nav-item:hover { color: var(--t1); background: var(--surface); }
.docs-nav-item.on { color: var(--brand-l); background: var(--brand-dim); font-weight: 500; }

/* Content area */
.docs-content { min-width: 0; }
.docs-section-eyebrow { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-l); margin-bottom: var(--s3); }
.docs-section h2 { font-size: clamp(var(--fs-3xl), 3vw, var(--fs-4xl)); font-weight: 700; letter-spacing: -.03em; margin-bottom: var(--s4); color: var(--t1); }
.docs-section h3 { font-size: var(--fs-lg); font-weight: 600; margin: var(--s8) 0 var(--s3); color: var(--t1); }
.docs-section p  { font-size: var(--fs-base); color: var(--t3); line-height: 1.85; margin-bottom: var(--s4); }
.docs-section p code, .docs-section li code { background: var(--surface); border: 1px solid var(--b-1); padding: 2px 7px; border-radius: var(--r1); font-size: .82em; color: var(--brand-l); font-family: 'Fira Code', 'Consolas', monospace; }

/* Code blocks */
.docs-code { background: var(--deep); border: 1px solid var(--b-1); border-radius: var(--r3); padding: var(--s5) var(--s6); font-family: 'Fira Code', 'Consolas', monospace; font-size: var(--fs-sm); color: var(--t2); overflow-x: auto; white-space: pre; line-height: 1.75; margin: var(--s3) 0 var(--s6); }

/* Tables */
.docs-table { width: 100%; border-collapse: collapse; margin: var(--s3) 0 var(--s6); font-size: var(--fs-sm); }
.docs-table th { text-align: left; padding: var(--s3) var(--s4); background: var(--surface); color: var(--t4); font-weight: 600; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .07em; border-bottom: 1px solid var(--b-1); }
.docs-table td { padding: var(--s3) var(--s4); color: var(--t3); border-bottom: 1px solid var(--b-dim); vertical-align: top; line-height: 1.6; }
.docs-table tr:last-child td { border-bottom: none; }
.docs-table td code { background: var(--surface); border: 1px solid var(--b-dim); padding: 2px 6px; border-radius: var(--r1); font-size: .82em; color: var(--brand-l); font-family: 'Fira Code', 'Consolas', monospace; }

/* Callouts */
.docs-callout { display: flex; align-items: flex-start; background: var(--surface); border: 1px solid var(--b-1); border-left: 3px solid var(--brand-l); border-radius: var(--r3); padding: var(--s4) var(--s5); margin: var(--s4) 0; font-size: var(--fs-sm); color: var(--t3); line-height: 1.7; gap: var(--s2); }
.docs-callout.warn { border-left-color: #F59E0B; }
.docs-callout.tip  { border-left-color: var(--green-l, #4ADE80); }

/* Feature list */
.docs-feat-list { display: flex; flex-direction: column; gap: var(--s3); margin: var(--s3) 0 var(--s6); }
.docs-feat-list > div { display: flex; align-items: flex-start; gap: var(--s3); font-size: var(--fs-sm); color: var(--t3); line-height: 1.65; }
.docs-feat-dot { font-size: 7px !important; flex-shrink: 0; margin-top: 6px; color: var(--brand-l); }

/* Service hero header */
.docs-service-header { display: flex; align-items: center; gap: var(--s5); margin-bottom: var(--s6); }
.docs-service-icon { width: 56px; height: 56px; border-radius: var(--r3); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }

/* Responsive */
@media (max-width: 860px) {
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; }
}

/* ──────────────────────── HABILLAGE IMAGES ──────────────────── */

/* Full-width cinematic strip (home) */
.hb-strip {
  width: 100%; position: relative; overflow: hidden; line-height: 0;
}
.hb-strip img {
  width: 100%; height: 460px;
  object-fit: cover; display: block;
  filter: brightness(.45) saturate(.75);
  transition: transform 10s ease;
}
.hb-strip:hover img { transform: scale(1.04); }
.hb-strip-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--void) 0%, transparent 22%, transparent 78%, var(--void) 100%),
    linear-gradient(to bottom, var(--void) 0%, transparent 18%, transparent 78%, var(--void) 100%);
}
.hb-strip-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--s4); text-align: center; pointer-events: none;
}

/* Duo images (home, 2-col) */
.hb-duo {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 300px; overflow: hidden;
}
.hb-duo-cell {
  position: relative; overflow: hidden;
}
.hb-duo-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.38) saturate(.7);
  transition: transform 8s ease;
}
.hb-duo-cell:hover img { transform: scale(1.06); }
.hb-duo-cell-over {
  position: absolute; inset: 0;
}
.hb-duo-label {
  position: absolute; bottom: var(--s5);
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .14em; color: rgba(255,255,255,.22); text-transform: uppercase;
}
@media (max-width: 600px) {
  .hb-duo { grid-template-columns: 1fr; height: 200px; }
  .hb-duo-cell:last-child { display: none; }
}

/* About wide image showcase */
.about-hb-wide {
  position: relative; overflow: hidden;
  border-radius: var(--r4); border: 1px solid rgba(192,150,60,.12);
  aspect-ratio: 21/7; margin: var(--s10) 0 var(--s4);
  box-shadow: 0 0 60px rgba(192,150,60,.04); line-height: 0;
}
.about-hb-wide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.42) saturate(.72);
  transition: transform 8s ease;
}
.about-hb-wide:hover img { transform: scale(1.04); }
.about-hb-wide-over {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--void) 0%, transparent 28%, transparent 72%, var(--void) 100%),
    linear-gradient(to bottom, transparent 35%, rgba(10,10,22,.65) 100%);
}
.about-hb-wide-label {
  position: absolute; bottom: var(--s5); left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .14em; color: rgba(255,255,255,.28); white-space: nowrap;
}

/* Services image panel */
.svc-hb-panel {
  position: relative; overflow: hidden;
  border-radius: var(--r4); border: 1px solid rgba(192,150,60,.1);
  aspect-ratio: 16/5; margin-bottom: var(--s10); line-height: 0;
}
.svc-hb-panel img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.32) saturate(.65);
  transition: transform 9s ease;
}
.svc-hb-panel:hover img { transform: scale(1.04); }
.svc-hb-panel-over {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, transparent 25%, var(--void) 100%),
    linear-gradient(to bottom, var(--void) 0%, transparent 28%, transparent 72%, var(--void) 100%);
}
.svc-hb-panel-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: var(--s3); text-align: center; pointer-events: none;
}
