/* ============================================================
   SPIRINS CONSULTING — Electric Blueprint
   Design: Kreativ & Mutig
   Stack: Vanilla HTML/CSS/JS — Production Ready
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;1,9..40,400&family=Space+Mono:wght@400;700&display=swap');

/* === VARIABLES === */
:root {
  /* Colors */
  --ink:        #08101f;
  --ink-soft:   #131d30;
  --blue:       #1a6bff;
  --blue-dark:  #0f52cc;
  --blue-glow:  rgba(26, 107, 255, 0.15);
  --white:      #ffffff;
  --off-white:  #f4f7fd;
  --grey-100:   #eaeff8;
  --grey-300:   #c2cfe0;
  --grey-500:   #7a8faa;
  --grey-700:   #3d5068;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Spacing (8px grid) */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s5:  24px;
  --s6:  32px;
  --s7:  48px;
  --s8:  64px;
  --s9:  96px;
  --s10: 128px;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.25s;
  --duration-slow: 0.5s;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(8,16,31,0.12), 0 1px 2px rgba(8,16,31,0.08);
  --shadow-md: 0 4px 16px rgba(8,16,31,0.12), 0 2px 6px rgba(8,16,31,0.08);
  --shadow-lg: 0 16px 48px rgba(8,16,31,0.16), 0 4px 16px rgba(8,16,31,0.1);
  --shadow-blue: 0 8px 32px rgba(26, 107, 255, 0.3);

  /* Border */
  --radius:    6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grey-700);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p { max-width: 65ch; }
p + p { margin-top: var(--s4); }
.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--grey-500);
  max-width: 55ch;
}
.mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.text-white { color: var(--white) !important; }
.text-grey   { color: var(--grey-500); }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s5);
}
.section { padding: var(--s9) 0; }
.section--dark {
  background: var(--ink);
  color: var(--grey-300);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--tinted { background: var(--off-white); }
.section--blue { background: var(--blue); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: var(--s4); }
.gap-5 { gap: var(--s5); }
.mt-4 { margin-top: var(--s4); }
.mt-5 { margin-top: var(--s5); }
.mt-6 { margin-top: var(--s6); }
.mt-7 { margin-top: var(--s7); }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-bottom var(--duration) var(--ease);
}
.nav.scrolled {
  background: rgba(8, 16, 31, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav--light.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
}
.nav--light .nav__link { color: var(--ink); }
.nav--light .nav__cta { background: var(--blue); color: var(--white); }
.nav--light .nav__logo-white { display: none; }
.nav--light .nav__logo-dark { display: block; }
.nav--dark .nav__logo-white { display: block; }
.nav--dark .nav__logo-dark { display: none; }
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}
.nav__logo { height: 52px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s5);
}
.nav__link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--duration) var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--white); }
.nav__link.active::after { transform: scaleX(1); }
.nav--light .nav__link { color: var(--grey-700); }
.nav--light .nav__link:hover { color: var(--ink); }
.nav__cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: var(--s2) var(--s5);
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}
/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease), opacity var(--duration);
}
.nav--light .nav__toggle span { background: var(--ink); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--ink);
  padding: var(--s5) var(--s5) var(--s7);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-direction: column;
  gap: var(--s4);
  z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { font-size: 1.1rem; color: var(--white); padding: var(--s3) 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav__mobile .nav__cta { margin-top: var(--s3); text-align: center; padding: var(--s4); font-size: 1rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: var(--s3) var(--s6);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}
.btn--outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline-dark:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--lg { padding: var(--s4) var(--s7); font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--duration) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* === HERO (HOME) === */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 107, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 107, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 107, 255, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--s10) var(--s5) var(--s9);
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s5);
  border: 1px solid rgba(26, 107, 255, 0.3);
  padding: var(--s1) var(--s3);
  border-radius: 20px;
  background: rgba(26, 107, 255, 0.07);
}
.hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}
.hero__headline {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--s6);
}
.hero__headline .outline {
  -webkit-text-stroke: 2px var(--blue);
  color: transparent;
}
.hero__headline .accent { color: var(--blue); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--grey-500);
  margin-bottom: var(--s7);
  max-width: 50ch;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: var(--s7);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  color: var(--grey-500);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}

/* === SECTION LABELS === */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s4);
  display: block;
}
.section-label--light { color: rgba(255,255,255,0.4); }

/* === PAGE HEROES (inner pages) === */
.page-hero {
  background: var(--ink);
  padding: calc(var(--nav-height) + var(--s9)) 0 var(--s9);
  position: relative;
  overflow: hidden;
}
.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 107, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 107, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: var(--grey-500); }
.page-hero__inner { position: relative; z-index: 1; }

/* === STATS / NUMBERS === */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-100);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--white);
  padding: var(--s7) var(--s5);
  text-align: center;
  transition: background var(--duration) var(--ease);
}
.stat:hover { background: var(--off-white); }
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s2);
}
.stat__label {
  font-size: 0.85rem;
  color: var(--grey-500);
  font-weight: 500;
}

/* === SERVICE CARDS === */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: var(--s7) var(--s6);
  transition: all var(--duration-slow) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-glow), transparent);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease);
}
.service-card:hover {
  border-color: rgba(26, 107, 255, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--blue-glow);
  border: 1px solid rgba(26, 107, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
  color: var(--blue);
  position: relative;
  z-index: 1;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: var(--s3); font-size: 1.25rem; position: relative; z-index: 1; }
.service-card p { font-size: 0.92rem; color: var(--grey-500); position: relative; z-index: 1; max-width: 100%; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: var(--s5);
  position: relative;
  z-index: 1;
  transition: gap var(--duration) var(--ease);
}
.service-card__link svg { width: 16px; height: 16px; transition: transform var(--duration) var(--ease); }
.service-card:hover .service-card__link { gap: var(--s3); }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* === FEATURE LIST === */
.feature-list { display: flex; flex-direction: column; gap: var(--s4); margin-top: var(--s5); }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s4) var(--s5);
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: border-color var(--duration) var(--ease);
}
.feature-item:hover { border-color: rgba(26, 107, 255, 0.3); }
.feature-item__check {
  width: 24px; height: 24px;
  background: rgba(26, 107, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}
.feature-item__check svg { width: 13px; height: 13px; }
.feature-item__text { font-size: 0.92rem; color: var(--grey-300); }

/* === TOOLS GRID === */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s5);
}
.tool-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  padding: var(--s2) var(--s4);
  border-radius: 20px;
  transition: all var(--duration) var(--ease);
}
.tool-badge:hover {
  color: var(--blue);
  border-color: rgba(26, 107, 255, 0.3);
  background: rgba(26, 107, 255, 0.05);
}

/* === PROCESS === */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.process-step { position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(100% - 20px);
  width: 40px;
  height: 1px;
  background: var(--grey-100);
  z-index: 0;
}
.process-step__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(26, 107, 255, 0.1);
  border: 1px solid rgba(26, 107, 255, 0.2);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
  position: relative;
  z-index: 1;
}
.process-step h4 { margin-bottom: var(--s2); font-size: 1rem; }
.process-step p { font-size: 0.88rem; color: var(--grey-500); max-width: 100%; }

/* === TESTIMONIAL === */
.testimonial {
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--s7);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-size: 8rem;
  color: var(--blue);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: var(--s5);
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial__text {
  font-size: 1.05rem;
  color: var(--grey-300);
  line-height: 1.7;
  margin-bottom: var(--s5);
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial__name { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 0.92rem; }
.testimonial__role { font-size: 0.8rem; color: var(--grey-500); }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  text-align: center;
  padding: var(--s10) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 107, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 107, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); max-width: 16ch; margin: 0 auto var(--s4); }
.cta-section .lead { margin: 0 auto var(--s7); }
.cta-section .lead { color: var(--grey-500); }

/* === ABOUT SECTION === */
.about-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--s9); align-items: center; }
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.06);
}
.about-visual__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--s4);
}
.about-visual__initials {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--blue);
  opacity: 0.2;
  letter-spacing: -0.05em;
  line-height: 1;
}
.about-visual__badge {
  position: absolute;
  bottom: var(--s5);
  left: var(--s5);
  right: var(--s5);
  background: rgba(8, 16, 31, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--s4) var(--s5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-visual__badge-text { font-family: var(--font-display); font-size: 0.85rem; color: var(--white); font-weight: 600; }
.about-visual__badge-sub { font-size: 0.75rem; color: var(--grey-500); margin-top: 2px; }
.about-visual__badge-years {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.about-text { color: var(--grey-300); }
.about-text h2 { color: var(--white); margin-bottom: var(--s5); }

/* === SKILLS BAR === */
.skills-list { display: flex; flex-direction: column; gap: var(--s4); margin-top: var(--s5); }
.skill-item__header { display: flex; justify-content: space-between; margin-bottom: var(--s2); }
.skill-item__name { font-size: 0.88rem; font-weight: 500; color: var(--grey-300); }
.skill-item__pct { font-family: var(--font-mono); font-size: 0.72rem; color: var(--grey-500); }
.skill-item__bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.skill-item__fill {
  height: 100%;
  background: linear-gradient(to right, var(--blue), #60a5fa);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease-out);
}
.skill-item__fill.animated { transform: scaleX(1); }

/* === TIMELINE === */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s5);
  position: relative;
  padding-bottom: var(--s6);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::after {
  content: '';
  position: absolute;
  left: 120px;
  top: 8px; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.07);
}
.timeline-item:last-child::after { display: none; }
.timeline-item__date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--grey-500);
  text-align: right;
  padding-top: 3px;
  letter-spacing: 0.05em;
}
.timeline-item__content { position: relative; padding-left: var(--s5); }
.timeline-item__content::before {
  content: '';
  position: absolute;
  left: -4px; top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--ink);
  z-index: 1;
}
.timeline-item h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 2px; }
.timeline-item__company { font-size: 0.82rem; color: var(--blue); margin-bottom: var(--s2); font-family: var(--font-display); font-weight: 500; }
.timeline-item p { font-size: 0.85rem; color: var(--grey-500); max-width: 100%; }

/* === PROJECT CARDS === */
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
.project-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--duration-slow) var(--ease), box-shadow var(--duration-slow) var(--ease);
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.project-card__visual {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-card__visual-text {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.1;
  letter-spacing: -0.05em;
}
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 107, 255, 0.08);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__body { padding: var(--s5) var(--s6); }
.project-card__tags { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s3); }
.project-card__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26, 107, 255, 0.1);
  padding: 2px var(--s3);
  border-radius: 20px;
  border: 1px solid rgba(26, 107, 255, 0.2);
}
.project-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: var(--s3); }
.project-card p { font-size: 0.88rem; color: var(--grey-500); max-width: 100%; }
.project-placeholder {
  border-radius: var(--radius-xl);
  border: 2px dashed rgba(255,255,255,0.1);
  padding: var(--s9);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}
.project-placeholder__icon { color: var(--grey-700); }
.project-placeholder h3 { color: var(--grey-500); font-size: 1rem; }
.project-placeholder p { font-size: 0.85rem; color: var(--grey-700); max-width: 100%; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--s8); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: var(--s5); }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s5);
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration) var(--ease);
}
.contact-item:hover { border-color: rgba(26, 107, 255, 0.3); }
.contact-item__icon {
  width: 40px; height: 40px;
  background: rgba(26, 107, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-item__icon svg { width: 18px; height: 18px; }
.contact-item__label { font-size: 0.75rem; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); margin-bottom: 3px; }
.contact-item__value { font-family: var(--font-display); font-size: 0.95rem; color: var(--white); font-weight: 500; }
.contact-item__value a { transition: color var(--duration); }
.contact-item__value a:hover { color: var(--blue); }

/* === FORM === */
.form { display: flex; flex-direction: column; gap: var(--s5); }
.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-group--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-label { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--grey-300); }
.form-input,
.form-textarea,
.form-select {
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: var(--s3) var(--s4);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-700); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select option { background: var(--ink); }
.form-note { font-size: 0.8rem; color: var(--grey-500); margin-top: var(--s2); }
.form-success {
  display: none;
  padding: var(--s5);
  background: rgba(26, 107, 255, 0.1);
  border: 1px solid rgba(26, 107, 255, 0.3);
  border-radius: var(--radius-lg);
  color: var(--grey-300);
  font-size: 0.92rem;
}

/* === LEGAL PAGES === */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--grey-700);
}
.legal-content h2 { font-size: 1.4rem; color: var(--ink); margin: var(--s7) 0 var(--s3); }
.legal-content h3 { font-size: 1.05rem; color: var(--ink); margin: var(--s5) 0 var(--s2); }
.legal-content p { margin-bottom: var(--s4); font-size: 0.92rem; max-width: 100%; }
.legal-content ul { margin: var(--s3) 0 var(--s4) var(--s5); list-style: disc; }
.legal-content ul li { font-size: 0.92rem; color: var(--grey-700); margin-bottom: var(--s2); }
.legal-content a { color: var(--blue); text-decoration: underline; }

/* === FOOTER === */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--s9) 0 var(--s6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s8);
}
.footer__brand { max-width: 300px; }
.footer__logo { height: 32px; margin-bottom: var(--s4); }
.footer__tagline { font-size: 0.85rem; color: var(--grey-500); line-height: 1.6; }
.footer__col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--grey-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s4);
}
.footer__links { display: flex; flex-direction: column; gap: var(--s3); }
.footer__link {
  font-size: 0.88rem;
  color: var(--grey-500);
  transition: color var(--duration) var(--ease);
}
.footer__link:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--s5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
}
.footer__copy { font-size: 0.82rem; color: var(--grey-500); }
.footer__legal { display: flex; gap: var(--s5); }
.footer__legal a {
  font-size: 0.82rem;
  color: var(--grey-500);
  transition: color var(--duration) var(--ease);
}
.footer__legal a:hover { color: var(--white); }

/* === ANIMATIONS === */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.animate-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .section { padding: var(--s7) 0; }
  .service-cards { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .about-split, .contact-grid, .project-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s6); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-group--row { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 90px 1fr; }
  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--s4); }
  .btn--lg { padding: var(--s3) var(--s6); font-size: 0.95rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__legal { flex-direction: column; align-items: center; gap: var(--s3); }
}

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.blog-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card--featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.blog-card__cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.blog-card--featured .blog-card__cover { aspect-ratio: unset; min-height: 320px; }
.blog-card__cover-letter {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.12;
  letter-spacing: -0.05em;
}
.blog-card__cover-badge {
  position: absolute;
  top: var(--s4); left: var(--s4);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px var(--s3);
  border-radius: 20px;
}
.blog-card__body {
  padding: var(--s5) var(--s6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s3);
  flex-wrap: wrap;
}
.blog-card__cat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26,107,255,0.08);
  padding: 2px var(--s3);
  border-radius: 20px;
  border: 1px solid rgba(26,107,255,0.2);
}
.blog-card__date { font-size: 0.78rem; color: var(--grey-500); }
.blog-card__read { font-size: 0.78rem; color: var(--grey-500); margin-left: auto; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: var(--s3); color: var(--ink); line-height: 1.3; }
.blog-card--featured h3 { font-size: 1.4rem; }
.blog-card p { font-size: 0.88rem; color: var(--grey-500); flex: 1; max-width: 100%; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: var(--s4);
  transition: gap var(--duration) var(--ease);
}
.blog-card__link svg { width: 15px; height: 15px; transition: transform var(--duration) var(--ease); }
.blog-card:hover .blog-card__link { gap: var(--s3); }
.blog-card:hover .blog-card__link svg { transform: translateX(3px); }

/* Blog Post */
.post-hero { background: var(--ink); padding: calc(var(--nav-height) + var(--s9)) 0 var(--s8); position: relative; overflow: hidden; }
.post-hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(26,107,255,0.05) 1px, transparent 1px), linear-gradient(90deg,rgba(26,107,255,0.05) 1px,transparent 1px); background-size: 48px 48px; }
.post-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.post-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2 { font-size: 1.5rem; color: var(--ink); margin: var(--s7) 0 var(--s3); }
.post-body h3 { font-size: 1.15rem; color: var(--ink); margin: var(--s5) 0 var(--s2); }
.post-body p { color: var(--grey-700); line-height: 1.8; margin-bottom: var(--s4); max-width: 100%; font-size: 1.02rem; }
.post-body ul, .post-body ol { margin: var(--s3) 0 var(--s5) var(--s5); }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { color: var(--grey-700); line-height: 1.7; margin-bottom: var(--s2); font-size: 1rem; }
.post-body a { color: var(--blue); text-decoration: underline; }
.post-body a.btn { color: var(--white); text-decoration: none; }
.post-body a.btn:hover { color: var(--white); }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body blockquote {
  border-left: 3px solid var(--blue);
  padding: var(--s4) var(--s5);
  margin: var(--s5) 0;
  background: rgba(26,107,255,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-body blockquote p { color: var(--grey-700); font-style: italic; margin: 0; }
.post-body .post-tip {
  background: rgba(26,107,255,0.06);
  border: 1px solid rgba(26,107,255,0.2);
  border-radius: var(--radius-lg);
  padding: var(--s5);
  margin: var(--s5) 0;
}
.post-body .post-tip strong { color: var(--blue); }
.post-author {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  margin: var(--s7) 0;
}
.post-author__img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.post-author__name { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.post-author__role { font-size: 0.8rem; color: var(--grey-500); margin-top: 2px; }
.post-share {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s5) 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  margin: var(--s5) 0 var(--s7);
  flex-wrap: wrap;
}
.post-share__label { font-size: 0.82rem; font-family: var(--font-display); font-weight: 600; color: var(--grey-500); }
.post-share a {
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  background: var(--ink);
  padding: var(--s2) var(--s4);
  border-radius: 20px;
  transition: background var(--duration) var(--ease);
  text-decoration: none;
}
.post-share a:hover { background: var(--blue); }
.blog-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: var(--s5);
  margin-bottom: var(--s5);
}
.sidebar-card h4 { font-size: 0.88rem; color: var(--ink); margin-bottom: var(--s4); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); }
.sidebar-posts { display: flex; flex-direction: column; gap: var(--s4); }
.sidebar-post { display: flex; flex-direction: column; gap: 3px; padding-bottom: var(--s3); border-bottom: 1px solid var(--grey-100); }
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post a { font-size: 0.88rem; font-family: var(--font-display); font-weight: 600; color: var(--ink); transition: color var(--duration); }
.sidebar-post a:hover { color: var(--blue); }
.sidebar-post span { font-size: 0.75rem; color: var(--grey-500); }
.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: var(--s7); align-items: start; }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { grid-column: span 2; grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: span 1; }
}

/* === UTILITY === */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.divider {
  height: 1px;
  background: var(--grey-100);
  margin: var(--s7) 0;
}
.divider--dark { background: rgba(255,255,255,0.07); }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: start;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  position: relative;
}
.pricing-card--featured {
  background: var(--ink);
  border-color: rgba(26,107,255,0.4);
  box-shadow: 0 0 0 1px rgba(26,107,255,0.2), var(--shadow-lg);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.pricing-card__label {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
}
.pricing-card--featured .pricing-card__label { color: rgba(255,255,255,0.4); }
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.pricing-card__price span { font-size: 1rem; font-weight: 500; color: var(--grey-500); }
.pricing-card--featured .pricing-card__price { color: var(--white); }
.pricing-card--featured .pricing-card__price span { color: rgba(255,255,255,0.5); }
.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--grey-500);
  line-height: 1.6;
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--grey-100);
}
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.08); }
.pricing-card__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-card__list li {
  font-size: 0.87rem;
  color: var(--grey-700);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.8rem;
}
.pricing-card--featured .pricing-card__list li { color: rgba(255,255,255,0.65); }
.pricing-card .btn { align-self: flex-start; margin-top: var(--s2); }
.pricing-grid--3 { grid-template-columns: 1fr 1fr 1fr; max-width: 1080px; }
@media (max-width: 960px) {
  .pricing-grid--3 { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  z-index: 9999;
  animation: cookieSlideUp 0.4s var(--ease) both;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--grey-500);
  line-height: 1.6;
}
.cookie-banner__text a {
  color: var(--blue);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn--accept {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--duration);
}
.cookie-btn--accept:hover { background: var(--blue-dark); }
.cookie-btn--decline {
  background: transparent;
  color: var(--grey-500);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--duration), border-color var(--duration);
}
.cookie-btn--decline:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; bottom: 16px; padding: 20px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn--accept, .cookie-btn--decline { flex: 1; text-align: center; }
}
