/* nojobtoostupid.com — Technical Documentation & Knowledge Transfer */
:root {
  --c-ink: #263238;
  --c-dark: #37474F;
  --c-mid: #546E7A;
  --c-soft: #90A4AE;
  --c-bg: #ECEFF1;
  --c-white: #ffffff;
  --c-line: rgba(38, 50, 56, 0.12);
  --c-line-soft: rgba(38, 50, 56, 0.06);
  --grad: linear-gradient(135deg, #37474F 0%, #546E7A 100%);
  --grad-accent: linear-gradient(135deg, #263238 0%, #90A4AE 120%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1em; color: var(--c-dark); }
.lead { font-size: 1.15rem; color: var(--c-mid); line-height: 1.7; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--c-ink); color: var(--c-bg); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-white); }
.section--dark p { color: var(--c-soft); }
.section--alt { background: var(--c-bg); }

.eyebrow {
  display: inline-block;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mid);
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 24px; height: 1px; background: var(--c-mid);
}
.section--dark .eyebrow { color: var(--c-soft); }
.section--dark .eyebrow::before { background: var(--c-soft); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { padding-left: 36px; padding-right: 36px; }
.section-head.center .eyebrow::after {
  content: ''; position: absolute; right: 0; top: 50%;
  width: 24px; height: 1px; background: var(--c-mid);
}

/* Gradient highlight on key headings */
.grad-text {
  background: linear-gradient(120deg, #546E7A 0%, #263238 60%, #90A4AE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons — pill, gradient, hover shadow */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 50px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn-primary {
  background: var(--grad);
  color: var(--c-white);
  box-shadow: 0 4px 14px rgba(38, 50, 56, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(38, 50, 56, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--c-white); }
.btn-outline {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
}
.btn-outline:hover { background: var(--c-ink); color: var(--c-white); }
.btn-arrow::after { content: '→'; transition: transform 0.3s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line-soft);
}
.site-header.scrolled {
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(38, 50, 56, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  display: flex; align-items: center; gap: 10px;
}
.brand-mark {
  width: 32px; height: 32px;
  background: var(--grad);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-white); font-size: 1rem;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--c-dark);
  border-radius: 50px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav a:hover, .nav a.active { background: var(--c-bg); color: var(--c-ink); }
.nav-cta { background: var(--c-ink) !important; color: var(--c-white) !important; padding: 10px 22px !important; }
.nav-cta:hover { background: var(--c-dark) !important; }

.burger {
  display: none; width: 36px; height: 36px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.burger span { width: 22px; height: 2px; background: var(--c-ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav {
    position: fixed; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--c-white);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--c-line);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    box-shadow: 0 10px 30px rgba(38, 50, 56, 0.1);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 18px; font-size: 1rem; }
  .burger { display: flex; }
}

/* Hero — full viewport, dark overlay */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  color: var(--c-white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.08);
  transition: transform 0.6s var(--ease);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(38,50,56,0.65) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { color: var(--c-white); max-width: 900px; margin-bottom: 24px; }
.hero p { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; max-width: 640px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-center { text-align: center; }
.hero-center h1, .hero-center p { margin-left: auto; margin-right: auto; }
.hero-center .hero-actions { justify-content: center; }

/* Minimal animated header hero */
.hero-minimal {
  padding: 180px 0 100px;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.hero-minimal h1 .word {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
}
.hero-minimal h1 .word.in {
  animation: word-in 0.8s var(--ease) both;
}
@keyframes word-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-minimal p { font-size: 1.2rem; max-width: 700px; color: var(--c-mid); }

/* Hero with image cutout (side) */
.hero-split {
  min-height: 100vh;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--c-bg) 0%, #fff 60%);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-split-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.hero-split-img {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(38, 50, 56, 0.18);
}
.hero-split-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-split-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(38, 50, 56, 0.35) 100%);
  z-index: 1;
}
.hero-split h1 { color: var(--c-ink); margin-bottom: 24px; }
.hero-split p { color: var(--c-mid); font-size: 1.1rem; }
.hero-deco {
  position: absolute; top: 20%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(144, 164, 174, 0.15) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
@media (max-width: 920px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-split-img { aspect-ratio: 4/3; }
}

/* Compact hero — for blog index */
.hero-compact {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--c-ink) 0%, var(--c-dark) 100%);
  color: var(--c-white);
  text-align: center;
}
.hero-compact h1 { color: var(--c-white); }
.hero-compact p { color: rgba(255,255,255,0.78); max-width: 640px; margin: 16px auto 0; }

/* Hero banner — careers with breadcrumb */
.hero-banner {
  padding: 160px 0 80px;
  background: var(--grad);
  color: var(--c-white);
  position: relative; overflow: hidden;
}
.hero-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 50%);
}
.hero-banner .container { position: relative; z-index: 1; }
.hero-banner h1 { color: var(--c-white); }
.hero-banner p { color: rgba(255,255,255,0.85); max-width: 640px; }

/* Breadcrumbs */
.crumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.85rem;
  color: var(--c-mid);
  margin-bottom: 16px;
  font-family: 'Urbanist', sans-serif;
}
.crumbs.light { color: rgba(255,255,255,0.7); }
.crumbs a { color: inherit; }
.crumbs a:hover { color: var(--c-ink); }
.crumbs.light a:hover { color: var(--c-white); }
.crumbs span.sep { opacity: 0.5; }

/* Article hero (blog articles) */
.article-hero {
  padding: 140px 0 60px;
  background: var(--c-bg);
}
.article-hero h1 { max-width: 900px; }
.article-meta {
  display: flex; gap: 16px; align-items: center;
  color: var(--c-mid);
  font-size: 0.9rem;
  margin: 20px 0 32px;
  font-family: 'Urbanist', sans-serif;
}
.article-meta span.dot { opacity: 0.4; }
.featured-img {
  margin-top: 16px;
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 16/8;
  box-shadow: 0 20px 60px rgba(38, 50, 56, 0.14);
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* Reveal on scroll — opacity stays 1 (no hidden content); only subtle Y shift */
.reveal { opacity: 1; transform: translateY(20px); transition: transform 0.7s var(--ease); }
.reveal.in { transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* Cards */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover {
  border-color: var(--c-mid);
  box-shadow: 0 4px 16px rgba(38, 50, 56, 0.08);
  transform: translateY(-2px);
}
.card h3 { margin-bottom: 12px; }
.card .card-icon {
  width: 48px; height: 48px;
  background: var(--c-bg);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--c-ink);
}

/* Grid utilities */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Before/After */
.ba {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: stretch;
}
.ba-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-white);
}
.ba-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ba-card:hover .ba-img img { transform: scale(1.04); }
.ba-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--c-white); padding: 6px 14px;
  border-radius: 50px; font-family: 'Urbanist', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--c-ink);
}
.ba-tag.after { background: var(--c-ink); color: var(--c-white); }
.ba-body { padding: 28px; }
.ba-body h3 { margin-bottom: 8px; }
@media (max-width: 720px) { .ba { grid-template-columns: 1fr; } }

/* Testimonials */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s var(--ease);
}
.test:hover { border-color: var(--c-mid); }
.test-quote { font-size: 1.05rem; color: var(--c-dark); line-height: 1.7; flex: 1; margin-bottom: 24px; }
.test-quote::before { content: '\201C'; font-family: 'Urbanist', serif; font-size: 3rem; line-height: 0; color: var(--c-soft); margin-right: 6px; vertical-align: -0.6em; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.test-author .name { font-family: 'Urbanist', sans-serif; font-weight: 600; color: var(--c-ink); }
.test-author .role { font-size: 0.85rem; color: var(--c-mid); }
@media (max-width: 920px) { .test-grid { grid-template-columns: 1fr; } }

/* Newsletter */
.newsletter {
  background: var(--c-ink); color: var(--c-white);
  border-radius: 24px; padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(144,164,174,0.18), transparent 50%);
}
.newsletter > * { position: relative; z-index: 1; }
.newsletter h2 { color: var(--c-white); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.75); }
.nl-form { display: flex; gap: 12px; flex-wrap: wrap; }
.nl-form input[type=email] {
  flex: 1; min-width: 200px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--c-white);
  font-family: inherit; font-size: 0.95rem;
}
.nl-form input[type=email]::placeholder { color: rgba(255,255,255,0.5); }
.nl-form input[type=email]:focus { outline: none; border-color: var(--c-soft); background: rgba(255,255,255,0.1); }
@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; padding: 40px 28px; } }

/* Icon feature list */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  padding: 32px;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  background: var(--c-white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature:hover { border-color: var(--c-mid); box-shadow: 0 4px 16px rgba(38,50,56,0.06); }
.feature .icon {
  width: 56px; height: 56px;
  background: var(--grad);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-white);
  margin-bottom: 20px;
}
.feature h3 { margin-bottom: 8px; font-size: 1.2rem; }
.feature p { color: var(--c-mid); margin-bottom: 0; font-size: 0.95rem; }
@media (max-width: 920px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* Floating action buttons */
.fab-stack {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(38,50,56,0.22);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  opacity: 0; transform: translateY(20px);
}
.fab.in { opacity: 1; transform: translateY(0); }
.fab:hover { background: var(--c-dark); transform: translateY(-3px); }

/* Achievement badges */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge {
  text-align: center; padding: 32px 20px;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  background: var(--c-white);
  transition: border-color 0.3s var(--ease);
}
.badge:hover { border-color: var(--c-mid); }
.badge .num {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1; margin-bottom: 8px;
}
.badge .lbl { font-size: 0.9rem; color: var(--c-mid); }
@media (max-width: 720px) { .badges { grid-template-columns: repeat(2, 1fr); } }

/* Partners strip */
.partners {
  display: flex; flex-wrap: wrap; gap: 48px 64px;
  align-items: center; justify-content: center;
  opacity: 0.85;
}
.partner-name {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600; font-size: 1.3rem;
  color: var(--c-mid);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s var(--ease);
}
.partner-name:hover { color: var(--c-ink); }
.partner-name::before {
  content: ''; position: absolute; left: -14px; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-soft); transform: translateY(-50%);
}

/* Team grid */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  border-radius: 16px; overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.team-card:hover { border-color: var(--c-mid); transform: translateY(-4px); }
.team-photo { aspect-ratio: 3/4; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 20px 22px 24px; }
.team-info .name { font-family: 'Urbanist', sans-serif; font-weight: 600; font-size: 1.05rem; }
.team-info .role { font-size: 0.88rem; color: var(--c-mid); margin-top: 4px; }
@media (max-width: 920px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team { grid-template-columns: 1fr; } }

/* Video section */
.video-wrap {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--c-ink);
  position: relative;
  box-shadow: 0 30px 80px rgba(38, 50, 56, 0.16);
}
.video-wrap iframe { width: 100%; height: 100%; border: none; }

/* Portfolio */
.portfolio { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.proj {
  border-radius: 16px; overflow: hidden;
  background: var(--c-white); border: 1px solid var(--c-line);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.proj:hover { border-color: var(--c-mid); transform: translateY(-3px); }
.proj-img { aspect-ratio: 16/10; overflow: hidden; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.proj:hover .proj-img img { transform: scale(1.05); }
.proj-body { padding: 24px 28px 28px; }
.proj-cat {
  font-family: 'Urbanist', sans-serif; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-mid); margin-bottom: 8px;
}
.proj h3 { margin-bottom: 6px; }
.proj p { color: var(--c-mid); margin: 0; font-size: 0.95rem; }
@media (max-width: 760px) { .portfolio { grid-template-columns: 1fr; } }

/* Tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; border-bottom: 1px solid var(--c-line); }
.tab-btn {
  padding: 14px 24px;
  font-family: 'Urbanist', sans-serif; font-weight: 600;
  font-size: 0.95rem; color: var(--c-mid);
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--c-ink); }
.tab-btn.active { color: var(--c-ink); border-bottom-color: var(--c-ink); }
.tab-panel { display: none; animation: tab-fade 0.4s var(--ease); }
.tab-panel.active { display: block; }
@keyframes tab-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Social proof badges */
.proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proof-item {
  text-align: center; padding: 28px 20px;
  border: 1px solid var(--c-line); border-radius: 12px;
  background: var(--c-white);
}
.proof-item .seal {
  width: 56px; height: 56px; margin: 0 auto 14px;
  background: var(--c-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-ink);
}
.proof-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.proof-item p { font-size: 0.82rem; color: var(--c-mid); margin: 0; }
@media (max-width: 720px) { .proof { grid-template-columns: repeat(2, 1fr); } }

/* Map */
.map-wrap { border-radius: 16px; overflow: hidden; aspect-ratio: 16/8; border: 1px solid var(--c-line); }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* Contact form */
.form {
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: 16px; padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: 'Urbanist', sans-serif; font-size: 0.88rem; font-weight: 500; color: var(--c-dark); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 0.95rem; color: var(--c-ink);
  padding: 14px 18px; background: var(--c-bg);
  border: 1px solid transparent; border-radius: 10px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--c-mid); background: var(--c-white);
}
.field .err { color: #C62828; font-size: 0.82rem; min-height: 16px; }
.form button[type=submit] { margin-top: 8px; }
.form-success { display: none; padding: 18px 20px; border-radius: 10px; background: #E8F5E9; color: #2E7D32; margin-bottom: 20px; }
.form-success.show { display: block; }
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; } .form { padding: 28px 24px; } }

/* Social grid */
.socials { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.social-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 24px 16px; text-align: center;
  border: 1px solid var(--c-line); border-radius: 12px;
  background: var(--c-white);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.social-card:hover { border-color: var(--c-mid); transform: translateY(-3px); }
.social-card .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--c-bg); display: flex; align-items: center; justify-content: center;
  color: var(--c-ink);
}
.social-card .nm { font-family: 'Urbanist', sans-serif; font-weight: 600; font-size: 0.9rem; }
.social-card .hd { font-size: 0.8rem; color: var(--c-mid); }
@media (max-width: 560px) { .socials { grid-template-columns: repeat(2, 1fr); } }

/* Gallery masonry */
.masonry { columns: 3; column-gap: 20px; }
.masonry-item {
  margin-bottom: 20px; break-inside: avoid;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--c-line);
}
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.5s var(--ease); }
.masonry-item:hover img { transform: scale(1.04); }
@media (max-width: 920px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

/* Comparison table */
.cmp { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.95rem;
}
.cmp th {
  font-family: 'Urbanist', sans-serif; font-weight: 600;
  background: var(--c-bg); color: var(--c-ink);
}
.cmp tr:hover td { background: rgba(236, 239, 241, 0.4); }
.cmp .ok { color: #2E7D32; font-weight: 700; }
.cmp .no { color: #C62828; font-weight: 700; }
@media (max-width: 720px) {
  .cmp-wrap { overflow-x: auto; }
  .cmp { min-width: 600px; }
}

/* Sidebar split */
.sidebar-split { display: grid; grid-template-columns: 260px 1fr; gap: 56px; }
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar h4 { margin-bottom: 16px; font-size: 1rem; }
.sidebar ul { list-style: none; }
.sidebar li { margin-bottom: 8px; }
.sidebar a {
  display: block; padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.92rem; color: var(--c-mid);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.sidebar a:hover { background: var(--c-bg); color: var(--c-ink); }
.sidebar a.active { background: var(--c-ink); color: var(--c-white); }
@media (max-width: 920px) {
  .sidebar-split { grid-template-columns: 1fr; gap: 32px; }
  .sidebar { position: static; }
}

/* About company */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-grid img { border-radius: 16px; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }

/* Download resources */
.downloads { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.dl-card {
  display: flex; gap: 20px; align-items: center;
  padding: 24px; border: 1px solid var(--c-line); border-radius: 12px;
  background: var(--c-white);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.dl-card:hover { border-color: var(--c-mid); transform: translateY(-2px); }
.dl-card .ic {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--c-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-ink);
}
.dl-card h4 { margin-bottom: 2px; font-size: 1rem; }
.dl-card p { margin: 0; font-size: 0.85rem; color: var(--c-mid); }
.dl-card .arr { margin-left: auto; color: var(--c-mid); }
@media (max-width: 720px) { .downloads { grid-template-columns: 1fr; } }

/* Article body */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { font-size: 1.1rem; line-height: 1.8; color: var(--c-dark); margin-bottom: 1.4em; }
.article-body h2 { margin-top: 2.2em; margin-bottom: 0.6em; font-size: 1.85rem; }
.article-body h3 { margin-top: 1.8em; margin-bottom: 0.5em; font-size: 1.35rem; }
.article-body ul, .article-body ol { margin: 0 0 1.4em 1.4em; }
.article-body ul li, .article-body ol li { margin-bottom: 0.5em; color: var(--c-dark); line-height: 1.75; }
.article-body blockquote {
  border-left: 3px solid var(--c-ink);
  padding: 4px 0 4px 24px;
  margin: 2em 0;
  font-size: 1.2rem; font-style: italic;
  color: var(--c-ink);
}
.article-body img { border-radius: 12px; margin: 1.5em 0; }
.article-body figcaption { font-size: 0.88rem; color: var(--c-mid); text-align: center; margin-top: 8px; }

/* Tags / share */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 50px;
  background: var(--c-bg); color: var(--c-dark);
  font-family: 'Urbanist', sans-serif; font-size: 0.82rem; font-weight: 500;
  transition: background 0.25s var(--ease);
}
.tag:hover { background: var(--c-soft); color: var(--c-white); }
.share { display: flex; gap: 10px; }
.share a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-bg); display: flex; align-items: center; justify-content: center;
  color: var(--c-dark); transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.share a:hover { background: var(--c-ink); color: var(--c-white); }

/* Related */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rel-card {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--c-line); background: var(--c-white);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.rel-card:hover { border-color: var(--c-mid); transform: translateY(-3px); }
.rel-img { aspect-ratio: 16/10; overflow: hidden; }
.rel-img img { width: 100%; height: 100%; object-fit: cover; }
.rel-body { padding: 20px; }
.rel-body h4 { margin-bottom: 8px; font-size: 1.05rem; }
.rel-body p { font-size: 0.88rem; color: var(--c-mid); margin: 0; }
@media (max-width: 920px) { .related { grid-template-columns: 1fr; } }

/* Author card */
.author-card {
  display: flex; gap: 24px; align-items: center;
  padding: 28px; border: 1px solid var(--c-line); border-radius: 16px;
  background: var(--c-white);
}
.author-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-card h4 { margin-bottom: 4px; }
.author-card p { margin: 0; font-size: 0.9rem; color: var(--c-mid); }
@media (max-width: 560px) { .author-card { flex-direction: column; text-align: center; } }

/* Comments */
.comments { display: flex; flex-direction: column; gap: 24px; }
.comment {
  display: flex; gap: 16px;
  padding-bottom: 24px; border-bottom: 1px solid var(--c-line);
}
.comment:last-child { border-bottom: none; }
.comment .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-bg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Urbanist', sans-serif; font-weight: 600; color: var(--c-ink);
}
.comment .body p { margin: 6px 0 0; font-size: 0.95rem; }
.comment .name { font-family: 'Urbanist', sans-serif; font-weight: 600; }
.comment .when { font-size: 0.82rem; color: var(--c-mid); margin-left: 8px; }

/* Event calendar */
.events { display: flex; flex-direction: column; gap: 16px; }
.event {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 24px; align-items: center;
  padding: 24px; border: 1px solid var(--c-line); border-radius: 12px;
  background: var(--c-white);
  transition: border-color 0.3s var(--ease);
}
.event:hover { border-color: var(--c-mid); }
.event .date {
  text-align: center; padding: 14px 12px;
  background: var(--c-bg); border-radius: 12px;
}
.event .date .d { font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 1.8rem; color: var(--c-ink); line-height: 1; }
.event .date .m { font-size: 0.78rem; color: var(--c-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.event h4 { margin-bottom: 4px; }
.event p { margin: 0; font-size: 0.9rem; color: var(--c-mid); }
@media (max-width: 720px) {
  .event { grid-template-columns: 80px 1fr; }
  .event .arr { display: none; }
}

/* CTA banner */
.cta-band {
  background: var(--c-ink); color: var(--c-white);
  border-radius: 24px; padding: 64px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(144,164,174,0.2), transparent 50%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--c-white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 760px) {
  .cta-band { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .cta-band .actions { justify-content: center; }
}

/* Pricing-like overview (no costs) */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.plan {
  padding: 36px 32px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.plan:hover { border-color: var(--c-mid); transform: translateY(-3px); }
.plan.featured { background: var(--c-ink); color: var(--c-white); }
.plan.featured h3, .plan.featured .plan-tag { color: var(--c-white); }
.plan.featured ul li { color: rgba(255,255,255,0.85); }
.plan.featured ul li::before { color: var(--c-soft); }
.plan-tag {
  display: inline-block; font-family: 'Urbanist', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-mid); margin-bottom: 12px;
}
.plan h3 { margin-bottom: 8px; }
.plan p.note { color: var(--c-mid); font-size: 0.9rem; margin-bottom: 24px; }
.plan ul { list-style: none; margin-bottom: 28px; }
.plan ul li {
  padding: 8px 0 8px 26px; position: relative;
  font-size: 0.95rem; color: var(--c-dark);
}
.plan ul li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--c-mid); font-weight: 700;
}
@media (max-width: 920px) { .plans { grid-template-columns: 1fr; } }

/* Policy pages */
.policy { max-width: 820px; margin: 0 auto; }
.policy h2 {
  font-size: 1.6rem;
  margin-top: 2.5em; margin-bottom: 0.6em;
  padding-top: 1.6em;
  border-top: 1px solid var(--c-line);
}
.policy h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.policy ol > li { margin-bottom: 0.6em; }

/* Footer */
.site-footer {
  background: var(--c-ink); color: var(--c-bg);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 {
  color: var(--c-white); font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--c-white); }
.footer-grid .brand { color: var(--c-white); margin-bottom: 14px; }
.footer-grid p { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 360px; }
.footer-meta { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 16px; line-height: 1.7; }
.footer-meta div { margin-bottom: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 24px;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--c-white); }
.footer-policy-links { display: flex; gap: 24px; }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Cookie banner */
.cookie-bar {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  background: var(--c-ink); color: var(--c-white);
  padding: 20px 24px; border-radius: 16px;
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(38,50,56,0.25);
  z-index: 110; max-width: 720px; margin: 0 auto;
  transform: translateY(120%); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cookie-bar.show { transform: translateY(0); opacity: 1; }
.cookie-bar p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.9rem; flex: 1; min-width: 240px; }
.cookie-bar a { color: var(--c-soft); text-decoration: underline; }
.cookie-bar button {
  padding: 10px 22px; border-radius: 50px;
  background: var(--c-white); color: var(--c-ink);
  font-family: 'Urbanist', sans-serif; font-weight: 600;
  font-size: 0.88rem;
}
.cookie-bar button:hover { background: var(--c-soft); color: var(--c-ink); }

/* Parallax decorative bg helper */
.parallax-bg { background-attachment: fixed; }
@media (max-width: 720px) { .parallax-bg { background-attachment: scroll; } }

/* Utility */
.center { text-align: center; }
.muted { color: var(--c-mid); }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
