/* ============================================================
   OPEIS GROUP — v17 · Luxury Dark Warm
   Aesthetic: Deep Black · Gold Accents · Serif Authority
   Fonts: Playfair Display (headings) + DM Sans (body) + Fira Code (mono)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=Fira+Code:wght@400;500&display=swap');

/* ─── Design Tokens ──────────────────────────────────── */
:root {
  /* Surfaces */
  --ink:        #080a0f;
  --ink-1:      #0d1018;
  --ink-2:      #121620;
  --ink-3:      #171c2a;
  --ink-4:      #1d2435;

  /* Borders */
  --rule:       rgba(255,255,255,.06);
  --rule-2:     rgba(255,255,255,.10);
  --rule-3:     rgba(255,255,255,.15);

  /* Text */
  --txt:        #f0ece4;
  --txt-2:      #a89f94;
  --txt-3:      #65604f;

  /* Brand — Gold */
  --gold:       #c9a84c;
  --gold-lt:    #e4c06e;
  --gold-dk:    #9a7828;
  --gold-dim:   rgba(201,168,76,.10);
  --gold-rim:   rgba(201,168,76,.22);

  /* Accents */
  --teal:       #2dd4bf;
  --teal-dim:   rgba(45,212,191,.10);
  --red:        #ef4444;
  --green:      #22c55e;
  --blue:       #3b82f6;

  /* Gradients */
  --g-gold:     linear-gradient(135deg, #c9a84c 0%, #e4c06e 50%, #c9a84c 100%);
  --g-card:     linear-gradient(160deg, #171c2a 0%, #0d1018 100%);
  --g-hero:     linear-gradient(160deg, #1d2435 0%, #0d1018 100%);

  /* Fonts */
  --f-serif:    'Playfair Display', Georgia, serif;
  --f-sans:     'DM Sans', system-ui, sans-serif;
  --f-mono:     'Fira Code', monospace;

  /* Spacing */
  --gap:        clamp(16px, 2vw, 24px);

  /* Radii */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  /* Easing */
  --ease-s: cubic-bezier(.34,1.56,.64,1);
  --ease-o: cubic-bezier(.16,1,.3,1);
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background: var(--ink);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ─── Layout ─────────────────────────────────────────── */
.site-container { width: min(1200px, calc(100% - 64px)); margin: 0 auto; }

/* ─── Public body ────────────────────────────────────── */
.site-body-premium {
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(201,168,76,.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(45,212,191,.05) 0%, transparent 55%),
    var(--ink);
}
.site-body-premium::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ─── HEADER ─────────────────────────────────────────── */
.premium-header {
  position: sticky; top: 0; z-index: 200;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  background: rgba(8,10,15,.88);
  border-bottom: 1px solid var(--rule);
  transition: background .4s;
}
.premium-header.scrolled { background: rgba(8,10,15,.97); }
.premium-navbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 16px 0;
}
.premium-brand {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--f-serif); font-weight: 700; font-size: 20px;
  letter-spacing: .01em; white-space: nowrap; flex-shrink: 0;
  color: var(--txt);
}
.brand-badge {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--g-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-sans); font-size: 11px; font-weight: 700;
  color: var(--ink); flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(201,168,76,.30);
}
.premium-nav-links { display: flex; gap: 2px; align-items: center; }
.premium-nav-links a {
  padding: 7px 15px; border-radius: var(--r-sm);
  color: var(--txt-2); font-size: 14px; font-weight: 400;
  transition: color .15s, background .15s; letter-spacing: .01em;
}
.premium-nav-links a:hover,
.premium-nav-links a.active { color: var(--txt); background: rgba(255,255,255,.06); }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r-md);
  font-family: var(--f-sans); font-weight: 500; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .22s var(--ease-s), box-shadow .22s, opacity .15s;
  letter-spacing: .01em; position: relative; overflow: hidden;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0);    }
.btn-sm { padding: 8px 17px; font-size: 13px; border-radius: var(--r-sm); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--r-lg); font-weight: 500; }

.btn-primary {
  background: var(--g-gold); color: var(--ink); font-weight: 600;
  box-shadow: 0 4px 22px rgba(201,168,76,.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(201,168,76,.50); }

.btn-outline {
  background: transparent; border-color: var(--rule-3);
  color: var(--txt-2);
}
.btn-outline:hover { border-color: var(--gold-rim); color: var(--gold-lt); background: var(--gold-dim); }

.btn-ghost {
  background: transparent; border: none; padding: 0;
  color: var(--gold); font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s, color .15s;
}
.btn-ghost:hover { gap: 10px; color: var(--gold-lt); transform: none; }
.btn-ghost::after { content: '→'; }

/* ─── CHIP / LABEL ───────────────────────────────────── */
.section-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 13px; border-radius: var(--r-xs);
  background: var(--gold-dim); border: 1px solid var(--gold-rim);
  color: var(--gold-lt); font-size: 10px; font-weight: 600;
  letter-spacing: .16em; font-family: var(--f-mono); text-transform: uppercase;
}
.section-chip::before { content: '◆'; font-size: 7px; }
.section-chip.pink   { background: rgba(45,212,191,.08); border-color: rgba(45,212,191,.2);  color: var(--teal); }
.section-chip.amber  { background: var(--gold-dim);      border-color: var(--gold-rim);       color: var(--gold-lt); }
.section-chip.violet { background: rgba(139,92,246,.08); border-color: rgba(139,92,246,.2);  color: #c4b5fd; }
.section-chip.mint   { background: rgba(34,197,94,.08);  border-color: rgba(34,197,94,.2);   color: #86efac; }

/* ─── HERO ───────────────────────────────────────────── */
.hero-v2 { padding: 108px 0 96px; position: relative; z-index: 1; }
.hero-v2-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; min-height: 560px;
}

/* Decorative vertical line */
.hero-v2::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--rule-2) 30%, var(--rule-2) 70%, transparent);
  pointer-events: none; z-index: 0;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 40px; height: 1px; background: var(--gold);
}

.hero-v2-copy h1 {
  font-family: var(--f-serif);
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.10; letter-spacing: -.01em;
  font-weight: 800; color: var(--txt);
}
.hero-v2-copy h1 em {
  font-style: italic; color: var(--gold-lt);
}
.hero-v2-copy p {
  margin-top: 24px; max-width: 480px;
  color: var(--txt-2); font-size: 17px; line-height: 1.85; font-weight: 300;
}
.hero-v2-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; align-items: center; }
.hero-v2-actions.center { justify-content: center; }

.hero-social-proof { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--rule); }
.proof-avatars { display: flex; }
.proof-avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--g-gold); margin-left: -9px;
  border: 2px solid var(--ink); font-size: 9px; font-weight: 700; color: var(--ink);
}
.proof-avatars span:first-child { margin-left: 0; }
.proof-text strong { color: var(--gold-lt); font-size: 13px; font-weight: 600; display: block; }
.proof-text span   { font-size: 12px; color: var(--txt-3); display: block; margin-top: 2px; }

/* ─── Terminal ───────────────────────────────────────── */
.hero-v2-visual { position: relative; z-index: 1; }
.terminal-card {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--g-card);
  border: 1px solid var(--rule-2);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.04);
  position: relative;
}
.terminal-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(201,168,76,.5) 50%, transparent 95%);
}
.terminal-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--rule);
  background: rgba(0,0,0,.25);
}
.terminal-dots { display: flex; gap: 7px; }
.terminal-dots span { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.terminal-dots span:nth-child(2) { background: #f59e0b; }
.terminal-dots span:nth-child(3) { background: #22c55e; }
.terminal-badge {
  padding: 4px 12px; border-radius: var(--r-xs);
  background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.2);
  color: #86efac; font-size: 11px; font-weight: 500; font-family: var(--f-mono);
}
.terminal-body { padding: 26px; }
.terminal-title { font-family: var(--f-mono); font-size: 10px; color: var(--txt-3); letter-spacing: .15em; margin-bottom: 18px; text-transform: uppercase; }
.terminal-line { font-family: var(--f-mono); font-size: 13px; line-height: 2.1; color: #3d4a60; }
.terminal-line.accent { color: var(--gold); font-weight: 500; }
.terminal-line .ok   { color: #86efac; }
.terminal-cursor::after { content: '▋'; animation: blink 1s step-start infinite; font-size: 11px; opacity: .8; }
@keyframes blink { 50% { opacity: 0; } }

.floating-mini-card {
  position: absolute; left: -20px; bottom: 30px;
  background: rgba(13,16,24,.97);
  border: 1px solid var(--gold-rim); border-radius: var(--r-lg);
  padding: 15px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  display: flex; align-items: center; gap: 13px;
}
.floating-mini-card-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: var(--gold-dim); border: 1px solid var(--gold-rim);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.floating-mini-card-icon svg { width: 18px; height: 18px; }
.floating-mini-card strong { display: block; font-size: 17px; font-family: var(--f-serif); font-weight: 700; color: var(--txt); }
.floating-mini-card span   { display: block; color: var(--txt-3); font-size: 11px; margin-top: 2px; font-family: var(--f-mono); }

/* ─── LOGO STRIP ─────────────────────────────────────── */
.logo-strip { padding: 44px 0; position: relative; z-index: 1; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.logo-strip-label { text-align: center; font-size: 10px; color: var(--txt-3); text-transform: uppercase; letter-spacing: .18em; font-family: var(--f-mono); margin-bottom: 24px; }
.logo-strip-track { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.logo-pill {
  padding: 8px 28px; border-right: 1px solid var(--rule);
  color: var(--txt-3); font-size: 12.5px; font-weight: 500;
  font-family: var(--f-sans); transition: color .2s; white-space: nowrap;
  letter-spacing: .02em;
}
.logo-pill:last-child { border-right: 0; }
.logo-pill:hover { color: var(--gold-lt); }

/* ─── STATS ──────────────────────────────────────────── */
.stats-strip { padding: 0 0 96px; position: relative; z-index: 1; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--rule-2); border-radius: var(--r-lg);
  overflow: hidden; background: var(--ink-2);
}
.stat-v2 {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid var(--rule); position: relative;
  transition: background .25s;
}
.stat-v2:last-child { border-right: 0; }
.stat-v2:hover { background: rgba(201,168,76,.03); }
.stat-v2::after {
  content: ''; position: absolute; bottom: 0; left: 24px; right: 24px; height: 1px;
  background: var(--g-gold); opacity: 0; transition: opacity .3s;
}
.stat-v2:hover::after { opacity: .4; }
.stat-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--gold); opacity: .55; }
.stat-icon svg { width: 22px; height: 22px; }
.stat-v2 strong {
  display: block; font-size: 46px; line-height: 1.05;
  font-family: var(--f-serif); font-weight: 700; letter-spacing: -.02em;
  margin-bottom: 10px; color: var(--gold-lt);
}
.stat-v2 span { color: var(--txt-3); text-transform: uppercase; font-size: 11px; letter-spacing: .12em; font-family: var(--f-mono); }

/* ─── SECTIONS ───────────────────────────────────────── */
.section-block { padding: 112px 0; position: relative; z-index: 1; }
.alt-surface {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink-1) 100%);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.section-title-center { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.section-title-center h2 {
  font-family: var(--f-serif);
  font-size: clamp(36px, 4.2vw, 62px); letter-spacing: -.01em; line-height: 1.12;
  font-weight: 800; margin-top: 16px; color: var(--txt);
}
.section-title-center h2 em { font-style: italic; color: var(--gold-lt); }
.section-title-center p { margin-top: 16px; color: var(--txt-2); font-size: 17px; line-height: 1.85; font-weight: 300; }

/* ─── SERVICE CARDS ──────────────────────────────────── */
.service-grid-v2, .project-grid-v2, .team-grid-v2, .blog-grid-v2 {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.service-card-v2 {
  position: relative; padding: 36px 32px;
  background: var(--g-card); border: 1px solid var(--rule);
  border-radius: var(--r-lg); min-height: 300px;
  transition: border-color .3s, box-shadow .3s, transform .28s var(--ease-s);
  overflow: hidden;
}
.service-card-v2::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--g-gold); opacity: 0; transition: opacity .3s;
}
.service-card-v2:hover {
  transform: translateY(-6px);
  border-color: var(--gold-rim);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 40px rgba(201,168,76,.05);
}
.service-card-v2:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim); border: 1px solid var(--gold-rim); color: var(--gold);
}
.service-icon svg { width: 22px; height: 22px; }
.service-arrow {
  position: absolute; top: 28px; right: 28px; color: var(--txt-3);
  transition: color .25s, transform .25s;
}
.service-arrow svg { width: 18px; height: 18px; }
.service-card-v2:hover .service-arrow { color: var(--gold); transform: translate(3px,-3px); }
.service-card-v2 h3 {
  font-family: var(--f-serif); font-size: 24px; margin-top: 24px; margin-bottom: 12px;
  letter-spacing: -.01em; font-weight: 700; line-height: 1.25; color: var(--txt);
}
.service-card-v2 p { color: var(--txt-2); font-size: 15px; line-height: 1.82; }
.service-tags, .project-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 22px; }
.service-tags span, .project-tags span {
  padding: 4px 10px; border-radius: var(--r-xs);
  background: rgba(255,255,255,.04); border: 1px solid var(--rule);
  color: var(--txt-3); font-size: 11px; font-family: var(--f-mono);
}
.section-center-action { text-align: center; margin-top: 44px; }

/* ─── PROJECT CARDS ──────────────────────────────────── */
.project-card-v2 {
  background: var(--g-card); border: 1px solid var(--rule);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .28s var(--ease-s);
}
.project-card-v2:hover {
  transform: translateY(-6px); border-color: var(--gold-rim);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.project-image-placeholder {
  height: 185px;
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(45,212,191,.06));
  display: flex; align-items: flex-end; padding: 16px;
}
.project-image-placeholder span {
  padding: 4px 10px; border-radius: var(--r-xs);
  background: var(--gold-dim); border: 1px solid var(--gold-rim);
  color: var(--gold-lt); font-size: 11px; font-weight: 500; font-family: var(--f-mono);
}
.project-content { padding: 26px; }
.project-kicker {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  color: var(--gold); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 9px;
}
.project-content h3 {
  font-family: var(--f-serif); font-size: 23px; letter-spacing: -.01em; font-weight: 700; line-height: 1.25; color: var(--txt);
}
.project-content p { margin-top: 10px; color: var(--txt-2); font-size: 14.5px; line-height: 1.78; }

/* ─── WHY SECTION ────────────────────────────────────── */
.why-grid-v2 { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: start; }
.why-copy h2 {
  font-family: var(--f-serif); font-size: clamp(36px,4.2vw,62px); letter-spacing: -.01em; font-weight: 800; line-height: 1.12; color: var(--txt);
}
.why-copy h2 em { font-style: italic; color: var(--gold-lt); }
.why-copy p { margin-top: 20px; color: var(--txt-2); font-size: 17px; line-height: 1.85; font-weight: 300; }
.why-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.why-feature-item {
  padding: 20px 18px; border-radius: var(--r-md);
  background: rgba(255,255,255,.025); border: 1px solid var(--rule);
  transition: border-color .25s, background .25s;
}
.why-feature-item:hover { border-color: var(--gold-rim); background: var(--gold-dim); }
.why-feature-item strong { display: block; font-size: 15px; font-family: var(--f-sans); font-weight: 600; margin-bottom: 6px; color: var(--txt); }
.why-feature-item span   { color: var(--txt-3); font-size: 13.5px; line-height: 1.7; display: block; }

.why-stats-stack { display: flex; flex-direction: column; gap: 14px; }
.stack-card {
  padding: 26px; border-radius: var(--r-lg);
  background: var(--g-card); border: 1px solid var(--rule);
  transition: transform .25s var(--ease-s), border-color .25s;
}
.stack-card:hover { transform: translateX(6px); }
.stack-card-label { font-size: 10px; color: var(--txt-3); text-transform: uppercase; letter-spacing: .14em; font-family: var(--f-mono); margin-bottom: 8px; }
.stack-card strong { display: block; font-size: 21px; font-family: var(--f-serif); font-weight: 700; margin-bottom: 5px; color: var(--txt); }
.stack-card span   { display: block; color: var(--txt-2); font-size: 13.5px; }
.stack-card.amber  strong { color: var(--gold-lt); } .stack-card.amber:hover  { border-color: var(--gold-rim); }
.stack-card.cyan   strong { color: var(--teal);    } .stack-card.cyan:hover   { border-color: rgba(45,212,191,.25); }
.stack-card.green  strong { color: #86efac;        } .stack-card.green:hover  { border-color: rgba(34,197,94,.25); }
.stack-card.purple strong { color: #c4b5fd;        } .stack-card.purple:hover { border-color: rgba(139,92,246,.25); }

/* ─── TEAM ───────────────────────────────────────────── */
.team-card-v2 {
  padding: 34px; text-align: center;
  background: var(--g-card); border: 1px solid var(--rule); border-radius: var(--r-lg);
  transition: transform .28s var(--ease-s), border-color .3s;
}
.team-card-v2:hover { transform: translateY(-6px); border-color: var(--gold-rim); }
.team-avatar {
  width: 80px; height: 80px; border-radius: var(--r-lg);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim); border: 1px solid var(--gold-rim);
  font-size: 22px; font-weight: 700; color: var(--gold-lt); font-family: var(--f-serif);
}
.team-avatar.pink { background: rgba(45,212,191,.08); border-color: rgba(45,212,191,.22); color: var(--teal); }
.team-card-v2 h3 { font-family: var(--f-serif); font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--txt); }
.team-card-v2 p  { color: var(--gold); font-size: 12px; font-family: var(--f-mono); letter-spacing: .05em; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonial-big-wrap { max-width: 860px; margin: 0 auto; display: grid; gap: 18px; }
.testimonial-big-card {
  padding: 36px; background: var(--g-card); border: 1px solid var(--rule);
  border-radius: var(--r-lg); position: relative; overflow: hidden;
}
.testimonial-big-card::before {
  content: '"';
  position: absolute; top: -14px; left: 24px;
  font-size: 120px; color: var(--gold); opacity: .06;
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 16px; display: flex; gap: 2px; align-items: center; }
.stars svg { width: 16px; height: 16px; flex-shrink: 0; }
.testimonial-big-card p { font-size: 17px; line-height: 1.85; color: var(--txt-2); font-style: italic; font-family: var(--f-sans); font-weight: 300; }
.testimonial-author { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--rule); display: flex; align-items: center; gap: 13px; }
.testimonial-author-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--g-gold); font-size: 12px; font-weight: 700; color: var(--ink);
}
.testimonial-author strong { display: block; font-size: 15px; font-family: var(--f-serif); font-weight: 700; color: var(--txt); }
.testimonial-author span   { display: block; color: var(--txt-3); margin-top: 3px; font-size: 11.5px; font-family: var(--f-mono); }

/* ─── BLOG CARDS ─────────────────────────────────────── */
.blog-card-v2 {
  background: var(--g-card); border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .28s var(--ease-s);
}
.blog-card-v2:hover { transform: translateY(-6px); border-color: var(--gold-rim); box-shadow: 0 20px 55px rgba(0,0,0,.4); }
.blog-card-thumb {
  height: 182px;
  background: linear-gradient(135deg, rgba(201,168,76,.07), rgba(45,212,191,.05));
  display: flex; align-items: flex-end; padding: 16px; overflow: hidden;
}
.blog-card-thumb span {
  padding: 4px 10px; border-radius: var(--r-xs);
  background: var(--gold-dim); border: 1px solid var(--gold-rim);
  color: var(--gold-lt); font-size: 11px; font-weight: 500; font-family: var(--f-mono);
}
.blog-card-content { padding: 24px; }
.blog-meta-line { font-size: 11px; color: var(--txt-3); margin-bottom: 10px; font-family: var(--f-mono); letter-spacing: .06em; }
.blog-card-content h3 { font-family: var(--f-serif); font-size: 20px; letter-spacing: -.01em; line-height: 1.3; font-weight: 700; color: var(--txt); }
.blog-card-content p  { margin-top: 9px; color: var(--txt-2); font-size: 14px; line-height: 1.78; }
.inline-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; color: var(--gold); font-weight: 500; font-size: 13px; transition: gap .18s, color .15s; }
.inline-link:hover { gap: 9px; color: var(--gold-lt); }
.inline-link::after { content: '→'; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-wrap-v2 { max-width: 860px; margin: 0 auto; }
.faq-accordion-v2 { display: flex; flex-direction: column; gap: 8px; }
.faq-row-v2 {
  border-radius: var(--r-md); background: var(--g-card);
  border: 1px solid var(--rule); overflow: hidden; transition: border-color .25s;
}
.faq-row-v2[open] { border-color: var(--gold-rim); }
.faq-row-v2 summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-size: 15.5px; font-weight: 500; color: var(--txt);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .15s;
}
.faq-row-v2 summary::-webkit-details-marker { display: none; }
.faq-row-v2 summary::after {
  content: '+'; flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 6px;
  border: 1px solid var(--rule-2); background: rgba(255,255,255,.025);
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-3); font-size: 18px; font-weight: 300;
  transition: color .2s, border-color .2s;
}
.faq-row-v2[open] summary::after { content: '−'; border-color: var(--gold-rim); color: var(--gold); }
.faq-row-v2 summary:hover { color: var(--gold-lt); }
.faq-answer-v2 { padding: 0 24px 20px; color: var(--txt-2); font-size: 15px; line-height: 1.85; font-weight: 300; }

/* ─── CTA ────────────────────────────────────────────── */
.final-cta-v2 {
  padding: 128px 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(201,168,76,.07), transparent),
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(45,212,191,.05), transparent),
    var(--ink-2);
  border-top: 1px solid var(--rule); position: relative; z-index: 1;
}
.final-cta-v2 .site-container { text-align: center; max-width: 820px; }
.final-cta-v2 h2 {
  font-family: var(--f-serif);
  font-size: clamp(40px, 5vw, 72px); line-height: 1.10;
  letter-spacing: -.01em; margin-top: 18px; font-weight: 800; color: var(--txt);
}
.final-cta-v2 h2 em { font-style: italic; color: var(--gold-lt); }
.final-cta-v2 p { margin: 18px auto 0; max-width: 620px; color: var(--txt-2); font-size: 17.5px; line-height: 1.82; font-weight: 300; }
.cta-mini-points {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin-top: 26px; color: var(--txt-3); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .12em; font-family: var(--f-mono);
}
.cta-mini-points span::before { content: '✓  '; color: var(--gold); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer-v2 { padding: 64px 0 26px; border-top: 1px solid var(--rule); background: var(--ink-1); position: relative; z-index: 1; }
.footer-v2-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 36px; }
.footer-brand-v2 { font-family: var(--f-serif); font-size: 19px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 11px; }
.footer-brand-col p { color: var(--txt-3); font-size: 14px; line-height: 1.82; max-width: 320px; }
.footer-v2 h4 { font-size: 10px; margin-bottom: 16px; color: var(--txt-2); text-transform: uppercase; letter-spacing: .16em; font-family: var(--f-mono); font-weight: 500; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a { color: var(--txt-3); font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom-v2 { border-top: 1px solid var(--rule); margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; color: var(--txt-3); font-size: 12px; font-family: var(--f-mono); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--gold-lt); }

/* ─── WHATSAPP ───────────────────────────────────────── */
.floating-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 300;
  background: linear-gradient(135deg,#16a34a,#059669);
  padding: 12px 20px; border-radius: 999px;
  color: #fff; font-weight: 500; font-size: 13.5px;
  box-shadow: 0 6px 24px rgba(16,185,129,.35);
  transition: transform .22s var(--ease-s), box-shadow .22s;
  display: flex; align-items: center; gap: 8px;
}
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(16,185,129,.46); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
.animate { opacity: 0; transition: opacity .7s var(--ease-o), transform .7s var(--ease-o); }
.animate.fade-up    { transform: translateY(30px); }
.animate.fade-left  { transform: translateX(30px); }
.animate.fade-right { transform: translateX(-30px); }
.animate.in-view    { opacity: 1; transform: none; }
@keyframes fadeIn { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: none; } }

/* ─── SVG ICONS ──────────────────────────────────────── */
.svg-icon svg  { width: 20px; height: 20px; }
.icon-box      { display: flex; align-items: center; justify-content: center; }
.svg-stars     { display: flex; gap: 2px; align-items: center; }
.svg-stars svg { width: 16px; height: 16px; }
.card-top-image { margin: 18px 0 0; border-radius: var(--r-sm); overflow: hidden; }
.card-top-image img { width: 100%; height: 158px; object-fit: cover; }

/* ─── REAL IMAGES ────────────────────────────────────── */
.real-image { overflow: hidden; background: var(--ink-2); }
.real-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .38s; }
.project-card-v2:hover .real-image img,
.blog-card-v2:hover    .real-image img { transform: scale(1.04); }
.blog-card-thumb.real-image            { height: 182px; display: block; padding: 0; }
.blog-card-thumb.real-image img        { height: 182px; width: 100%; object-fit: cover; }
.project-image-placeholder.real-image  { display: block; padding: 0; }
.project-image-placeholder.real-image img { width: 100%; height: 185px; object-fit: cover; }

/* ─── SUB-PAGE HERO ──────────────────────────────────── */
.page-hero { padding: 80px 0 64px; position: relative; z-index: 1; border-bottom: 1px solid var(--rule); }
.page-hero .site-container { max-width: 860px; }
.page-hero h1 {
  font-family: var(--f-serif);
  font-size: clamp(34px, 4.5vw, 62px); font-weight: 800;
  letter-spacing: -.01em; line-height: 1.12; margin-top: 14px; color: var(--txt);
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero p { margin-top: 14px; color: var(--txt-2); font-size: 17px; line-height: 1.82; max-width: 580px; font-weight: 300; }
.hero-subpage { padding: 64px 0 52px; }
.eyebrow {
  display: inline-flex; align-items: center; padding: 5px 12px; border-radius: var(--r-xs);
  background: var(--gold-dim); border: 1px solid var(--gold-rim);
  color: var(--gold-lt); font-size: 10px; font-weight: 600;
  letter-spacing: .14em; font-family: var(--f-mono); text-transform: uppercase;
}

/* ─── CONTENT CARDS ──────────────────────────────────── */
.content-card {
  background: var(--g-card); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 32px;
}
.content-card h3 { font-family: var(--f-serif); font-size: 22px; font-weight: 700; margin-bottom: 14px; color: var(--txt); }
.content-card p { color: var(--txt-2); font-size: 15px; line-height: 1.85; margin-bottom: 9px; }
.content-card p strong { color: var(--txt); font-weight: 600; }
.premium-card { transition: transform .25s var(--ease-s), border-color .25s; }
.premium-card:hover { transform: translateY(-4px); border-color: var(--gold-rim); }

/* Article */
.article-shell { max-width: 760px; }
.article-cover  { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 24px; }
.article-cover img { width: 100%; max-height: 440px; object-fit: cover; }
.article-card h2, .article-card-v2 h2 { font-family: var(--f-serif); font-size: 26px; font-weight: 700; margin: 28px 0 12px; color: var(--txt); }
.article-card p,  .article-card-v2 p  { color: var(--txt-2); font-size: 16px; line-height: 1.88; margin-bottom: 14px; }
.article-card ul, .article-card-v2 ul { margin: 10px 0 14px 20px; color: var(--txt-2); }
.article-card li, .article-card-v2 li { margin-bottom: 8px; font-size: 15.5px; line-height: 1.72; }

/* Two-col */
.two-col-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 26px; align-items: start; }
.contact-feature-list { display: flex; flex-direction: column; gap: 13px; margin-top: 24px; }
.mini-contact-box { padding: 16px 18px; border-radius: var(--r-md); background: var(--gold-dim); border: 1px solid var(--gold-rim); }
.mini-contact-box strong { display: block; font-size: 14px; color: var(--gold-lt); margin-bottom: 4px; font-weight: 600; }
.mini-contact-box span { color: var(--txt-3); font-size: 13.5px; line-height: 1.65; }
.form-stack h3 { margin-bottom: 20px; }

/* Form inputs */
.content-card input, .content-card select, .content-card textarea,
section.section-block input[type="text"], section.section-block input[type="email"],
section.section-block input[type="tel"], section.section-block select, section.section-block textarea {
  width: 100%; padding: 12px 16px; display: block;
  background: rgba(0,0,0,.35); color: var(--txt);
  border: 1px solid var(--rule-2); border-radius: var(--r-md);
  font-size: 14.5px; font-family: var(--f-sans); outline: none;
  transition: border-color .18s, box-shadow .18s; margin-bottom: 11px;
}
.content-card input:focus, .content-card select:focus, .content-card textarea:focus,
section.section-block input:focus, section.section-block select:focus, section.section-block textarea:focus {
  border-color: var(--gold-rim); box-shadow: 0 0 0 3px var(--gold-dim);
}
.content-card textarea, section.section-block textarea { min-height: 116px; resize: vertical; }
.content-card select { cursor: pointer; }

/* ============================================================
   ADMIN PANEL
   ============================================================ */

/* Auth pages */
.login-page, .public-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 60% 50% at 25% 15%, rgba(201,168,76,.07), transparent 55%),
    var(--ink);
  padding: 24px;
}
.login-box {
  width: 100%; max-width: 420px; background: var(--g-card);
  padding: 40px; border-radius: var(--r-xl);
  border: 1px solid var(--rule-2);
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.04);
}
.login-box-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 32px; }
.login-box-logo .brand-badge { width: 40px; height: 40px; border-radius: 10px; font-size: 13px; }
.login-box-logo span { font-family: var(--f-serif); font-size: 18px; font-weight: 700; color: var(--txt); }
.login-box h1 { font-family: var(--f-serif); font-size: 26px; font-weight: 800; margin-bottom: 7px; color: var(--txt); }
.login-box p  { color: var(--txt-2); font-size: 14px; margin-bottom: 26px; font-weight: 300; }
.public-box {
  width: 100%; max-width: 860px; background: var(--g-card);
  padding: 36px; border-radius: var(--r-xl);
  border: 1px solid var(--rule-2); box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.public-box h1 { font-family: var(--f-serif); margin-bottom: 8px; font-size: 26px; font-weight: 800; color: var(--txt); }
.public-box p  { margin-bottom: 12px; color: var(--txt-2); font-size: 14px; }

.hint-box {
  margin-top: 16px; font-size: 11.5px; color: var(--txt-3);
  font-family: var(--f-mono); padding: 10px 14px;
  background: rgba(255,255,255,.025); border-radius: var(--r-sm); border: 1px solid var(--rule);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; margin-bottom: 7px; font-size: 10.5px; color: var(--txt-2);
  text-transform: uppercase; letter-spacing: .12em; font-family: var(--f-mono); font-weight: 500;
}
.form-group input {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--rule-2); background: rgba(0,0,0,.35);
  color: var(--txt); border-radius: var(--r-md); font-size: 14.5px;
  transition: border-color .18s, box-shadow .18s; outline: none;
}
.form-group input:focus { border-color: var(--gold-rim); box-shadow: 0 0 0 3px var(--gold-dim); }

button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border: 0; border-radius: var(--r-md);
  background: var(--g-gold); color: var(--ink); font-weight: 600;
  font-family: var(--f-sans); cursor: pointer; font-size: 14px;
  transition: transform .22s var(--ease-s), box-shadow .22s;
}
button:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(201,168,76,.40); }

.alert { padding: 12px 16px; border-radius: var(--r-md); margin-bottom: 16px; font-size: 13.5px; }
.alert.error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.22);  color: #fca5a5; }
.alert.success { background: rgba(34,197,94,.1);  border: 1px solid rgba(34,197,94,.22);  color: #86efac; }

/* Layout */
.admin-layout, .customer-layout { display: flex; min-height: 100vh; background: var(--ink); }

/* Sidebar */
.sidebar, .customer-sidebar {
  width: 252px; flex-shrink: 0;
  background: var(--ink-1);
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
/* Custom scrollbar for sidebar */
.sidebar::-webkit-scrollbar, .customer-sidebar::-webkit-scrollbar { width: 3px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: var(--rule-2); border-radius: 2px; }

.sidebar-inner { padding: 22px 14px; flex: 1; }
.sidebar-logo { padding: 2px 6px 22px; border-bottom: 1px solid var(--rule); margin-bottom: 18px; }
.sidebar-logo-wrap { display: flex; align-items: center; gap: 9px; }
.sidebar-logo-wrap .brand-badge { width: 30px; height: 30px; border-radius: 7px; font-size: 9px; flex-shrink: 0; }
.sidebar-logo h2 { font-family: var(--f-serif); font-size: 15px; font-weight: 700; color: var(--txt); }
.sidebar-logo span { font-size: 10px; color: var(--txt-3); font-family: var(--f-mono); margin-top: 2px; display: block; }
.sidebar-section-label { font-size: 9.5px; color: var(--txt-3); text-transform: uppercase; letter-spacing: .16em; font-family: var(--f-mono); padding: 4px 10px; margin: 14px 0 4px; }
.sidebar-menu { list-style: none; }
.sidebar-menu li { margin-bottom: 2px; }
.sidebar-menu a {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; border-radius: var(--r-sm);
  color: var(--txt-3); font-size: 13px; font-weight: 400;
  transition: background .15s, color .15s;
}
.sidebar-menu a:hover, .sidebar-menu a.active { background: var(--gold-dim); color: var(--gold-lt); border: 1px solid transparent; }
.sidebar-menu a.active { border-color: var(--gold-rim); }
.nav-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--rule-3); flex-shrink: 0; transition: background .15s; }
.sidebar-menu a:hover .nav-dot, .sidebar-menu a.active .nav-dot { background: var(--gold); }
.sidebar-footer { padding: 14px; border-top: 1px solid var(--rule); }
.sidebar-footer a { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: var(--r-sm); color: var(--txt-3); font-size: 13px; transition: background .15s, color .15s; }
.sidebar-footer a:hover { background: rgba(239,68,68,.08); color: #f87171; }

/* Main content */
.main-content { flex: 1; min-width: 0; }
.main-inner { padding: 30px 34px; }

/* Topbar */
.topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 30px; gap: 16px;
  padding-bottom: 24px; border-bottom: 1px solid var(--rule);
}
.topbar h1 { font-family: var(--f-serif); font-size: 24px; font-weight: 700; letter-spacing: -.01em; color: var(--txt); }
.topbar-right { display: flex; align-items: center; gap: 10px; color: var(--txt-3); font-size: 13.5px; }
.topbar-right strong { color: var(--txt-2); font-weight: 500; }

/* Dashboard cards */
.cards { display: grid; gap: 14px; margin-bottom: 22px; }
.cards-4 { grid-template-columns: repeat(4,1fr); }
.cards-3 { grid-template-columns: repeat(3,1fr); }
.grid-2  { display: grid; grid-template-columns: 1.1fr 1fr; gap: 16px; }

.card {
  background: var(--g-card); border-radius: var(--r-lg); padding: 24px;
  border: 1px solid var(--rule); transition: border-color .25s;
  position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--g-gold); opacity: .3;
}
.card:hover { border-color: var(--gold-rim); }
.card h3 { font-size: 10.5px; color: var(--txt-3); text-transform: uppercase; letter-spacing: .12em; font-family: var(--f-mono); margin-bottom: 12px; }
.card p { font-size: 32px; font-weight: 700; color: var(--txt); font-family: var(--f-serif); letter-spacing: -.02em; }
.card p.money { font-size: 22px; color: #86efac; }
.card-trend { display: block; font-size: 11.5px; color: var(--txt-3); font-family: var(--f-mono); margin-top: 7px; }
.card-trend.up { color: #86efac; }
.card-trend.dn { color: #f87171; }

.panel { background: var(--g-card); border-radius: var(--r-lg); padding: 24px; border: 1px solid var(--rule); }
.panel h2 { font-family: var(--f-serif); font-size: 17px; font-weight: 700; margin-bottom: 18px; color: var(--txt); }

/* Tables */
table { width: 100%; border-collapse: collapse; }
table th, table td { border-bottom: 1px solid var(--rule); padding: 12px 11px; text-align: left; font-size: 13.5px; vertical-align: middle; }
table th { color: var(--txt-3); text-transform: uppercase; font-size: 10px; letter-spacing: .12em; font-family: var(--f-mono); font-weight: 500; padding-bottom: 11px; }
table tbody tr:hover td { background: rgba(201,168,76,.02); }
table tbody tr:last-child td { border-bottom: 0; }

/* Form grid */
.form-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--rule-2); background: rgba(0,0,0,.3);
  color: var(--txt); border-radius: var(--r-md);
  font-size: 13.5px; outline: none; transition: border-color .18s;
  font-family: var(--f-sans);
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--gold-rim); box-shadow: 0 0 0 3px var(--gold-dim); }
.form-grid textarea { min-height: 90px; grid-column: 1/-1; resize: vertical; }
.form-grid button { width: fit-content; }

/* Badges */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: var(--r-xs); font-size: 11px; font-weight: 500; font-family: var(--f-mono); }
.badge.muted   { background: rgba(255,255,255,.06);  color: var(--txt-3); }
.badge.info    { background: rgba(59,130,246,.12);   color: #93c5fd; }
.badge.success { background: rgba(34,197,94,.1);    color: #86efac; }
.badge.danger  { background: rgba(239,68,68,.1);    color: #fca5a5; }
.badge.warning { background: rgba(245,158,11,.1);   color: #fcd34d; }

/* Table links */
.table-link { display: inline-flex; align-items: center; padding: 5px 11px; border-radius: var(--r-sm); background: rgba(59,130,246,.1); color: #93c5fd; font-size: 12px; font-weight: 500; transition: background .15s; }
.table-link:hover { background: rgba(59,130,246,.2); }
.table-link.danger { background: rgba(239,68,68,.09); color: #fca5a5; }
.table-link.danger:hover { background: rgba(239,68,68,.18); }
.success-link { background: rgba(34,197,94,.09); color: #86efac; }
.actions-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.contract-box { background: rgba(0,0,0,.25); border: 1px solid var(--rule); border-radius: var(--r-md); padding: 18px; margin: 16px 0; }

/* Print */
.print-page { background: #fff; color: #111; padding: 30px; font-family: Georgia, serif; }
.print-wrap  { max-width: 920px; margin: 0 auto; }
.print-head  { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 26px; }
.align-right { text-align: right; }
.print-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.print-box   { border: 1px solid #e5e7eb; border-radius: 10px; padding: 14px; }
.print-table { width: 100%; border-collapse: collapse; color: #111; }
.print-table th, .print-table td { border: 1px solid #e5e7eb; padding: 9px 11px; font-size: 13px; }
.print-table th { background: #f9fafb; font-weight: 600; }
.print-total { margin-top: 16px; text-align: right; font-size: 22px; font-weight: 700; }
.print-note  { margin-top: 16px; color: #6b7280; font-size: 13px; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-v2-grid  { grid-template-columns: 1fr; min-height: auto; gap: 48px; }
  .hero-v2-visual { display: none; }
  .hero-v2-copy h1 { max-width: none; }
  .hero-v2::before { display: none; }
  .why-grid-v2   { grid-template-columns: 1fr; }
  .service-grid-v2, .project-grid-v2, .team-grid-v2, .blog-grid-v2 { grid-template-columns: repeat(2,1fr); }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .stats-grid .stat-v2:nth-child(2) { border-right: 0; }
  .footer-v2-grid { grid-template-columns: 1fr 1fr; }
  .cards-4, .cards-3 { grid-template-columns: repeat(2,1fr); }
  .grid-2, .two-col-feature, .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-container { width: calc(100% - 40px); }
  .premium-navbar { flex-wrap: wrap; gap: 12px; }
  .premium-nav-links { width: 100%; justify-content: center; flex-wrap: wrap; order: 3; }
  .service-grid-v2, .project-grid-v2, .team-grid-v2, .blog-grid-v2,
  .stats-grid, .why-feature-list, .footer-v2-grid,
  .cards-4, .cards-3, .form-grid { grid-template-columns: 1fr; }
  .hero-v2 { padding: 64px 0 56px; }
  .hero-v2-copy h1 { font-size: 40px; }
  .section-block { padding: 80px 0; }
  .section-title-center h2, .why-copy h2 { font-size: 34px; }
  .final-cta-v2 h2 { font-size: 38px; }
  .stats-grid { border-radius: var(--r-md); }
  .stats-grid .stat-v2 { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stats-grid .stat-v2:last-child { border-bottom: 0; }
  .footer-bottom-v2 { flex-direction: column; gap: 10px; }
  .admin-layout, .customer-layout { flex-direction: column; }
  .sidebar, .customer-sidebar { width: 100%; height: auto; position: relative; }
  .main-inner { padding: 18px 16px; }
  .page-hero { padding: 56px 0 44px; }
}

/* Admin pages: direct content padding (non-dashboard pages) */
.admin-layout .main-content,
.customer-layout .main-content {
  padding: 30px 34px;
}
/* Dashboard uses .main-inner so override */
.admin-layout .main-content .main-inner,
.customer-layout .main-content .main-inner {
  padding: 0;
}

@media (max-width: 768px) {
  .admin-layout .main-content,
  .customer-layout .main-content { padding: 18px 16px; }
}

/* ============================================================
   PUBLIC SITE — v18 PROFESSIONAL UPGRADES
   ============================================================ */

/* ─── Scroll Progress Bar ──────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 1000;
  background: var(--g-gold);
  width: 0%; transition: width .1s linear;
  pointer-events: none;
}

/* ─── Buttons (missing variants) ──────────────────────── */
.btn-dark-outline {
  background: transparent;
  border: 1px solid var(--rule-3);
  color: var(--txt-2);
}
.btn-dark-outline:hover {
  border-color: var(--gold-rim);
  color: var(--gold-lt);
  background: var(--gold-dim);
}
.btn-dark-outline.pink-border { border-color: rgba(45,212,191,.25); color: var(--teal); }
.btn-dark-outline.pink-border:hover { border-color: rgba(45,212,191,.45); background: var(--teal-dim); color: var(--teal); }

/* ─── Hero v3 Enhancements ─────────────────────────────── */
.hero-v2-copy h1 .highlight-word {
  position: relative; display: inline-block;
}
.hero-v2-copy h1 .highlight-word::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0; height: 3px;
  background: var(--g-gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: underlineIn 1s var(--ease-o) 1.2s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }

.hero-metric-strip {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.hero-metric { display: flex; flex-direction: column; }
.hero-metric strong {
  font-family: var(--f-serif); font-size: 28px; font-weight: 700;
  color: var(--gold-lt); letter-spacing: -.02em; line-height: 1;
}
.hero-metric span {
  font-family: var(--f-mono); font-size: 10px; color: var(--txt-3);
  text-transform: uppercase; letter-spacing: .12em; margin-top: 5px;
}

/* ─── Marquee Tech Strip ───────────────────────────────── */
.marquee-wrap {
  overflow: hidden; position: relative;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 20px 0; background: var(--ink-1);
}
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--ink-1), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--ink-1), transparent); }
.marquee-label {
  text-align: center; font-size: 9.5px; color: var(--txt-3);
  text-transform: uppercase; letter-spacing: .18em; font-family: var(--f-mono);
  margin-bottom: 18px;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-pill {
  padding: 7px 22px; border-right: 1px solid var(--rule);
  color: var(--txt-3); font-size: 13px; font-weight: 400;
  font-family: var(--f-sans); white-space: nowrap;
  letter-spacing: .02em; transition: color .2s;
}
.marquee-pill:hover { color: var(--gold-lt); }

/* ─── Process Steps ────────────────────────────────────── */
.process-wrap { position: relative; }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-rim), var(--gold-rim), transparent);
  z-index: 0;
}
.process-step {
  padding: 0 20px; text-align: center;
  position: relative; z-index: 1;
}
.process-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink-2); border: 1px solid var(--rule-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--f-serif); font-size: 20px; font-weight: 700; color: var(--txt-3);
  transition: background .3s, border-color .3s, color .3s, box-shadow .3s;
}
.process-step:hover .process-number {
  background: var(--gold-dim); border-color: var(--gold-rim);
  color: var(--gold-lt); box-shadow: 0 0 24px var(--gold-dim);
}
.process-step h3 {
  font-family: var(--f-serif); font-size: 18px; font-weight: 700;
  color: var(--txt); margin-bottom: 10px;
}
.process-step p {
  color: var(--txt-2); font-size: 14px; line-height: 1.78;
}
.process-step .process-tag {
  display: inline-block; margin-top: 14px;
  padding: 3px 10px; border-radius: var(--r-xs);
  background: var(--ink-3); border: 1px solid var(--rule);
  font-family: var(--f-mono); font-size: 10px; color: var(--txt-3);
  text-transform: uppercase; letter-spacing: .1em;
}

/* ─── Pricing Cards ────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; align-items: start;
}
.pricing-card {
  background: var(--g-card); border: 1px solid var(--rule);
  border-radius: var(--r-xl); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease-s), border-color .3s, box-shadow .3s;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--g-gold); opacity: 0; transition: opacity .3s;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(0,0,0,.4); }
.pricing-card:hover::before { opacity: 1; }
.pricing-card.featured {
  border-color: var(--gold-rim);
  background: linear-gradient(160deg, rgba(201,168,76,.06) 0%, var(--ink-2) 60%);
  box-shadow: 0 0 0 1px var(--gold-rim), 0 24px 64px rgba(0,0,0,.3);
}
.pricing-card.featured::before { opacity: 1; }
.pricing-badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: var(--r-xs);
  background: var(--g-gold); color: var(--ink);
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing-name {
  font-family: var(--f-sans); font-size: 12px; font-weight: 500;
  color: var(--txt-3); text-transform: uppercase; letter-spacing: .14em;
  font-family: var(--f-mono); margin-bottom: 10px;
}
.pricing-price {
  font-family: var(--f-serif); font-size: 44px; font-weight: 800;
  color: var(--txt); letter-spacing: -.02em; line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sub { font-size: 18px; font-weight: 400; color: var(--txt-3); vertical-align: middle; margin-right: 4px; }
.pricing-period { font-family: var(--f-mono); font-size: 11px; color: var(--txt-3); margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--rule); margin: 20px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--txt-2);
}
.pricing-features li::before {
  content: '✓'; color: var(--gold); font-weight: 700;
  font-size: 13px; flex-shrink: 0;
}
.pricing-features li.muted { color: var(--txt-3); }
.pricing-features li.muted::before { content: '–'; color: var(--txt-3); }
.pricing-cta {
  display: block; width: 100%; padding: 13px 20px;
  border-radius: var(--r-md); text-align: center;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--rule-3); color: var(--txt-2);
  background: transparent;
}
.pricing-cta:hover { transform: translateY(-2px); border-color: var(--gold-rim); color: var(--gold-lt); background: var(--gold-dim); }
.pricing-card.featured .pricing-cta {
  background: var(--g-gold); color: var(--ink); border-color: transparent;
  box-shadow: 0 4px 22px rgba(201,168,76,.35);
}
.pricing-card.featured .pricing-cta:hover { box-shadow: 0 8px 32px rgba(201,168,76,.5); }

/* ─── Trust Bar ────────────────────────────────────────── */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  padding: 32px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: var(--ink-1);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--txt-3); font-size: 13px; font-family: var(--f-mono);
}
.trust-item svg { color: var(--gold); opacity: .7; }
.trust-divider { width: 1px; height: 28px; background: var(--rule-2); }

/* ─── Mobile Navigation ────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: 1px solid var(--rule-2);
  border-radius: var(--r-sm); background: transparent;
  transition: border-color .2s; box-shadow: none; transform: none;
}
.nav-hamburger:hover { border-color: var(--gold-rim); transform: none; box-shadow: none; }
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--txt-2); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-panel {
  position: fixed; top: 0; right: -320px; bottom: 0; width: 300px;
  background: var(--ink-1); border-left: 1px solid var(--rule-2);
  z-index: 200; transition: right .35s var(--ease-o);
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-nav-panel.open { right: 0; }
.mobile-nav-close {
  align-self: flex-end; background: transparent; border: 1px solid var(--rule-2);
  border-radius: var(--r-sm); color: var(--txt-3); padding: 6px 10px;
  font-size: 18px; cursor: pointer; line-height: 1; margin-bottom: 8px;
  box-shadow: none; transform: none;
}
.mobile-nav-close:hover { border-color: var(--gold-rim); color: var(--gold-lt); transform: none; box-shadow: none; }
.mobile-nav-panel a {
  display: block; padding: 13px 16px; border-radius: var(--r-md);
  color: var(--txt-2); font-size: 15px; font-weight: 400;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.mobile-nav-panel a:hover, .mobile-nav-panel a.active {
  background: var(--gold-dim); color: var(--gold-lt); border-color: var(--gold-rim);
}
.mobile-nav-divider { height: 1px; background: var(--rule); margin: 8px 0; }

/* ─── Enhanced Header ──────────────────────────────────── */
.nav-portal-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--rule-2); color: var(--txt-3);
  font-size: 12px; font-family: var(--f-mono);
  transition: border-color .15s, color .15s, background .15s;
}
.nav-portal-link:hover { border-color: var(--gold-rim); color: var(--gold-lt); background: var(--gold-dim); }
.nav-portal-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ─── Footer Newsletter ────────────────────────────────── */
.footer-newsletter {
  display: flex; gap: 8px; margin-top: 16px;
}
.footer-newsletter input {
  flex: 1; padding: 10px 14px;
  background: rgba(0,0,0,.3); border: 1px solid var(--rule-2);
  border-radius: var(--r-sm); color: var(--txt); font-size: 13px;
  outline: none; transition: border-color .15s;
  font-family: var(--f-sans);
}
.footer-newsletter input:focus { border-color: var(--gold-rim); }
.footer-newsletter button {
  padding: 10px 16px; background: var(--g-gold);
  border: none; border-radius: var(--r-sm);
  color: var(--ink); font-weight: 600; font-size: 12px;
  cursor: pointer; white-space: nowrap;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  border: 1px solid var(--rule-2); display: flex;
  align-items: center; justify-content: center;
  color: var(--txt-3); transition: border-color .15s, color .15s, background .15s;
}
.footer-social a:hover { border-color: var(--gold-rim); color: var(--gold-lt); background: var(--gold-dim); }
.footer-social svg { width: 15px; height: 15px; }

/* ─── Cookie banner ────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 580px;
  background: var(--ink-2); border: 1px solid var(--rule-2);
  border-radius: var(--r-lg); padding: 20px 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  z-index: 400; animation: slideUp .4s var(--ease-o);
}
@keyframes slideUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
#cookie-banner.hidden { display: none; }
#cookie-banner p { flex: 1; font-size: 13px; color: var(--txt-2); line-height: 1.65; min-width: 200px; }
#cookie-banner button {
  padding: 9px 18px; font-size: 13px;
}
#cookie-accept { background: var(--g-gold); color: var(--ink); border: none; }
#cookie-decline { background: transparent; border: 1px solid var(--rule-2); color: var(--txt-3); box-shadow: none; }
#cookie-decline:hover { border-color: var(--rule-3); transform: none; box-shadow: none; }

/* ─── Footer social icons ──────────────────────────────── */
.footer-social {
  display: flex; gap: 10px; margin-top: 20px;
}
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.04); border: 1px solid var(--rule-2);
  color: var(--txt-3); transition: background .18s, color .18s, border-color .18s;
}
.footer-social-link svg { width: 15px; height: 15px; }
.footer-social-link:hover {
  background: var(--gold-dim); border-color: var(--gold-rim); color: var(--gold-lt);
}

/* ─── Footer contact list (with icons) ─────────────────── */
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 8px;
}
.footer-contact-list li svg {
  width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px;
  color: var(--gold); opacity: .75;
}
.footer-contact-list li a { color: var(--txt-3); }
.footer-contact-list li a:hover { color: var(--gold-lt); }

/* ─── Footer newsletter ─────────────────────────────────── */
.footer-newsletter { margin-top: 22px; }
.footer-newsletter-label {
  font-size: 10px; font-family: var(--f-mono); text-transform: uppercase;
  letter-spacing: .12em; color: var(--txt-3); margin-bottom: 10px;
}
.footer-newsletter-form {
  display: flex; gap: 0; border: 1px solid var(--rule-2); border-radius: var(--r-md);
  overflow: hidden; background: rgba(0,0,0,.3);
}
.footer-newsletter-form input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 10px 12px; font-size: 13px; color: var(--txt);
  font-family: var(--f-sans);
}
.footer-newsletter-form input::placeholder { color: var(--txt-3); }
.footer-newsletter-form button {
  background: var(--gold-dim); border: none; border-left: 1px solid var(--rule-2);
  padding: 0 14px; cursor: pointer; color: var(--gold); transition: background .18s;
}
.footer-newsletter-form button svg { width: 15px; height: 15px; display: block; }
.footer-newsletter-form button:hover { background: var(--gold-rim); }
.footer-newsletter-note {
  font-size: 11px; font-family: var(--f-mono); color: var(--gold-lt); margin-top: 8px;
}

/* ─── Footer inner wrapper ──────────────────────────────── */
.footer-v2-inner { padding-top: 64px; padding-bottom: 0; }

/* ─── Gradient text ────────────────────────────────────── */
.gradient-text {
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Section label ────────────────────────────────────── */
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.section-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }

/* ─── Responsive updates ───────────────────────────────── */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .nav-hamburger { display: flex; }
  .premium-nav-links, .nav-actions { display: none; }
  .premium-navbar { flex-wrap: nowrap; }
  .hero-metric-strip { gap: 20px; }
  .trust-bar { gap: 18px; }
  .trust-divider { display: none; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
  .hero-metric-strip { flex-direction: column; gap: 16px; }
}
