/* pathbk.com — Business Intelligence & Data Insights */
:root {
  --c-ink: #263238;
  --c-dark: #37474F;
  --c-mid: #546E7A;
  --c-soft: #90A4AE;
  --c-bg: #ECEFF1;
  --c-white: #ffffff;
  --c-accent: #37474F;
  --c-line: rgba(38, 50, 56, 0.1);
  --c-line-soft: rgba(38, 50, 56, 0.05);
  --grad-mesh: radial-gradient(at 25% 20%, rgba(84, 110, 122, 0.18) 0%, transparent 50%),
               radial-gradient(at 80% 10%, rgba(38, 50, 56, 0.14) 0%, transparent 50%),
               radial-gradient(at 50% 90%, rgba(144, 164, 174, 0.20) 0%, transparent 50%);
  --grad-text: linear-gradient(135deg, #263238 0%, #546E7A 60%, #90A4AE 100%);
  --shadow-sm: 0 2px 8px rgba(38, 50, 56, 0.06);
  --shadow-md: 0 8px 24px rgba(38, 50, 56, 0.10);
  --shadow-lg: 0 20px 50px rgba(38, 50, 56, 0.14);
  --shadow-xl: 0 30px 80px rgba(38, 50, 56, 0.18);
  --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: 'General Sans', -apple-system, BlinkMacSystemFont, system-ui, 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: 'Cabinet Grotesk', 'Cabinet Grotesk Variable', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.85rem); font-weight: 600; }
h4 { font-size: 1.18rem; font-weight: 600; }

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.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: rgba(255,255,255,0.78); }
.section--alt { background: var(--c-bg); }

/* Zigzag dividers */
.zigzag-top, .zigzag-bottom {
  position: absolute; left: 0; right: 0; height: 60px;
  background-repeat: repeat-x; background-size: 80px 60px;
  pointer-events: none;
}
.zigzag-top { top: -1px; }
.zigzag-bottom { bottom: -1px; }
.section--diag { transform: skewY(-2deg); margin: 60px 0; }
.section--diag > .container { transform: skewY(2deg); }

/* Eyebrow / mini-label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-mid);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 30px; height: 2px; 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; position: relative; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::after {
  content: ''; width: 30px; height: 2px; background: var(--c-mid);
}

/* Gradient text */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons — minimal text-link with animated underline */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  color: var(--c-ink);
  position: relative;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.btn::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--c-ink); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn:hover { color: var(--c-mid); }
.btn:hover::after { transform: scaleX(0); transform-origin: right; }

.btn-arrow .arr {
  display: inline-block; transition: transform 0.3s var(--ease);
}
.btn-arrow:hover .arr { transform: translateX(6px); }

.btn-ghost { color: var(--c-white); }
.btn-ghost::after { background: var(--c-white); }
.btn-ghost:hover { color: rgba(255,255,255,0.7); }

.btn-block {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--c-ink); color: var(--c-white);
  border-radius: 8px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-block:hover { background: var(--c-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block.outline { background: transparent; color: var(--c-ink); border: 1.5px solid var(--c-ink); }
.btn-block.outline:hover { background: var(--c-ink); color: var(--c-white); }
.btn-block.light { background: var(--c-white); color: var(--c-ink); }
.btn-block.light:hover { background: var(--c-bg); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-line-soft);
}
.site-header.scrolled { padding: 12px 0; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.brand-mark {
  position: relative; width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-mark::before, .brand-mark::after {
  content: ''; position: absolute; inset: 0;
  background: var(--c-ink); border-radius: 6px;
}
.brand-mark::before { transform: rotate(-12deg); opacity: 0.85; }
.brand-mark::after { transform: rotate(12deg); background: var(--c-mid); }
.brand-mark span {
  position: relative; z-index: 1; color: var(--c-white);
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; font-size: 1rem;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  position: relative;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-dark);
  padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--c-ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover { color: var(--c-ink); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 22px !important;
  background: var(--c-ink); color: var(--c-white) !important;
  border-radius: 8px;
  transition: background 0.25s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--c-dark); }

.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: 980px) {
  .nav {
    position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--c-white);
    padding: 24px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 16px; font-size: 1rem; border-radius: 8px; }
  .nav a::after { display: none; }
  .nav a:hover { background: var(--c-bg); }
  .burger { display: flex; }
}

/* Hero — gradient mesh */
.hero-mesh {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}
.hero-mesh::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-mesh);
  z-index: 0;
}
.hero-mesh > .container { position: relative; z-index: 2; }
.hero-mesh h1 {
  max-width: 880px;
  margin: 0 auto 24px;
  text-align: center;
}
.hero-mesh p.lead {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 1.2rem;
}
.hero-mesh .hero-actions {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Floating preview cards */
.float-cards {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  height: 260px;
}
.float-card {
  position: absolute; width: 260px; padding: 18px;
  background: var(--c-white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line-soft);
}
.float-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px;
  margin-bottom: 12px;
}
.float-card .fc-label { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem; }
.float-card .fc-meta { font-size: 0.82rem; color: var(--c-mid); margin-top: 2px; }
.float-card.fc1 { left: 0; top: 0; transform: rotate(-4deg); animation: float1 7s ease-in-out infinite; }
.float-card.fc2 { left: 50%; top: 40px; transform: translateX(-50%) rotate(2deg); z-index: 2; animation: float2 6s ease-in-out infinite; }
.float-card.fc3 { right: 0; top: 10px; transform: rotate(5deg); animation: float3 8s ease-in-out infinite; }
@keyframes float1 { 0%, 100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-10px); } }
@keyframes float2 { 0%, 100% { transform: translateX(-50%) rotate(2deg) translateY(0); } 50% { transform: translateX(-50%) rotate(2deg) translateY(-14px); } }
@keyframes float3 { 0%, 100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(5deg) translateY(-8px); } }
@media (max-width: 760px) {
  .float-cards { height: auto; display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 320px; }
  .float-card { position: static; transform: none !important; width: 100%; animation: none; }
}

/* Minimal animated header */
.hero-minimal {
  padding: 180px 0 100px;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.hero-minimal::after {
  content: ''; position: absolute; right: -120px; top: 60%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(84,110,122,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-minimal h1 .word { display: inline-block; opacity: 1; transform: translateY(0); }
.hero-minimal h1 .word.in { animation: word-in 0.7s var(--ease) both; }
@keyframes word-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-minimal p { font-size: 1.2rem; max-width: 700px; color: var(--c-mid); }

/* Hero banner — with breadcrumb */
.hero-banner {
  padding: 160px 0 90px;
  background: var(--c-ink);
  color: var(--c-white);
  position: relative; overflow: hidden;
}
.hero-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(144,164,174,0.18), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(84,110,122,0.22), transparent 60%);
}
.hero-banner .container { position: relative; z-index: 1; }
.hero-banner h1 { color: var(--c-white); max-width: 800px; }
.hero-banner p { color: rgba(255,255,255,0.82); max-width: 640px; font-size: 1.1rem; }

/* Hero full-width with decorative element */
.hero-full {
  padding: 160px 0 80px;
  background: var(--c-bg);
  position: relative; overflow: hidden;
}
.hero-full::after {
  content: ''; position: absolute; right: 5%; top: 30%;
  width: 200px; height: 200px;
  background: var(--c-ink);
  border-radius: 30% 70% 65% 35% / 30% 35% 65% 70%;
  opacity: 0.85;
  z-index: 0;
  animation: blob 18s ease-in-out infinite alternate;
}
.hero-full::before {
  content: ''; position: absolute; left: -5%; bottom: 0;
  width: 280px; height: 280px;
  background: var(--c-soft);
  border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
  opacity: 0.4;
  z-index: 0;
  animation: blob 22s ease-in-out infinite alternate-reverse;
}
@keyframes blob {
  0% { border-radius: 30% 70% 65% 35% / 30% 35% 65% 70%; transform: rotate(0); }
  50% { border-radius: 50% 50% 60% 40% / 60% 30% 70% 40%; transform: rotate(20deg); }
  100% { border-radius: 70% 30% 40% 60% / 40% 60% 50% 50%; transform: rotate(-15deg); }
}
.hero-full .container { position: relative; z-index: 1; }
.hero-full h1 { max-width: 800px; }
.hero-full .subtitle { font-size: 1.3rem; color: var(--c-mid); margin-top: 18px; max-width: 600px; }

/* Hero with contact heading */
.hero-contact {
  min-height: 70vh;
  padding: 160px 0 80px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-dark) 100%);
  color: var(--c-white);
  position: relative; overflow: hidden;
}
.hero-contact::after {
  content: ''; position: absolute; right: -10%; top: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(144,164,174,0.25), transparent 70%);
}
.hero-contact .container { position: relative; z-index: 1; }
.hero-contact h1 { color: var(--c-white); max-width: 800px; }
.hero-contact p { color: rgba(255,255,255,0.82); max-width: 600px; font-size: 1.1rem; }

/* Article hero */
.article-hero {
  padding: 150px 0 60px;
  background: var(--c-bg);
  position: relative;
}
.article-hero h1 { max-width: 900px; }
.article-meta {
  display: flex; gap: 16px; align-items: center;
  color: var(--c-mid);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.92rem;
  margin: 18px 0 32px;
}
.article-meta .dot { opacity: 0.4; }
.featured-img {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 16/8;
  box-shadow: var(--shadow-lg);
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }

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

/* Reveal (no opacity hiding) */
.reveal { opacity: 1; transform: translateY(22px); 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; }

/* Elevated cards — image top + gradient overlay */
.card {
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .card-img {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card .card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(38,50,56,0.5) 100%);
}
.card .card-img .card-tag {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  padding: 6px 14px; background: rgba(255,255,255,0.92); color: var(--c-ink);
  font-family: 'Cabinet Grotesk', sans-serif; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 50px;
}
.card .card-body { padding: 24px 28px 28px; }
.card .card-body h3 { margin-bottom: 8px; }
.card .card-body p { color: var(--c-mid); margin: 0 0 16px; font-size: 0.95rem; }
.card .card-body .meta { font-size: 0.85rem; color: var(--c-mid); font-family: 'Cabinet Grotesk', sans-serif; }

/* Grid */
.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: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--c-line);
  transition: border-color 0.25s var(--ease);
}
.faq-item:first-child { border-top: 1px solid var(--c-line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--c-ink);
  cursor: pointer;
  text-align: left;
  width: 100%;
  background: none;
}
.faq-q .ic {
  flex-shrink: 0; width: 32px; height: 32px;
  border: 1.5px solid var(--c-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
}
.faq-q .ic::before, .faq-q .ic::after {
  content: ''; position: absolute; background: var(--c-mid); transition: opacity 0.3s var(--ease);
}
.faq-q .ic::before { width: 12px; height: 2px; }
.faq-q .ic::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .ic { transform: rotate(180deg); border-color: var(--c-ink); background: var(--c-ink); }
.faq-item.open .faq-q .ic::before { background: var(--c-white); }
.faq-item.open .faq-q .ic::after { opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a > div { padding: 0 0 24px; max-width: 720px; color: var(--c-dark); }

/* Stats counter */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 40px 0;
}
.stat .num {
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.stat .lbl {
  font-family: 'Cabinet Grotesk', sans-serif;
  color: var(--c-mid); font-size: 0.95rem;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* Portfolio */
.portfolio { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.proj-card {
  position: relative;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--c-white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.proj-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.proj-card .proj-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.proj-card .proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.proj-card:hover .proj-img img { transform: scale(1.06); }
.proj-card .proj-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(38,50,56,0.6) 100%);
}
.proj-card .proj-body { padding: 28px; }
.proj-card .proj-cat {
  font-family: 'Cabinet Grotesk', sans-serif; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-mid); margin-bottom: 10px;
}
.proj-card h3 { margin-bottom: 8px; }
.proj-card p { color: var(--c-mid); margin: 0; font-size: 0.95rem; }
@media (max-width: 760px) { .portfolio { grid-template-columns: 1fr; } }

/* Masonry */
.masonry { columns: 3; column-gap: 20px; }
.masonry-item {
  margin-bottom: 20px; break-inside: avoid;
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.5s var(--ease); }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item .mt-cap {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  color: var(--c-white);
  font-family: 'Cabinet Grotesk', sans-serif; font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
@media (max-width: 980px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

/* Pricing plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.plan {
  position: relative;
  background: var(--c-white);
  border-radius: 16px;
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.featured { background: var(--c-ink); color: var(--c-white); border-color: var(--c-ink); }
.plan.featured h3, .plan.featured .plan-tag { color: var(--c-white); }
.plan.featured p { color: rgba(255,255,255,0.78); }
.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: 'Cabinet Grotesk', sans-serif;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-mid); margin-bottom: 12px;
}
.plan h3 { margin-bottom: 10px; }
.plan p { color: var(--c-mid); font-size: 0.95rem; margin-bottom: 24px; }
.plan ul { list-style: none; margin: 0 0 28px; }
.plan ul li {
  padding: 9px 0 9px 26px; position: relative; font-size: 0.95rem; color: var(--c-dark);
}
.plan ul li::before {
  content: '→'; position: absolute; left: 0; top: 9px; color: var(--c-mid); font-weight: 700;
}
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; } }

/* Timeline */
.timeline {
  position: relative; padding-left: 36px;
  max-width: 820px; margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 12px; bottom: 12px;
  width: 2px; background: var(--c-line);
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -36px; top: 8px;
  width: 30px; height: 30px;
  background: var(--c-white);
  border: 2px solid var(--c-ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.tl-item .tl-num {
  position: absolute; left: -36px; top: 8px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700; font-size: 0.85rem; color: var(--c-ink);
  z-index: 1;
}
.tl-item h4 { margin-bottom: 6px; }
.tl-item p { color: var(--c-mid); margin: 0; }

/* Icon feature list */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  padding: 32px 28px;
  background: var(--c-white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ic {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--c-ink); color: var(--c-white);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.feature .ic::before {
  content: ''; position: absolute; inset: -3px;
  background: var(--c-soft); opacity: 0.3;
  border-radius: 14px; z-index: -1;
  transform: rotate(8deg);
}
.feature h3 { margin-bottom: 8px; font-size: 1.18rem; }
.feature p { color: var(--c-mid); margin: 0; font-size: 0.95rem; }
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* Partners strip */
.partners {
  display: flex; flex-wrap: wrap; gap: 36px 56px;
  align-items: center; justify-content: center;
}
.partner-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600; font-size: 1.25rem;
  color: var(--c-mid);
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease);
}
.partner-name:hover { color: var(--c-ink); }
.partner-name::before {
  content: '◆'; margin-right: 10px; color: var(--c-soft);
  font-size: 0.7em;
}

/* Team grid */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  border-radius: 14px; overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(38,50,56,0.35) 100%);
}
.team-info { padding: 20px 24px 24px; }
.team-info .name { font-family: 'Cabinet Grotesk', 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: 980px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team { grid-template-columns: 1fr; } }

/* Comparison table */
.cmp-wrap { overflow-x: auto; border-radius: 14px; box-shadow: var(--shadow-sm); }
.cmp { width: 100%; border-collapse: collapse; background: var(--c-white); }
.cmp th, .cmp td {
  padding: 18px 22px; text-align: left;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.95rem;
}
.cmp th {
  font-family: 'Cabinet Grotesk', 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: 760px) { .cmp { min-width: 560px; } }

/* Data viz / chart area */
.dataviz {
  background: var(--c-ink); color: var(--c-white);
  border-radius: 20px; padding: 48px;
  position: relative; overflow: hidden;
}
.dataviz::before {
  content: ''; position: absolute; right: -10%; top: -30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(144,164,174,0.3), transparent 60%);
}
.dataviz > * { position: relative; z-index: 1; }
.dataviz h3 { color: var(--c-white); margin-bottom: 8px; }
.dataviz p { color: rgba(255,255,255,0.78); }
.chart-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 36px;
}
.chart-bar {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.12);
}
.chart-bar .clabel {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.chart-bar .cnum {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700; font-size: 1.8rem;
  color: var(--c-white);
}
.chart-bar .ctrend {
  margin-top: 8px;
  display: flex; align-items: center; gap: 4px;
  font-size: 0.82rem;
  color: #81C784;
}
.chart-bar .ctrend.down { color: #FF8A65; }
.bar-row {
  display: flex; align-items: end; gap: 8px;
  height: 120px; margin-top: 28px;
}
.bar-row .bar {
  flex: 1; background: linear-gradient(180deg, var(--c-soft) 0%, var(--c-mid) 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: opacity 0.3s var(--ease);
}
.bar-row .bar:hover { opacity: 0.85; }
.bar-row .bar::after {
  content: attr(data-label);
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  font-family: 'Cabinet Grotesk', sans-serif;
}
@media (max-width: 760px) { .chart-grid { grid-template-columns: repeat(2, 1fr); } .dataviz { padding: 32px 24px; } }

/* Live chat widget */
.chat-mockup {
  border-radius: 16px; box-shadow: var(--shadow-lg);
  background: var(--c-white);
  overflow: hidden;
  max-width: 460px;
}
.chat-head {
  background: var(--c-ink); color: var(--c-white);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
}
.chat-head .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 600;
  color: var(--c-white); font-size: 0.85rem;
}
.chat-head .ch-meta .nm { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem; }
.chat-head .ch-meta .st { font-size: 0.78rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }
.chat-head .ch-meta .st::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #81C784; }
.chat-body { padding: 24px 22px; min-height: 160px; }
.chat-msg { display: flex; gap: 10px; margin-bottom: 14px; }
.chat-msg .av {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cabinet Grotesk', sans-serif; font-size: 0.74rem; font-weight: 600;
  color: var(--c-ink);
}
.chat-msg .bub {
  background: var(--c-bg); padding: 10px 14px; border-radius: 12px;
  font-size: 0.92rem; max-width: 80%;
}
.chat-msg.you { flex-direction: row-reverse; }
.chat-msg.you .bub { background: var(--c-ink); color: var(--c-white); }
.chat-input {
  border-top: 1px solid var(--c-line);
  padding: 16px 22px;
  display: flex; gap: 12px;
}
.chat-input input {
  flex: 1; padding: 10px 14px; border-radius: 50px;
  border: 1px solid var(--c-line); font-family: inherit;
  font-size: 0.92rem; background: var(--c-bg);
}
.chat-input button {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-ink); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
}

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

/* Sidebar + main split */
.sidebar-split { display: grid; grid-template-columns: 260px 1fr; gap: 64px; }
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar h4 { margin-bottom: 16px; }
.sidebar ul { list-style: none; }
.sidebar li { margin-bottom: 6px; }
.sidebar a {
  display: block; padding: 10px 14px;
  font-family: 'Cabinet Grotesk', sans-serif; font-size: 0.92rem;
  color: var(--c-mid);
  border-radius: 8px;
  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: 980px) {
  .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; box-shadow: var(--shadow-md); }
@media (max-width: 760px) { .about-grid { 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: var(--shadow-md);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  opacity: 0; transform: translateY(20px);
}
.fab.in { opacity: 1; transform: translateY(0); }
.fab:hover { background: var(--c-dark); transform: translateY(-3px); }

/* Contact form */
.form {
  background: var(--c-white); border-radius: 16px;
  padding: 40px; box-shadow: var(--shadow-md);
}
.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: 'Cabinet Grotesk', 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: 13px 16px; background: var(--c-bg);
  border: 1.5px 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; } }

/* Map */
.map-wrap { border-radius: 16px; overflow: hidden; aspect-ratio: 16/8; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* 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.9rem; }
.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; box-shadow: var(--shadow-sm); }
.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: 'Cabinet Grotesk', sans-serif; font-size: 0.82rem; font-weight: 500;
  transition: background 0.25s var(--ease);
}
.tag:hover { background: var(--c-ink); color: var(--c-white); }
.share { display: flex; gap: 10px; }
.share a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-bg); color: var(--c-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.share a:hover { background: var(--c-ink); color: var(--c-white); }

/* Comments */
.comments { display: flex; flex-direction: column; gap: 24px; max-width: 760px; margin: 0 auto; }
.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: 'Cabinet Grotesk', sans-serif; font-weight: 600; color: var(--c-ink);
}
.comment .body p { margin: 6px 0 0; font-size: 0.95rem; }
.comment .name { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 600; }
.comment .when { font-size: 0.82rem; color: var(--c-mid); margin-left: 8px; }

/* Related cards */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rel-card {
  border-radius: 12px; overflow: hidden;
  background: var(--c-white); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.rel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rel-img { aspect-ratio: 16/10; overflow: hidden; }
.rel-img img { width: 100%; height: 100%; object-fit: cover; }
.rel-body { padding: 22px 24px 24px; }
.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: 980px) { .related { grid-template-columns: 1fr; } }

/* Video placeholder (no iframe) */
.video-card {
  position: relative;
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,50,56,0.2) 0%, rgba(38,50,56,0.55) 100%);
}
.video-card .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.video-card .play::before {
  content: ''; width: 0; height: 0;
  border-left: 22px solid var(--c-ink);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-card:hover .play { transform: translate(-50%, -50%) scale(1.08); background: var(--c-white); }
.video-card .vc-cap {
  position: absolute; left: 28px; bottom: 28px; right: 28px; z-index: 1;
  color: var(--c-white);
}
.video-card .vc-cap .lbl { font-family: 'Cabinet Grotesk', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.video-card .vc-cap h3 { color: var(--c-white); margin-top: 6px; }

/* Policy */
.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; }

/* Mega footer (extra section before site footer) */
.mega-footer {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-white) 100%);
  padding: 80px 0;
}
.mega-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 48px;
  margin-bottom: 56px;
}
.mega-grid h4 {
  font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-ink); margin-bottom: 16px;
}
.mega-grid ul { list-style: none; }
.mega-grid li { margin-bottom: 10px; }
.mega-grid a {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.92rem; color: var(--c-mid);
}
.mega-grid a:hover { color: var(--c-ink); }
.mega-grid p { color: var(--c-mid); font-size: 0.95rem; }
.mega-newsletter {
  display: flex; gap: 10px; margin-top: 20px;
}
.mega-newsletter input {
  flex: 1; padding: 12px 16px;
  border-radius: 8px; border: 1px solid var(--c-line);
  font-family: inherit; font-size: 0.92rem; background: var(--c-white);
}
.mega-newsletter input:focus { outline: none; border-color: var(--c-mid); }
.mega-newsletter button {
  padding: 12px 20px; border-radius: 8px;
  background: var(--c-ink); color: var(--c-white);
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 600; font-size: 0.88rem;
}
@media (max-width: 980px) { .mega-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mega-grid { grid-template-columns: 1fr; } }

/* Site footer */
.site-footer {
  background: var(--c-ink); color: var(--c-bg);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 {
  color: var(--c-white); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.08em;
  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-family: 'Cabinet Grotesk', sans-serif; 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: 380px; }
.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: 22px; }
@media (max-width: 980px) { .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: 14px;
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  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: 8px;
  background: var(--c-white); color: var(--c-ink);
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 600; font-size: 0.88rem;
}

/* Utility */
.center { text-align: center; }
.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; }
