/* ═══════════════════════════════════════════════════════════════
   doruciobanu.eu · shared stylesheet
   Design system: cyber-terminal, dark, Rajdhani + Exo 2 + Share Tech Mono
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:        #050810;
  --bg2:       #080d1a;
  --surface:   #0d1529;
  --border:    #1a2d55;
  --accent:    #00d4ff;
  --accent2:   #0066ff;
  --accent3:   #00ff88;
  --text:      #c8d8f0;
  --text-dim:  #4a6080;
  --text-bright: #eaf2ff;
  --danger:    #ff3366;
  --warn:      #ffb224;
  --mono:      'Share Tech Mono', monospace;
  --head:      'Rajdhani', sans-serif;
  --body:      'Exo 2', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text); font-family: var(--body);
  overflow-x: hidden; cursor: default;
}

/* ─── Grid overlay + scan lines ───────────────────────── */
body::before {
  content: ''; position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none; z-index: 0;
}
body::after {
  content: ''; position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.08) 2px, rgba(0,0,0,.08) 4px);
  pointer-events: none; z-index: 0;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 64px;
  background: rgba(5,8,16,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--mono); font-size: .85rem; color: var(--accent);
  letter-spacing: .1em; text-decoration: none;
}
.nav-logo span { color: var(--text-dim); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--head); font-size: .9rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.lang-switch {
  display: flex; gap: 0; border: 1px solid var(--border);
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
}
.lang-switch button, .lang-switch a {
  background: transparent; border: 0; color: var(--text-dim);
  padding: .4rem .7rem; cursor: pointer; letter-spacing: .1em;
  font-family: var(--mono); font-size: .72rem; text-decoration: none;
}
.lang-switch .active { background: var(--accent); color: var(--bg); }
.nav-cta {
  font-family: var(--mono); font-size: .8rem; color: var(--accent3);
  text-decoration: none; border: 1px solid var(--accent3);
  padding: .4rem 1rem; letter-spacing: .1em; transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--accent3); color: var(--bg); }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  font-family: var(--mono); font-size: .85rem; letter-spacing: .1em;
  text-decoration: none; padding: .9rem 2.2rem;
  background: var(--accent); color: var(--bg); font-weight: bold;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background .2s, transform .2s;
  display: inline-block;
}
.btn-primary:hover { background: #33ddff; transform: translateY(-2px); }
.btn-outline {
  font-family: var(--mono); font-size: .85rem; letter-spacing: .1em;
  text-decoration: none; padding: .9rem 2.2rem;
  border: 1px solid var(--border); color: var(--text);
  transition: border-color .2s, color .2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ─── HERO (homepage) ─────────────────────────────────── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 8rem 3rem 4rem; overflow: hidden; }
.hero-glow {
  position: absolute; top: 20%; left: 50%;
  transform: translate(-50%, -50%); width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,102,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: 0; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 980px; }
.hero-tag {
  font-family: var(--mono); font-size: .75rem; color: var(--accent);
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-tag::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--accent); }
.blink {
  display: inline-block; width: 8px; height: 14px; background: var(--accent);
  margin-left: 4px; animation: blink 1s step-end infinite; vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }
h1 {
  font-family: var(--head); font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 700; line-height: 1.05; color: var(--text-bright);
  letter-spacing: -.01em; margin-bottom: 1rem;
}
h1 .accent { color: var(--accent); }
h1 .dim { color: var(--text-dim); font-weight: 300; }
.hero-sub {
  font-family: var(--head); font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300; color: var(--text-dim); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 2rem;
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.8; color: var(--text);
  max-width: 680px; margin-bottom: 3rem;
}
.hero-stats { display: flex; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-num { font-family: var(--head); font-size: 2.2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-family: var(--mono); font-size: .7rem; color: var(--text-dim); letter-spacing: .15em; text-transform: uppercase; }
.hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ─── SECTION COMMONS ─────────────────────────────────── */
section { position: relative; z-index: 1; padding: 6rem 3rem; }
.section-tag {
  font-family: var(--mono); font-size: .72rem; color: var(--accent2);
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--text-bright); letter-spacing: .02em;
  margin-bottom: 1rem;
}
.section-line {
  width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent), transparent); margin-bottom: 3rem;
}
.section-intro { font-size: 1rem; color: var(--text-dim); max-width: 720px; line-height: 1.7; margin-bottom: 3rem; }

/* ─── FEATURED CARD (migration) ───────────────────────── */
#featured-service { background: var(--bg2); padding: 6rem 3rem; }
.featured-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  background: linear-gradient(135deg, rgba(0,212,255,.05), rgba(0,102,255,.08));
  border: 1px solid var(--accent); padding: 3rem;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  position: relative; overflow: hidden;
}
.featured-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,212,255,.15) 0%, transparent 70%);
  pointer-events: none;
}
.featured-badge {
  display: inline-block; font-family: var(--mono); font-size: .7rem;
  color: var(--accent3); border: 1px solid var(--accent3);
  padding: .25rem .7rem; letter-spacing: .15em; margin-bottom: 1rem; text-transform: uppercase;
}
.featured-title {
  font-family: var(--head); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text-bright); letter-spacing: .02em;
  margin-bottom: 1rem; line-height: 1.15;
}
.featured-title .accent { color: var(--accent); }
.featured-desc { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 1.5rem; }
.migration-paths { display: grid; gap: .75rem; margin-bottom: 1.5rem; }
.migration-path {
  display: flex; align-items: center; gap: 1rem; padding: .9rem 1.1rem;
  border: 1px solid var(--border); background: rgba(5,8,16,.6);
  font-family: var(--mono); font-size: .85rem;
}
.migration-path .from { color: var(--text-dim); }
.migration-path .arrow { color: var(--accent); font-weight: bold; }
.migration-path .to { color: var(--accent3); }
.migration-path .note { margin-left: auto; font-size: .7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; }
.featured-side { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.featured-stat { border-left: 2px solid var(--accent); padding-left: 1rem; }
.featured-stat-num { font-family: var(--head); font-size: 1.8rem; font-weight: 700; color: var(--text-bright); }
.featured-stat-label { font-family: var(--mono); font-size: .75rem; color: var(--text-dim); letter-spacing: .1em; text-transform: uppercase; }

/* ─── SERVICES GRID ──────────────────────────────────── */
#services { background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px; background: var(--border);
}
.service-card { background: var(--bg); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: background .3s; text-decoration: none; display: block; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--accent); transition: height .4s ease; }
.service-card:hover { background: var(--surface); }
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 2rem; margin-bottom: 1.5rem; display: block; }
.service-num { font-family: var(--mono); font-size: .65rem; color: var(--text-dim); letter-spacing: .2em; margin-bottom: .75rem; }
.service-title { font-family: var(--head); font-size: 1.25rem; font-weight: 700; color: var(--text-bright); margin-bottom: 1rem; letter-spacing: .05em; }
.service-desc { font-size: .9rem; line-height: 1.7; color: var(--text-dim); }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.5rem; }
.tag { font-family: var(--mono); font-size: .65rem; letter-spacing: .08em; padding: .25rem .6rem; border: 1px solid var(--border); color: var(--text-dim); text-transform: uppercase; }

/* ─── ABOUT ──────────────────────────────────────────── */
#about { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.skills-list { margin-top: 2rem; }
.skill-row { margin-bottom: 1.4rem; }
.skill-meta { display: flex; justify-content: space-between; margin-bottom: .4rem; }
.skill-name { font-family: var(--head); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text); }
.skill-pct { font-family: var(--mono); font-size: .75rem; color: var(--accent); }
.skill-bar { height: 3px; background: var(--border); position: relative; overflow: hidden; }
.skill-fill { position: absolute; top: 0; left: 0; bottom: 0; background: linear-gradient(90deg, var(--accent2), var(--accent)); transform-origin: left; transform: scaleX(0); }
.about-text p { font-size: 1rem; line-height: 1.9; color: var(--text); margin-bottom: 1.2rem; }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 2rem; }
.cert-item { font-family: var(--mono); font-size: .72rem; letter-spacing: .05em; padding: .6rem .8rem; border: 1px solid var(--border); color: var(--text-dim); display: flex; align-items: center; gap: .5rem; transition: border-color .2s, color .2s; }
.cert-item:hover { border-color: var(--accent); color: var(--accent); }
.cert-dot { width: 6px; height: 6px; background: var(--accent3); flex-shrink: 0; }

/* ─── EXPERIENCE TIMELINE ─────────────────────────────── */
#experience { background: var(--bg2); }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--accent), transparent); }
.timeline-item { position: relative; padding: 0 0 3rem 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -4px; top: 6px; width: 9px; height: 9px; background: var(--accent); transform: rotate(45deg); }
.timeline-date { font-family: var(--mono); font-size: .72rem; color: var(--accent); letter-spacing: .15em; margin-bottom: .4rem; }
.timeline-role { font-family: var(--head); font-size: 1.2rem; font-weight: 700; color: var(--text-bright); margin-bottom: .2rem; }
.timeline-company { font-family: var(--head); font-size: .9rem; color: var(--accent2); letter-spacing: .06em; margin-bottom: .8rem; }
.timeline-desc { font-size: .9rem; line-height: 1.7; color: var(--text-dim); max-width: 680px; }

/* ─── CONTACT ─────────────────────────────────────────── */
#contact { text-align: center; position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,212,255,.06) 0%, transparent 70%); pointer-events: none; }
.contact-subtitle { font-size: 1.1rem; color: var(--text-dim); max-width: 520px; margin: 0 auto 3rem; line-height: 1.7; }
.contact-cards { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 4rem; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  padding: 2rem 2.5rem; border: 1px solid var(--border); background: var(--surface);
  min-width: 200px; text-decoration: none;
  transition: border-color .25s, transform .25s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.contact-card-icon { font-size: 1.5rem; }
.contact-card-label { font-family: var(--mono); font-size: .65rem; color: var(--text-dim); letter-spacing: .15em; text-transform: uppercase; }
.contact-card-value { font-family: var(--head); font-size: 1rem; font-weight: 600; color: var(--text-bright); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.footer-copy { font-family: var(--mono); font-size: .72rem; color: var(--text-dim); letter-spacing: .08em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-family: var(--mono); font-size: .72rem; color: var(--text-dim); text-decoration: none; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

/* ─── TERMINAL WIDGET ────────────────────────────────── */
.terminal { background: rgba(5, 8, 16, .95); border: 1px solid var(--border); padding: 1.5rem; font-family: var(--mono); font-size: .8rem; line-height: 1.8; max-width: 620px; margin-top: 3rem; clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%); }
.terminal-bar { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.terminal-title { color: var(--text-dim); font-size: .7rem; margin-left: auto; letter-spacing: .1em; }
.t-line { color: var(--text-dim); }
.t-cmd { color: var(--accent); }
.t-out { color: var(--accent3); }
.t-comment { color: #334466; }

/* ═══════════════════════════════════════════════════════
   INNER PAGES (service deep-dives)
   ═══════════════════════════════════════════════════════ */
.article { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; padding: 10rem 3rem 4rem; }
.breadcrumb { font-family: var(--mono); font-size: .72rem; color: var(--text-dim); letter-spacing: .15em; margin-bottom: 2rem; text-transform: uppercase; }
.breadcrumb a { color: var(--text-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 .5rem; color: var(--accent); }
.lede { font-size: 1.15rem; line-height: 1.8; color: var(--text); max-width: 780px; margin-bottom: 2rem; }
.meta { display: flex; gap: 2rem; padding: 1rem 0 2rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 3rem; flex-wrap: wrap; }
.meta-item { display: flex; flex-direction: column; gap: .2rem; }
.meta-label { font-family: var(--mono); font-size: .65rem; color: var(--text-dim); letter-spacing: .15em; text-transform: uppercase; }
.meta-value { font-family: var(--head); font-size: .95rem; font-weight: 600; color: var(--text-bright); }
.article h2 {
  font-family: var(--head); font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700; color: var(--text-bright); letter-spacing: .01em;
  margin: 4rem 0 .5rem; display: flex; align-items: baseline; gap: 1rem;
}
.article h2 .num { font-family: var(--mono); font-size: .9rem; color: var(--accent); }
.h2-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); margin-bottom: 2rem; }
.article h3 { font-family: var(--head); font-size: 1.3rem; font-weight: 600; color: var(--text-bright); letter-spacing: .02em; margin: 2.5rem 0 1rem; }
.article h4 { font-family: var(--mono); font-size: .85rem; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; margin: 1.5rem 0 .75rem; }
.article p { font-size: 1rem; line-height: 1.85; margin-bottom: 1.2rem; color: var(--text); }
.article p strong { color: var(--text-bright); }
.article ul { margin: 0 0 1.5rem 1.2rem; }
.article li { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: .5rem; }
.article li::marker { color: var(--accent); }

/* Alerts */
.alert { border-left: 3px solid var(--warn); background: rgba(255, 178, 36, .05); padding: 1.2rem 1.5rem; margin: 2rem 0; font-size: .95rem; line-height: 1.7; }
.alert strong { color: var(--warn); font-family: var(--head); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; }
.alert.info { border-left-color: var(--accent); background: rgba(0,212,255,.05); }
.alert.info strong { color: var(--accent); }
.alert.success { border-left-color: var(--accent3); background: rgba(0,255,136,.05); }
.alert.success strong { color: var(--accent3); }

/* Path/deliverable cards */
.path-card { background: var(--bg2); border: 1px solid var(--border); padding: 2rem; margin-bottom: 2rem; clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px)); }
.path-head { display: flex; align-items: center; gap: 1rem; padding-bottom: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.path-chip { font-family: var(--mono); font-size: .85rem; padding: .4rem .9rem; border: 1px solid var(--border); letter-spacing: .08em; }
.path-chip.from { color: var(--text-dim); }
.path-chip.to { color: var(--accent3); border-color: var(--accent3); }
.path-arrow { color: var(--accent); font-size: 1.4rem; font-family: var(--mono); }
.path-label { margin-left: auto; font-family: var(--mono); font-size: .7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .15em; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: .92rem; border: 1px solid var(--border); }
.compare-table th, .compare-table td { padding: 1rem; text-align: left; border: 1px solid var(--border); vertical-align: top; }
.compare-table th { background: var(--surface); font-family: var(--head); font-weight: 600; color: var(--text-bright); letter-spacing: .05em; text-transform: uppercase; font-size: .8rem; }
.compare-table td { background: var(--bg2); }
.compare-table td:first-child { font-family: var(--mono); color: var(--accent); font-size: .85rem; }
.badge-good { color: var(--accent3); font-family: var(--mono); font-size: .85rem; }
.badge-ok { color: var(--accent); font-family: var(--mono); font-size: .85rem; }
.badge-bad { color: var(--danger); font-family: var(--mono); font-size: .85rem; }

/* Process */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5px; background: var(--border); margin: 2rem 0; }
.step { background: var(--bg2); padding: 1.5rem; position: relative; }
.step-num { font-family: var(--mono); font-size: .7rem; color: var(--accent); letter-spacing: .2em; margin-bottom: .5rem; }
.step-title { font-family: var(--head); font-size: 1rem; font-weight: 700; color: var(--text-bright); letter-spacing: .04em; margin-bottom: .6rem; }
.step-desc { font-size: .85rem; line-height: 1.6; color: var(--text-dim); }

/* Use cases */
.usecases { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin: 2rem 0; }
.usecase { background: var(--bg2); border: 1px solid var(--border); padding: 1.5rem; border-left: 3px solid var(--accent); }
.usecase-head { font-family: var(--head); font-size: 1rem; font-weight: 700; color: var(--text-bright); margin-bottom: .6rem; letter-spacing: .04em; }
.usecase-desc { font-size: .9rem; line-height: 1.7; color: var(--text-dim); }

/* FAQ */
.faq-item { border: 1px solid var(--border); margin-bottom: 1rem; padding: 1.2rem 1.5rem; background: var(--bg2); }
.faq-q { font-family: var(--head); font-weight: 600; color: var(--text-bright); margin-bottom: .6rem; letter-spacing: .02em; font-size: 1.05rem; }
.faq-q::before { content: 'Q: '; color: var(--accent); font-family: var(--mono); }
.faq-a { font-size: .95rem; line-height: 1.75; color: var(--text); }
.faq-a::before { content: 'A: '; color: var(--accent3); font-family: var(--mono); }

/* CTA block */
.cta-block { margin-top: 5rem; padding: 3rem; background: linear-gradient(135deg, rgba(0,212,255,.05), rgba(0,102,255,.08)); border: 1px solid var(--accent); clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)); text-align: center; }
.cta-block h3 { font-family: var(--head); font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--text-bright); margin: 0 0 .8rem; }
.cta-block p { color: var(--text-dim); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* TOC */
.toc { background: var(--bg2); border: 1px solid var(--border); padding: 1.5rem 2rem; margin-bottom: 3rem; }
.toc-head { font-family: var(--mono); font-size: .7rem; color: var(--accent); letter-spacing: .2em; margin-bottom: 1rem; text-transform: uppercase; }
.toc ol { list-style: none; counter-reset: toc; padding: 0; margin: 0; }
.toc li { counter-increment: toc; padding: .4rem 0; font-size: .92rem; }
.toc li::before { content: counter(toc, decimal-leading-zero) ' · '; color: var(--accent); font-family: var(--mono); font-size: .8rem; }
.toc a { color: var(--text); text-decoration: none; transition: color .2s; }
.toc a:hover { color: var(--accent); }

/* Deliverable list (service pages) */
.deliverables { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin: 2rem 0; }
.deliverable { background: var(--bg2); border: 1px solid var(--border); padding: 1.5rem; border-top: 3px solid var(--accent); }
.deliverable-title { font-family: var(--head); font-size: 1rem; font-weight: 700; color: var(--text-bright); margin-bottom: .5rem; letter-spacing: .04em; }
.deliverable-desc { font-size: .9rem; line-height: 1.7; color: var(--text-dim); }

/* Pricing blocks */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.price-card { background: var(--bg2); border: 1px solid var(--border); padding: 2rem; clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px)); }
.price-card.featured { border-color: var(--accent); }
.price-tier { font-family: var(--mono); font-size: .75rem; color: var(--accent); letter-spacing: .2em; text-transform: uppercase; margin-bottom: .5rem; }
.price-name { font-family: var(--head); font-size: 1.3rem; font-weight: 700; color: var(--text-bright); margin-bottom: .5rem; }
.price-val { font-family: var(--head); font-size: 1.6rem; color: var(--accent); font-weight: 700; margin-bottom: 1rem; }
.price-val .per { font-size: .85rem; color: var(--text-dim); font-weight: 400; }
.price-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.price-list li { padding: .5rem 0; font-size: .9rem; color: var(--text); border-bottom: 1px dashed var(--border); }
.price-list li::before { content: '✓ '; color: var(--accent3); font-family: var(--mono); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  section, #featured-service { padding: 4rem 1.5rem; }
  #about { grid-template-columns: 1fr; gap: 3rem; }
  .featured-card { grid-template-columns: 1fr; padding: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .article { padding: 8rem 1.5rem 3rem; }
  .compare-table { font-size: .8rem; }
  .compare-table th, .compare-table td { padding: .6rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
}

/* ─── FADE IN ─────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
