/* ═══════════════════════════════════════════
   CORVIZE THEME — MAIN STYLES
   ═══════════════════════════════════════════ */

:root {
  --bg:        #0b0d0f;
  --bg-alt:    #0f1114;
  --bg-card:   #141618;
  --border:    rgba(255,255,255,0.06);
  --border-h:  rgba(255,255,255,0.1);
  --accent:    #C9A55C;
  --accent-dim:rgba(201,165,92,0.12);
  --accent-glo:rgba(201,165,92,0.08);
  --text:      rgba(255,255,255,0.9);
  --text-2:    rgba(255,255,255,0.52);
  --text-3:    rgba(255,255,255,0.28);
  --heading:   'Satoshi', 'Plus Jakarta Sans', sans-serif;
  --sans:      'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w:     1140px;
  --r:         16px;
  --r-sm:      10px;
  --ease:      cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
::selection { background: rgba(201,165,92,0.25); }
img { max-width: 100%; height: auto; }
a { color: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(.22,1,.36,1), transform 0.9s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.reveal--right { transform: translateX(24px); }
.reveal--visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ── Grain ── */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 180px;
}

/* ════════════════════ NAVBAR ════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.5s var(--ease); border-bottom: 1px solid transparent;
}
.navbar--scrolled {
  background: rgba(11,13,15,0.84);
  backdrop-filter: blur(20px) saturate(1.3);
  border-bottom-color: var(--border);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.logo {
  font-family: var(--heading); font-weight: 700; font-size: 22px;
  color: var(--text); text-decoration: none; letter-spacing: -0.5px;
}
.logo__dot {
  color: var(--accent);
  font-weight: 900;
  display: inline-block;
  margin-left: 1px;
  text-shadow: 0 0 10px rgba(201,165,92,0.4);
}
.navbar__links { display: flex; gap: 2px; }
.navbar__links a,
.nav-link {
  font-family: var(--sans); font-weight: 500; font-size: 13px;
  color: var(--text-2); background: none; border: none; cursor: pointer;
  padding: 7px 14px; border-radius: 8px;
  transition: color 0.4s ease, background 0.4s ease;
  letter-spacing: 0.1px; text-decoration: none; display: inline-block;
}
.navbar__links a:hover, .nav-link:hover {
  color: var(--text); background: rgba(255,255,255,0.04);
}
.navbar__actions { display: flex; align-items: center; gap: 10px; }
.nav-cta-ghost {
  font-family: var(--sans); font-weight: 500; font-size: 13px;
  color: var(--text-2); text-decoration: none; padding: 7px 14px;
  transition: color 0.4s ease;
}
.nav-cta-ghost:hover { color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 13.5px;
  border-radius: var(--r-sm); cursor: pointer; text-decoration: none;
  padding: 11px 24px; border: none;
  transition: all 0.5s var(--ease); letter-spacing: 0.1px;
}
.btn--accent {
  color: #0b0d0f; background: var(--accent);
  box-shadow: 0 0 24px rgba(201,165,92,0.12);
}
.btn--accent:hover {
  background: #d4b06a; transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(201,165,92,0.22);
}
.btn--ghost {
  color: var(--text-2); background: transparent;
  border: 1px solid var(--border-h); padding: 10px 24px;
}
.btn--ghost:hover {
  color: var(--text); border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.02);
}
.btn--sm { padding: 8px 18px; font-size: 12.5px; }
.btn--lg { padding: 14px 30px; font-size: 14.5px; border-radius: 12px; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-weight: 500; font-size: 13px;
  color: var(--accent); text-decoration: none;
  transition: gap 0.5s var(--ease);
}
.text-link:hover { gap: 10px; }
.text-link svg { width: 13px; height: 13px; }

/* ── Burger ── */
.burger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 10px; flex-direction: column; gap: 5px;
}
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--text);
  border-radius: 2px; transition: all 0.4s var(--ease);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translateY(4.5px) translateX(4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-4.5px) translateX(4.5px); }

.mobile-menu {
  display: none; padding: 8px 24px 24px;
  background: rgba(11,13,15,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-family: var(--sans); font-size: 15px; color: var(--text-2);
  border-bottom: 1px solid var(--border); text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-nav__cta { color: var(--accent) !important; border-bottom: none !important; margin-top: 8px; font-weight: 600 !important; }

/* ════════════════════ HERO ════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--bg);
}
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(110px);
  pointer-events: none; animation: orbF 22s ease-in-out infinite;
}
.hero__orb--1 { width: 550px; height: 550px; top: -18%; right: -8%; background: rgba(201,165,92,0.06); }
.hero__orb--2 { width: 380px; height: 380px; bottom: -12%; left: -6%; background: rgba(168,140,100,0.04); animation-delay: -8s; animation-duration: 28s; }
.hero__orb--3 { width: 260px; height: 260px; top: 45%; left: 35%; background: rgba(201,165,92,0.03); animation-delay: -15s; animation-duration: 19s; }
@keyframes orbF {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(25px,-18px) scale(1.04); }
  66% { transform: translate(-18px,12px) scale(0.97); }
}

.hero__dotgrid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 48%, black 15%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 48%, black 15%, transparent 68%);
}

.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px;
  align-items: center; padding-top: 130px; padding-bottom: 80px;
  position: relative; z-index: 2;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 500; font-size: 12.5px;
  letter-spacing: 0.4px; color: var(--accent); padding: 6px 16px 6px 10px;
  background: var(--accent-dim); border: 1px solid rgba(201,165,92,0.18);
  border-radius: 100px; margin-bottom: 32px;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px var(--accent); animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.35; } }

.hero__title {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(44px, 6.5vw, 76px); line-height: 1.04;
  letter-spacing: -2px; color: var(--text); margin: 0;
}
.hero__title span {
  background: linear-gradient(135deg, #e8cfa0 0%, #C9A55C 50%, #a88b55 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 16px; line-height: 1.75; color: var(--text-2);
  max-width: 500px; margin-top: 26px;
}
.hero__ctas { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero__trust {
  display: flex; align-items: center; gap: 16px; margin-top: 44px;
  font-size: 11.5px; color: var(--text-3); letter-spacing: 1px;
  text-transform: uppercase; font-weight: 500;
}
.hero__trust-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); }

/* Hero card */
/* ── Hero constellation ── */
.hero__constellation { width: 100%; min-height: 380px; position: relative; }
.hero__constellation-svg { width: 100%; height: auto; }
.hero__node { animation: nodeIn 0.8s ease-out both; }
@keyframes nodeIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.hero__node-hub { animation: hubPulse 3s ease-in-out infinite; }
@keyframes hubPulse { 0%,100% { r: 6; } 50% { r: 7.5; } }

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrL 2.2s ease-in-out infinite;
}
@keyframes scrL {
  0% { opacity:0; transform:scaleY(0); transform-origin:top; }
  50% { opacity:1; transform:scaleY(1); }
  100% { opacity:0; transform:scaleY(0); transform-origin:bottom; }
}

/* ════════════════════ CAPABILITIES ════════════════════ */
.caps {
  padding: 120px 0; position: relative; background: var(--bg-alt);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.caps__layout { display: grid; grid-template-columns: 0.85fr 1fr; gap: 80px; align-items: start; }
.caps__left { position: sticky; top: 120px; }
.caps__heading {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(30px, 4.2vw, 48px); line-height: 1.1;
  letter-spacing: -0.8px; color: var(--text);
}
.caps__heading-accent {
  background: linear-gradient(135deg, #e8cfa0 0%, #C9A55C 50%, #a88b55 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.caps__right { display: flex; flex-direction: column; }
.caps__item {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 36px 0; border-bottom: 1px solid var(--border);
  transition: border-color 0.4s ease;
}
.caps__item:first-child { border-top: 1px solid var(--border); }
.caps__item:hover { border-color: var(--border-h); }
.caps__num {
  font-family: var(--heading); font-weight: 700; font-size: 32px;
  color: rgba(255,255,255,0.06); line-height: 1; flex-shrink: 0;
  min-width: 48px; transition: color 0.5s ease;
}
.caps__item:hover .caps__num { color: var(--accent); }
.caps__item-content { flex: 1; }
.caps__item-title {
  font-family: var(--heading); font-weight: 700; font-size: 18px;
  color: var(--text); letter-spacing: -0.3px; line-height: 1.3;
  transition: color 0.5s ease;
}
.caps__item:hover .caps__item-title { color: var(--accent); }
.caps__item-desc {
  font-size: 14.5px; color: var(--text-3); line-height: 1.6;
  margin-top: 8px; max-width: 420px; transition: color 0.5s ease;
}
.caps__item:hover .caps__item-desc { color: var(--text-2); }

/* ════════════════════ SECTIONS ════════════════════ */
.section { position: relative; padding: 120px 0; }
.section--alt { background: var(--bg-alt); }
.label {
  font-family: var(--sans); font-weight: 600; font-size: 11.5px;
  color: var(--accent); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 16px;
}
.h2 {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(30px, 4.2vw, 48px); line-height: 1.1;
  letter-spacing: -0.8px; color: var(--text); margin: 0;
}
.body-text { font-size: 15.5px; line-height: 1.75; color: var(--text-2); }
.text-accent { background: linear-gradient(135deg, #e8cfa0 0%, #C9A55C 50%, #a88b55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ════════════════════ WHAT WE DO ════════════════════ */
.wwd__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.wwd__bullet { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; }
.wwd__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); margin-top: 7px; flex-shrink: 0;
}
.wwd__text {
  font-size: 15px; color: var(--text-2); line-height: 1.6;
  transition: color 0.5s ease;
}
.wwd__bullet:hover .wwd__text { color: var(--text); }

.wwd__visual { position: relative; }
.wwd__img { border-radius: var(--r); overflow: hidden; position: relative; }
.wwd__img svg, .wwd__img img { display: block; width: 100%; height: auto; border-radius: var(--r); }

.wwd__quote {
  margin-top: 20px;
  border-radius: var(--r); padding: 1px;
  background: linear-gradient(135deg, rgba(201,165,92,0.45) 0%, rgba(201,165,92,0.12) 35%, rgba(201,165,92,0.04) 65%, rgba(201,165,92,0.2) 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.wwd__quote-inner {
  background: var(--bg-card); border-radius: calc(var(--r) - 1px); padding: 28px;
}
.wwd__quote-text {
  font-family: var(--heading); font-weight: 500; font-size: 15px;
  font-style: italic; color: var(--text); line-height: 1.55;
}
.wwd__quote-attr {
  font-family: var(--sans); font-size: 12.5px; color: var(--accent);
  margin-top: 14px; font-weight: 600; letter-spacing: 0.3px;
}

/* ════════════════════ WHY CORVIZE ════════════════════ */
.why__pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.why__pillar {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 32px; overflow: hidden;
  display: flex; flex-direction: column; gap: 16px; height: 100%;
  transition: border-color 0.5s ease, transform 0.5s var(--ease);
}
.why__pillar:hover { border-color: rgba(201,165,92,0.18); transform: translateY(-4px); }
.why__pillar-accent {
  width: 32px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(201,165,92,0.3));
}
.why__pillar-title {
  font-family: var(--heading); font-weight: 700; font-size: 20px;
  color: var(--text); letter-spacing: -0.3px; line-height: 1.25;
}
.why__pillar-desc {
  font-size: 14px; line-height: 1.7; color: var(--text-2); flex: 1;
}
.why__pillar-stat {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border);
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px;
}

/* ════════════════════ SERVICES ════════════════════ */
.svc__list { margin-top: 60px; }
.svc__item {
  display: grid; grid-template-columns: 1fr 1.1fr auto; align-items: center;
  gap: 32px; padding: 30px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: border-color 0.5s ease;
}
.svc__item:first-child { border-top: 1px solid var(--border); }
.svc__item:hover { border-color: var(--border-h); }
.svc__left { display: flex; align-items: baseline; gap: 16px; }
.svc__idx {
  font-family: var(--heading); font-weight: 500; font-size: 12px;
  color: var(--text-3); transition: color 0.5s ease; min-width: 20px;
}
.svc__item:hover .svc__idx { color: var(--accent); }
.svc__title {
  font-family: var(--heading); font-weight: 700; font-size: 18px;
  color: var(--text); letter-spacing: -0.3px; transition: color 0.5s ease;
}
.svc__item:hover .svc__title { color: var(--accent); }
.svc__desc {
  font-size: 13.5px; color: var(--text-3); line-height: 1.55;
  transition: color 0.5s ease;
}
.svc__item:hover .svc__desc { color: var(--text-2); }
.svc__arrow { color: var(--text-3); transition: color 0.5s ease; }
.svc__item:hover .svc__arrow { color: var(--accent); }
.svc__arrow svg { width: 14px; height: 14px; }

/* ════════════════════ PRODUCTS ════════════════════ */
.prod__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 60px; }
.prod__card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 28px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 290px;
  transition: border-color 0.5s ease, transform 0.5s var(--ease), box-shadow 0.5s ease;
  will-change: transform;
}
.prod__card:hover {
  border-color: rgba(201,165,92,0.18); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.prod__glow {
  position: absolute; top: -20px; right: -20px; width: 130px; height: 130px;
  border-radius: 50%; background: var(--accent-glo); filter: blur(60px); pointer-events: none;
}
.prod__tag {
  font-family: var(--sans); font-weight: 700; font-size: 10.5px;
  color: var(--accent); text-transform: uppercase; letter-spacing: 2.5px;
}
.prod__title {
  font-family: var(--heading); font-weight: 700; font-size: 23px;
  color: var(--text); margin-top: 10px; letter-spacing: -0.5px;
}
.prod__desc { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-top: 12px; }

/* ════════════════════ PROCESS ════════════════════ */
.proc__track { position: relative; margin-top: 60px; }
.proc__line-bg {
  position: absolute; top: 16px; left: 0; right: 0;
  height: 1px; background: var(--border); z-index: 0;
}
.proc__line-fill {
  position: absolute; top: 15px; left: 0; right: 0;
  height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(201,165,92,0.5));
  z-index: 1; transform-origin: left center; transform: scaleX(0);
  box-shadow: 0 0 16px rgba(201,165,92,0.25);
  transition: transform 0.15s linear;
}
.proc__grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 12px;
  position: relative; z-index: 2;
}
.proc__card { padding-top: 44px; position: relative; }
.proc__dot-wrap { position: absolute; top: 0; left: 0; }
.proc__dot {
  display: block; width: 12px; height: 12px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--border-h);
  position: relative; top: 10px;
  transition: border-color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}
.proc__dot--active {
  border-color: var(--accent); background: var(--accent);
  box-shadow: 0 0 14px rgba(201,165,92,0.4);
}
.proc__num {
  font-family: var(--heading); font-weight: 900; font-size: 11px;
  color: var(--text-3); letter-spacing: 1px; transition: color 0.5s ease;
}
.proc__num--active { color: var(--accent); }
.proc__title {
  font-family: var(--heading); font-weight: 700; font-size: 15px;
  color: var(--text); margin-top: 8px; letter-spacing: -0.2px;
}
.proc__desc { font-size: 12.5px; color: var(--text-3); line-height: 1.55; margin-top: 6px; }

/* ════════════════════ WORK ════════════════════ */
.work__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 60px; }
.work__card {
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  transition: transform 0.5s var(--ease); will-change: transform;
}
.work__card:hover { transform: translateY(-5px); }
.work__inner {
  position: relative; aspect-ratio: 4/3; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.work__card:hover .work__inner { border-color: var(--border-h); box-shadow: 0 16px 48px rgba(0,0,0,0.2); }
.work__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.work__meta {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px;
  background: linear-gradient(to top, rgba(11,13,15,0.92), transparent);
}
.work__label { display: block; font-family: var(--heading); font-weight: 700; font-size: 16px; color: var(--text); }
.work__sub { font-size: 12px; color: var(--text-3); margin-top: 2px; display: block; }
.work__dot {
  position: absolute; top: 14px; right: 14px; width: 7px; height: 7px;
  border-radius: 50%; opacity: 0.6;
}

/* ════════════════════ BLOG ════════════════════ */
.blog__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.blog__card {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; transition: border-color 0.5s ease, transform 0.5s var(--ease), box-shadow 0.5s ease;
  will-change: transform; height: 100%;
}
.blog__card:hover {
  border-color: rgba(201,165,92,0.15); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.blog__img { position: relative; overflow: hidden; aspect-ratio: 16/9; background: #111318; }
.blog__img svg { display: block; width: 100%; height: 100%; object-fit: cover; }
.blog__img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.blog__img-default { position: absolute; inset: 0; background: #111318; display: flex; align-items: center; justify-content: center; }
.blog__img-logo { width: 120px; height: auto; object-fit: contain; opacity: 0.5; transition: opacity 0.4s ease; }
.blog__card:hover .blog__img-logo { opacity: 0.7; }
.blog__tag {
  display: inline-block;
  font-family: var(--sans); font-weight: 600; font-size: 10.5px;
  color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 0; margin-bottom: 12px;
}
.blog__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog__title {
  font-family: var(--heading); font-weight: 700; font-size: 17px;
  color: var(--text); line-height: 1.35; letter-spacing: -0.2px;
  transition: color 0.4s ease;
}
.blog__card:hover .blog__title { color: var(--accent); }
.blog__excerpt { font-size: 13.5px; color: var(--text-3); line-height: 1.6; margin-top: 10px; flex: 1; }
.blog__meta {
  display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border); font-size: 12px; color: var(--text-3); font-weight: 500;
}
.blog__meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); display: inline-block; }

/* ════════════════════ FINAL CTA ════════════════════ */
.final-cta {
  position: relative; padding: 130px 0; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #10120e 100%);
}
.final-cta__orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.final-cta__orb--1 { width: 450px; height: 450px; top: -28%; left: 22%; background: rgba(201,165,92,0.06); }
.final-cta__orb--2 { width: 320px; height: 320px; bottom: -18%; right: 18%; background: rgba(168,140,80,0.04); }
.final-cta__title {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(30px, 4.8vw, 52px); line-height: 1.08;
  letter-spacing: -1.2px; color: var(--text); max-width: 620px; margin: 0 auto;
}

/* ════════════════════ CONTACT ════════════════════ */
.contact__form { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.contact__row { display: flex; gap: 16px; }
.form-label {
  display: block; font-size: 12.5px; font-weight: 500;
  color: var(--text-2); margin-bottom: 8px; letter-spacing: 0.3px;
}
.form-input {
  width: 100%; font-family: var(--sans); font-size: 14px;
  padding: 13px 16px; color: var(--text); border-radius: var(--r-sm);
  background: var(--bg-card); border: 1px solid var(--border); outline: none;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,165,92,0.08); }
.form-input::placeholder { color: var(--text-3); }
textarea.form-input { resize: vertical; }

.contact__ok {
  margin-top: 48px; padding: 48px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  display: none;
}
.contact__ok.show { display: block; }
.contact__ok-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-dim); color: var(--accent);
  font-size: 22px; font-weight: 700; margin-bottom: 16px;
}
.contact__ok p { font-family: var(--heading); font-weight: 700; font-size: 18px; color: var(--text); }

/* ════════════════════ FOOTER ════════════════════ */
.footer {
  border-top: 1px solid var(--border); padding: 72px 0 40px; background: var(--bg);
}
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 0.8fr; gap: 48px; }
.footer__tagline { font-size: 14px; color: var(--text-3); line-height: 1.65; max-width: 300px; margin-top: 16px; }
.footer__social { display: flex; gap: 8px; margin-top: 24px; }
.footer__social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text-3); text-decoration: none; transition: all 0.4s ease;
}
.footer__social-link:hover { color: var(--accent); border-color: rgba(201,165,92,0.2); background: var(--accent-dim); }
.footer__social-link svg { width: 18px; height: 18px; fill: currentColor; }
.footer__nav-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer__heading {
  font-weight: 600; font-size: 11px; color: var(--text-2);
  text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 18px;
}
.footer__link {
  display: block; font-size: 13.5px; color: var(--text-3); text-decoration: none;
  padding: 5px 0; transition: color 0.4s ease;
}
.footer__link:hover { color: var(--text); }
.footer__link--hl { color: var(--text-2); font-weight: 500; }
.footer__note { font-size: 13px; color: rgba(255,255,255,0.2); line-height: 1.5; }
.footer__bottom {
  border-top: 1px solid var(--border); margin-top: 52px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 11.5px; color: rgba(255,255,255,0.18); margin: 0; }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a {
  font-size: 11.5px; color: rgba(255,255,255,0.18); text-decoration: none;
  transition: color 0.3s ease;
}
.footer__bottom-links a:hover { color: var(--text-3); }

/* ════════════════════ RESPONSIVE ════════════════════ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .caps__layout { grid-template-columns: 1fr; gap: 48px; }
  .caps__left { position: static; }
  .proc__grid { grid-template-columns: repeat(3,1fr); gap: 28px; }
  .proc__line-bg, .proc__line-fill { display: none; }
  .proc__dot-wrap { display: none; }
  .proc__card { padding-top: 0; }
  .navbar__links, .navbar__actions { display: none; }
  .burger { display: flex; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .wwd__grid { grid-template-columns: 1fr; gap: 48px; }
  .wwd__quote { position: relative; left: 0; right: 0; bottom: 0; margin-top: -40px; }
  .why__pillars { grid-template-columns: 1fr; }
  .svc__item { grid-template-columns: 1fr; gap: 8px; }
  .svc__arrow { display: none; }
  .prod__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .work__grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 88px 0; }
  .footer__nav-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .caps__item { flex-direction: column; gap: 12px; }
  .caps__num { font-size: 24px; }
  .proc__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .work__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .contact__row { flex-direction: column; }
  .hero__title { font-size: clamp(34px, 10vw, 56px); }
  .hero__trust { flex-wrap: wrap; gap: 10px; }
}

/* ════════════════════ INNER PAGES ════════════════════ */
/* CORVIZE — SERVICE PAGE STYLES */

.svc-hero { position: relative; overflow: hidden; background: var(--bg); padding: 0; }
.svc-hero > .container { width: 100%; }
.svc-hero__content { max-width: 680px; position: relative; z-index: 2; }
.svc-hero .hero__orb--1 { width: 450px; height: 450px; top: -20%; right: -5%; background: rgba(201,165,92,0.05); }
.svc-hero .hero__orb--2 { width: 300px; height: 300px; bottom: -15%; left: -8%; background: rgba(168,140,100,0.03); animation-delay: -8s; }

.svc-hero__badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 500; font-size: 12.5px; letter-spacing: 0.4px; color: var(--accent); padding: 6px 16px 6px 10px; background: var(--accent-dim); border: 1px solid rgba(201,165,92,0.18); border-radius: 100px; margin-bottom: 28px; }
.svc-hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2.5s ease-in-out infinite; }

.svc-hero__title { font-family: var(--heading); font-weight: 700; font-size: clamp(44px, 6.5vw, 76px); line-height: 1.04; letter-spacing: -2px; color: var(--text); margin: 0; }
.svc-hero__title span { background: linear-gradient(135deg, #e8cfa0 0%, #C9A55C 50%, #a88b55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.svc-hero__body { font-size: 17px; line-height: 1.75; color: var(--text-2); max-width: 560px; margin-top: 24px; }
.svc-hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; padding-top: 180px; padding-bottom: 120px; position: relative; z-index: 2; }
.svc-hero__visual { width: 100%; min-height: 340px; position: relative; }
.svc-hero__visual svg { width: 100%; height: 100%; }
.svc-hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.svc-hero__trust { display: flex; align-items: center; gap: 16px; margin-top: 36px; font-size: 11.5px; color: var(--text-3); letter-spacing: 0.8px; text-transform: uppercase; font-weight: 500; flex-wrap: wrap; }
.svc-hero__trust-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); }

.svc-section { position: relative; padding: 100px 0; }
.svc-section--alt { background: var(--bg-alt); }
.svc-section__header { max-width: 600px; margin-bottom: 48px; }
.svc-section__header .h2 + p, .svc-intro .h2 + p { margin-top: 16px; color: var(--text-2); }

.svc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.svc-intro__lead { font-family: var(--heading); font-weight: 500; font-size: 18px; color: var(--text-2); line-height: 1.6; margin-top: 16px; margin-bottom: 36px; }
.svc-intro__list { display: flex; flex-direction: column; gap: 0; }
.svc-intro__item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.svc-intro__item:first-child { border-top: 1px solid var(--border); }
.svc-intro__check { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(201,165,92,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.svc-intro__check svg { width: 11px; height: 11px; }
.svc-intro__item-text { font-size: 15px; color: var(--text-2); line-height: 1.6; transition: color 0.4s ease; }
.svc-intro__item:hover .svc-intro__item-text { color: var(--text); }

.svc-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.svc-features > .reveal { height: 100%; }
.svc-feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 32px 28px; overflow: hidden; position: relative; transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s var(--ease); will-change: transform; height: 100%; display: flex; flex-direction: column; }
.svc-feature-card:hover { border-color: rgba(201,165,92,0.15); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }
.svc-feature-card__num { font-family: var(--heading); font-weight: 900; font-size: 28px; color: rgba(201,165,92,0.08); line-height: 1; margin-bottom: 16px; }
.svc-feature-card__title { font-family: var(--heading); font-weight: 700; font-size: 16px; color: var(--text); letter-spacing: -0.2px; margin-bottom: 8px; }
.svc-feature-card__desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.svc-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.svc-checklist__item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; color: var(--text-2); transition: color 0.4s ease; }
.svc-checklist__item:hover { color: var(--text); }
.svc-checklist__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; opacity: 0.7; }

.svc-timeline { max-width: 640px; }
.svc-timeline__step { display: flex; gap: 24px; position: relative; padding-bottom: 40px; }
.svc-timeline__step:last-child { padding-bottom: 0; }
.svc-timeline__step:last-child .svc-timeline__line { display: none; }
.svc-timeline__marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.svc-timeline__dot { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(201,165,92,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--heading); font-weight: 900; font-size: 11px; color: var(--accent); letter-spacing: 0.5px; }
.svc-timeline__line { width: 1px; flex: 1; margin-top: 8px; background: linear-gradient(to bottom, rgba(201,165,92,0.2), var(--border)); }
.svc-timeline__content { padding-top: 6px; }
.svc-timeline__title { font-family: var(--heading); font-weight: 700; font-size: 16px; color: var(--text); letter-spacing: -0.2px; }
.svc-timeline__desc { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-top: 6px; }

.svc-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc-tier { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 36px 28px; position: relative; overflow: hidden; transition: border-color 0.5s ease, transform 0.5s var(--ease), box-shadow 0.5s ease; }
.svc-tier:hover { border-color: rgba(201,165,92,0.18); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.svc-tier--featured { border-color: rgba(201,165,92,0.2); }
.svc-tier--featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.svc-tier__label { font-family: var(--sans); font-weight: 700; font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.svc-tier__title { font-family: var(--heading); font-weight: 700; font-size: 22px; color: var(--text); letter-spacing: -0.3px; }
.svc-tier__desc { font-size: 13.5px; color: var(--text-3); line-height: 1.55; margin-top: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.svc-tier__features { list-style: none; padding: 0; margin: 0; }
.svc-tier__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-2); line-height: 1.5; padding: 7px 0; }
.svc-tier__features li::before { content: '\2713'; color: var(--accent); font-weight: 700; font-size: 12px; margin-top: 2px; flex-shrink: 0; }

.svc-faq { max-width: 680px; margin: 0 auto; }

/* Phase card grid */
.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 48px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.phase-card { background: var(--bg-card); padding: 36px 32px; height: 100%; display: flex; flex-direction: column; }
.phase-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 32px; }
.phase-card__num { font-family: var(--heading); font-weight: 700; font-size: clamp(36px, 4vw, 48px); line-height: 1; color: rgba(201,165,92,0.08); letter-spacing: -2px; }
.phase-card__tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: flex-end; }
.phase-card__tag { font-family: var(--sans); font-weight: 600; font-size: 9px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(201,165,92,0.12); padding: 3px 10px; border-radius: 100px; }
.phase-card__title { font-family: var(--heading); font-weight: 700; font-size: 19px; color: var(--text); letter-spacing: -0.3px; margin-bottom: 14px; }
.phase-card__desc { font-size: 14px; line-height: 1.7; color: var(--text-3); }
.svc-faq__item { border-bottom: 1px solid var(--border); cursor: pointer; }
.svc-faq__item:first-child { border-top: 1px solid var(--border); }
.svc-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font-family: var(--heading); font-weight: 700; font-size: 16px; color: var(--text); letter-spacing: -0.2px; transition: color 0.4s ease; }
.svc-faq__item:hover .svc-faq__q { color: var(--accent); }
.svc-faq__icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.4s ease; color: var(--text-3); font-size: 16px; line-height: 1; }
.svc-faq__item.open .svc-faq__icon { border-color: rgba(201,165,92,0.2); color: var(--accent); background: var(--accent-dim); transform: rotate(45deg); }
.svc-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease), padding 0.5s var(--ease); padding: 0; }
.svc-faq__item.open .svc-faq__a { max-height: 200px; padding: 0 0 24px; }
.svc-faq__a p { font-size: 14.5px; color: var(--text-2); line-height: 1.7; margin: 0; }

.svc-bottom-cta { position: relative; padding: 100px 0; overflow: hidden; background: linear-gradient(180deg, var(--bg) 0%, #10120e 100%); }
.svc-bottom-cta__orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.svc-bottom-cta__orb--1 { width: 400px; height: 400px; top: -25%; left: 20%; background: rgba(201,165,92,0.05); }
.svc-bottom-cta__orb--2 { width: 280px; height: 280px; bottom: -15%; right: 15%; background: rgba(168,140,80,0.03); }
.svc-bottom-cta .reveal { text-align: center; }
.svc-bottom-cta .final-cta__title { margin-left: auto; margin-right: auto; }
.svc-bottom-cta .body-text { margin-left: auto; margin-right: auto; }
.svc-bottom-cta .btn { display: inline-flex; }
.final-cta .reveal { text-align: center; }
.final-cta .final-cta__title { margin-left: auto; margin-right: auto; }
.final-cta .body-text { margin-left: auto; margin-right: auto; }
.final-cta .btn { display: inline-flex; }

.svc-addons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-addon { display: flex; align-items: flex-start; gap: 12px; padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-sm); font-size: 14px; color: var(--text-2); line-height: 1.5; transition: border-color 0.4s ease; }
.svc-addon:hover { border-color: var(--border-h); }
.svc-addon__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-top: 7px; flex-shrink: 0; }

.svc-note { font-size: 14px; color: var(--text-3); line-height: 1.6; max-width: 560px; margin-top: 16px; font-style: italic; }

@media (max-width: 768px) {
  .svc-intro { grid-template-columns: 1fr; gap: 40px; }
  .svc-features { grid-template-columns: 1fr; }
  .svc-checklist { grid-template-columns: 1fr; }
  .svc-tiers { grid-template-columns: 1fr; }
  .svc-addons { grid-template-columns: 1fr; }
  .svc-section { padding: 80px 0; }
  .phase-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .svc-hero__title { font-size: clamp(34px, 10vw, 56px); letter-spacing: -1.5px; }
  .svc-hero__grid { grid-template-columns: 1fr; gap: 48px; padding-top: 130px; padding-bottom: 60px; }
  .svc-hero__visual { display: none; }
}

/* ── Contact page layout ── */
.contact-page__layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.contact-page__form-wrap .contact__form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 36px 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-page__form-wrap .contact__row { display: flex; gap: 16px; }
.contact-page__form-wrap select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.contact-page__info-block {}
.contact-page__info-title { font-family: var(--heading); font-weight: 700; font-size: 18px; color: var(--text); letter-spacing: -0.3px; }
.contact-page__links { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.contact-page__link { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); text-decoration: none; transition: color 0.4s ease; }
.contact-page__link:hover { color: var(--accent); }
.contact-page__link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Blog pagination ── */
.blog__pagination { display: flex; align-items: center; justify-content: center; gap: 6px; }
.blog__pagination a, .blog__pagination span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; font-family: var(--sans); font-weight: 600; font-size: 13px; color: var(--text-2); background: var(--bg-card); border: 1px solid var(--border); text-decoration: none; transition: all 0.4s ease; }
.blog__pagination a:hover { border-color: var(--border-h); color: var(--text); }
.blog__pagination .current { background: var(--accent-dim); border-color: rgba(201,165,92,0.2); color: var(--accent); }

/* Blog page overrides (inside svc-section) */
.svc-section .blog__grid { margin-top: 0; gap: 24px; }
.svc-section .blog__grid > .reveal { display: flex; }
.svc-section .blog__grid > .reveal > .blog__card { flex: 1; }

/* Compact hero for archive / search / 404 */
.svc-hero--compact { padding: 140px 0 60px; }
.svc-hero--compact .svc-hero__title { font-size: clamp(30px, 4.5vw, 48px); letter-spacing: -1.2px; }
.svc-hero--compact .svc-hero__body { font-size: 15px; margin-top: 16px; max-width: 480px; }

@media (max-width: 768px) {
  .contact-page__layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-page__form-wrap .contact__row { flex-direction: column; gap: 20px; }
}

/* ── Single post ── */
.single-post__layout { display: grid; grid-template-columns: 1fr 240px; gap: 64px; align-items: start; }
.single-post__featured { margin-bottom: 36px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.single-post__featured img { width: 100%; height: auto; display: block; }
.single-post__body { font-size: 16px; color: var(--text-2); line-height: 1.8; }
.single-post__body h2, .single-post__body h3, .single-post__body h4 { font-family: var(--heading); color: var(--text); margin-top: 40px; margin-bottom: 16px; }
.single-post__body h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.3px; }
.single-post__body h3 { font-size: 20px; font-weight: 700; }
.single-post__body p { margin-bottom: 20px; }
.single-post__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.single-post__body a:hover { color: var(--text); }
.single-post__body ul, .single-post__body ol { padding-left: 24px; margin-bottom: 20px; }
.single-post__body li { margin-bottom: 8px; }
.single-post__body blockquote { border-left: 2px solid var(--accent); padding-left: 20px; margin: 32px 0; color: var(--text); font-style: italic; }
.single-post__body img { max-width: 100%; height: auto; border-radius: var(--r-sm); margin: 24px 0; }
.single-post__body pre { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 20px; overflow-x: auto; margin: 24px 0; font-size: 13px; }
.single-post__body code { font-size: 0.9em; background: rgba(255,255,255,0.04); padding: 2px 6px; border-radius: 4px; }
.single-post__body pre code { background: none; padding: 0; }

.single-post__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.single-post__tag { display: inline-flex; padding: 6px 14px; border-radius: 100px; font-family: var(--sans); font-size: 12px; font-weight: 500; color: var(--text-2); background: var(--bg-card); border: 1px solid var(--border); text-decoration: none; transition: all 0.4s ease; }
.single-post__tag:hover { border-color: rgba(201,165,92,0.2); color: var(--accent); }

.single-post__sidebar { position: sticky; top: 120px; }
.single-post__sidebar-block { padding: 16px 0; border-bottom: 1px solid var(--border); }
.single-post__sidebar-block:first-child { padding-top: 0; }
.single-post__sidebar-label { font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.single-post__sidebar-value { font-size: 14px; color: var(--text); font-weight: 500; }
.single-post__sidebar-cta { margin-top: 32px; padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); }

@media (max-width: 768px) {
  .single-post__layout { grid-template-columns: 1fr; gap: 40px; }
  .single-post__sidebar { position: static; display: flex; flex-wrap: wrap; gap: 20px; }
  .single-post__sidebar-block { padding: 0; border-bottom: none; }
}

/* ── Services landing page ── */
.services-page__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.services-page__card {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 40px 36px; position: relative; overflow: hidden;
  text-decoration: none; transition: border-color 0.4s ease;
}
.services-page__card:hover { border-color: var(--border-h); }
.services-page__card-glow {
  position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,165,92,0.3), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.services-page__card:hover .services-page__card-glow { opacity: 1; }
.services-page__card-num { font-family: var(--heading); font-size: 14px; font-weight: 700; color: var(--accent); opacity: 0.5; }
.services-page__card-title { font-family: var(--heading); font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.services-page__card-desc { font-size: 14px; line-height: 1.7; color: var(--text-2); }

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