/* ── DESIGN TOKENS ── */
:root {
  --bg:        #070c19;
  --bg-alt:    #0b1020;
  --surface:   #0f1825;
  --surface-2: #141e30;
  --surface-3: #1a2640;

  --ink:       #f0f5ff;
  --ink-dim:   #bfcce8;
  --muted:     #7082a4;

  --line:        rgba(255,255,255,.06);
  --line-strong: rgba(255,255,255,.11);

  --blue:        #3b82f6;
  --blue-bright: #60a5fa;
  --blue-dark:   #1d4ed8;
  --blue-deep:   #0f2d6e;
  --blue-glow:   rgba(59,130,246,.38);
  --blue-soft:   rgba(59,130,246,.1);
  --blue-border: rgba(59,130,246,.22);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --container: 1180px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.35);
  --shadow:    0 10px 40px rgba(0,0,0,.5);
  --shadow-lg: 0 28px 80px rgba(0,0,0,.6);
  --shadow-blue: 0 12px 40px rgba(59,130,246,.28);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
a { text-decoration: none; color: inherit }
img { display: block; max-width: 100% }
ul { margin: 0; padding: 0; list-style: none }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto }
[id] { scroll-margin-top: 108px }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 0 24px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: opacity .4s ease, background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  opacity: 0.18;
  background: transparent;
}
.site-header.menu-open {
  opacity: 1 !important;
  background: rgba(7,12,25,.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  transition: none !important;
}
.site-header.scrolled:hover {
  opacity: 1;
  background: linear-gradient(to bottom, rgba(7,12,25,.52) 0%, rgba(7,12,25,.28) 70%, transparent 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: none;
  border-bottom: 1px solid transparent;
  transition: opacity .18s ease, background .18s ease, backdrop-filter .18s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  max-width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  height: 52px;
  width: auto;
  display: block;
  transition: filter .25s ease;
}
.brand:hover img {
  filter: drop-shadow(0 0 6px rgba(37,99,235,.4)) drop-shadow(0 0 14px rgba(37,99,235,.18));
}

/* Nav */
.nav { display: flex; gap: 0; font-size: 14px; font-weight: 600 }
.nav a {
  padding: 8px 16px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .25s ease, text-shadow .25s ease;
}
.nav a:hover,
.nav a.active {
  color: #93c5fd;
  text-shadow: 0 0 14px rgba(125,211,252,.45), 0 0 30px rgba(14,165,255,.2);
}

/* Header CTA — subtili tekstinė nuoroda */
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: rgba(238,242,247,.86);
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  transition: color .25s ease, text-shadow .25s ease, transform .2s ease;
}
.nav-cta:hover {
  color: #93c5fd;
  text-shadow: 0 0 14px rgba(125,211,252,.45), 0 0 30px rgba(14,165,255,.2);
  transform: translateX(2px);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--blue) }
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* ── MOBILE NAV ── */
.mobile-nav { display: none }
.mobile-nav a:not(.mob-cta) {
  display: block;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  transition: color .2s, padding-left .2s;
}
.mobile-nav a:not(.mob-cta):hover { color: var(--blue-bright); padding-left: 6px }
.mobile-nav .mob-cta {
  display: block;
  margin-top: 28px;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  transition: opacity .2s;
}
.mobile-nav .mob-cta:hover { opacity: .88; padding-left: 0 }

/* ── BUTTONS ── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 28px rgba(59,130,246,.32) }
  50%       { box-shadow: 0 14px 48px rgba(59,130,246,.58) }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 15px 30px;
  font-weight: 700;
  font-size: 15px;
  min-height: 52px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 8px 28px rgba(59,130,246,.32);
  animation: pulse-glow 3s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 16px 48px rgba(59,130,246,.58);
}
.btn-secondary {
  background: transparent;
  color: var(--ink-dim);
  border: 1.5px solid var(--line-strong);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 124px 0 36px; /* 52px content spacing + 72px header overlap */
  margin-top: -72px;     /* pull hero behind the sticky header */
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  top: -220px;
  right: -80px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(59,130,246,.14) 0%, transparent 60%);
  filter: blur(10px);
}
.hero-glow-2 {
  bottom: -80px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  min-height: 440px;
  position: relative;
  z-index: 1;
}

/* Hero label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-soft);
  color: var(--blue-bright);
  border: 1px solid var(--blue-border);
  border-radius: 999px;
  padding: 7px 16px 7px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--blue-bright);
}

/* Hero headline */
.hero-copy h1 {
  margin: 0 0 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.03;
  letter-spacing: -.045em;
  max-width: 540px;
  color: #fff;
}
.hero-copy p {
  max-width: 440px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap }

/* Trust points */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin-top: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.trust-item::before {
  content: "✓";
  color: var(--blue-bright);
  font-weight: 800;
  font-size: 10px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  height: 450px;
}
.hero-dots {
  position: absolute;
  left: 40px;
  top: 90px;
  z-index: 0;
  width: 90px;
  height: 120px;
  background-image: radial-gradient(rgba(59,130,246,.3) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}
.mockup-glow {
  position: absolute;
  right: 20px;
  bottom: -20px;
  z-index: 0;
  width: 440px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(59,130,246,.18) 0%, transparent 70%);
  filter: blur(32px);
  pointer-events: none;
}

/* Desktop mockup */
.mockup-desktop {
  position: absolute;
  right: 0;
  top: 16px;
  width: 420px;
  z-index: 3;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 36px 90px rgba(0,0,0,.65),
    0 0 0 1px rgba(255,255,255,.05),
    inset 0 1px 0 rgba(255,255,255,.07);
}
.mockup-bar {
  height: 36px;
  background: var(--surface);
  padding: 0 14px;
  display: flex;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.dot-r { background: #ff5f57 }
.dot-y { background: #ffbd2e }
.dot-g { background: #28ca41 }
.mockup-url {
  margin-left: 12px;
  height: 22px;
  background: rgba(255,255,255,.05);
  border-radius: 6px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  flex: 1;
  max-width: 220px;
}
.mockup-screen {
  height: 286px;
  background-size: cover;
  background-position: center top;
  transition: transform .4s ease;
}
.mockup-desktop:hover .mockup-screen { transform: scale(1.02) }

/* Mobile mockup */
.mockup-mobile {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 4;
  width: 158px;
  height: 284px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 28px 70px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.05),
    inset 0 1px 0 rgba(255,255,255,.07),
    0 0 60px 16px rgba(59,130,246,.20);
  transform: rotate(-3.5deg);
}
.mockup-mobile-notch {
  height: 18px;
  background: var(--surface);
  display: flex;
  justify-content: center;
  align-items: center;
}
.mockup-mobile-notch::after {
  content: "";
  width: 40px;
  height: 8px;
  border-radius: 999px;
  background: var(--surface-3);
}
.mockup-mobile-screen {
  height: calc(100% - 18px);
  background-size: cover;
  background-position: center;
  filter: brightness(1.22) contrast(1.08);
}

/* Hero floating badge */
.hero-badge {
  position: absolute;
  right: 6px;
  bottom: 36px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.badge-icon img { width: 18px; height: 18px; filter: brightness(0) invert(1) }
.hero-badge strong { display: block; font-size: 14px; color: #fff; line-height: 1 }
.hero-badge span { display: block; font-size: 12px; color: var(--muted); margin-top: 3px }

/* ── BENEFITS STRIP ── */
.benefits-strip {
  margin-top: 36px;
  padding: 40px 0;
  background: transparent;
}
.benefits-row {
  display: flex;
  align-items: center;
  justify-content: stretch;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
  padding: 0 40px;
}
.benefit-item:first-child { padding-left: 0 }
.benefit-item:last-child { padding-right: 0 }
.benefit-sep {
  width: 1px;
  align-self: stretch;
  background: var(--line-strong);
  flex-shrink: 0;
  min-height: 56px;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.benefit-icon img { width: 20px; height: 20px; filter: brightness(0) invert(1) }
.benefit-item strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 5px; color: #fff }
.benefit-item span { display: block; font-size: 14px; color: var(--muted); line-height: 1.45 }

/* ── SECTION LAYOUT ── */
.section-block { padding: 80px 0 0 }
.section-alt {
  background: transparent;
  border-top: none;
  border-bottom: none;
  padding-bottom: 64px;
}

/* Section title */
.section-title { text-align: center; margin-bottom: 52px }
.section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  padding: 5px 14px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-title h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 3.2vw, 54px);
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0 0 16px;
  color: #fff;
}
.section-sub {
  margin: 0 auto;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .6s cubic-bezier(.22,1,.36,1),
    transform .6s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) }

/* ── CATEGORY CARDS (premium showcase) ── */
.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px }
.category-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 64px rgba(0,0,0,.6);
}
.cat-img {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cat-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.category-card:hover .cat-img > img {
  transform: scale(1.06);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.06) 35%,
    rgba(7,12,25,.78) 68%,
    rgba(7,12,25,.97) 100%
  );
  z-index: 1;
}
.cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 24px 22px;
  z-index: 2;
}
.cat-content h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.cat-content p {
  margin: 0 0 12px;
  font-size: 14px;
  color: rgba(191,204,232,.75);
  line-height: 1.55;
}
.cat-cta {
  display: inline-block;
  font-size: 11.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--blue-bright);
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .85;
}

/* ── EXAMPLES GRID ── */
#pavyzdziai { padding-top: 60px }
#pavyzdziai .section-block { padding: 56px 0 0 }
.examples-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px }
.example-card {
  background: rgba(15,24,37,0.8);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
}
.example-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  border-color: rgba(96,165,250,0.38);
}
.ex-preview {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.ex-bar {
  height: 28px;
  padding: 0 12px;
  display: flex;
  gap: 5px;
  align-items: center;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.ex-preview img {
  width: 100%;
  height: 186px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(1) brightness(0.9) contrast(1.05);
  transition: transform .5s ease, filter 700ms ease;
}
.example-card:hover .ex-preview img { transform: scale(1.03); filter: grayscale(0) brightness(1) contrast(1) }
.ex-footer {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ex-meta { display: flex; flex-direction: column; gap: 3px }
.ex-footer strong { font-size: 14px; color: var(--ink) }
.ex-sub { font-size: 12px; color: var(--muted); line-height: 1.4 }
.ex-zoom { color: var(--blue-bright); font-weight: 400; font-size: 14px; opacity: .6; transition: transform .2s, opacity .2s }
.example-card:hover .ex-zoom { transform: translate(3px,-3px); opacity: 1 }

/* ── DELIVERABLES GRID ── */
.deliverables-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px }
.deliverable-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s;
}
.deliverable-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(74,144,226,.38);
}
.deliverable-item:hover .del-icon {
  background: rgba(10, 32, 54, 0.82);
  border-color: rgba(74,144,226,.48);
}
.deliverable-item:hover .del-svg {
  color: #eff6ff;
}
.del-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(8, 28, 48, 0.75);
  border: 1px solid rgba(74, 144, 226, 0.4);
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #dbeafe;
  transition: background .24s ease, border-color .24s ease;
}
.del-svg {
  display: block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: var(--src) no-repeat center / contain;
  mask: var(--src) no-repeat center / contain;
  transition: color .24s ease;
}
.deliverable-item h3 { margin: 0 0 6px; font-size: 16px; color: #fff; font-weight: 700 }
.deliverable-item p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.45 }

/* ── STEPS (process cards) ── */
#kaip-vyksta {
  padding-top: 124px;
  padding-bottom: 124px;
}
#kaip-vyksta .section-title {
  margin-bottom: 64px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card {
  background: transparent;
  border: none;
  padding: 28px 24px 32px;
  position: relative;
  transition: transform .24s ease;
}
.step-card:hover {
  transform: translateY(-3px);
}
.step-card::before {
  content: "";
  position: absolute;
  top: -28px;
  right: -28px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,.22) 0%, rgba(59,130,246,.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.step-num {
  position: absolute;
  top: -4px;
  right: 14px;
  font-size: 92px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: rgba(96,165,250,.13);
  pointer-events: none;
  user-select: none;
}
.step-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  max-width: 75%;
}
.step-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ── PRICING ── */
.pricing-section {
  padding-bottom: 0;
  background: transparent;
  border-top: none;
  border-bottom: none;
}
.pricing-layout { padding-bottom: 80px }

.price-wide-card {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  background: linear-gradient(135deg, #091430 0%, #0d1a3e 50%, #091430 100%);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(59,130,246,.04);
  width: 100%;
}

.pwc-left {
  padding: 40px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  border-right: 1px solid rgba(59,130,246,.14);
  background: linear-gradient(160deg, rgba(20,50,130,.28) 0%, rgba(10,24,70,.08) 100%);
  position: relative;
  overflow: hidden;
}
.pwc-left::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,.11) 0%, transparent 65%);
  pointer-events: none;
}

.pwc-logo {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.pwc-name {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: .1em;
  position: relative;
  z-index: 1;
}

.pwc-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.pwc-from {
  font-size: 16px;
  color: rgba(255,255,255,.42);
  font-weight: 400;
}
.pwc-price strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  line-height: .92;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.pwc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
  max-width: 200px;
}

.price-cta {
  width: 100%;
  font-size: 14px;
  padding: 11px 20px;
  min-height: 44px;
  animation: none;
  box-shadow: 0 4px 18px rgba(59,130,246,.22);
  position: relative;
  z-index: 1;
}
.price-cta:hover {
  box-shadow: 0 8px 28px rgba(59,130,246,.38);
}

.pwc-middle,
.pwc-right {
  padding: 40px 32px;
}
.pwc-middle { border-right: 1px solid rgba(59,130,246,.14) }

.pwc-middle h4,
.pwc-right h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-dim);
  margin: 0 0 20px;
  line-height: 1.35;
}

.pwc-middle ul li,
.pwc-right ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-dim);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.35;
}
.pwc-middle ul li:last-child,
.pwc-right ul li:last-child { border-bottom: none }

.pwc-middle ul li::before {
  content: "✓";
  color: var(--blue-bright);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pwc-right ul li::before {
  content: "×";
  color: #f87171;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1.3;
}

/* ── CTA SECTION ── */
.cta-section { padding-bottom: 80px }
.cta-main {
  background: linear-gradient(135deg, var(--surface-2), #0d1424);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(59,130,246,.05);
}
.cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-glow-1 {
  top: -120px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(59,130,246,.14) 0%, transparent 60%);
}
.cta-glow-2 {
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1 }
.cta-content h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 3.2vw, 50px);
  letter-spacing: -.04em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #fff;
}
.cta-highlight {
  background: linear-gradient(90deg, var(--blue-bright), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-content p {
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  max-width: 440px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-strong);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-dim);
  transition: border-color .2s, background .2s, color .2s;
  min-height: 52px;
}
.contact-pill:hover {
  border-color: var(--blue-border);
  background: var(--blue-soft);
  color: var(--blue-bright);
}
.contact-pill img { width: 18px; height: 18px; filter: brightness(0) invert(1) }

/* ── FOOTER ── */
.site-footer {
  padding: 44px 0 0;
  border-top: none;
  background: #000;
  margin-top: 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px }
.footer-brand img {
  width: 110px;
  background: none !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}
.footer-brand p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; max-width: 280px }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.footer-contact-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .03em;
}
.footer-contact-email {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-dim);
  transition: color .2s;
}
.footer-contact-email:hover { color: var(--blue-bright) }
.footer-contact-phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.footer-contact-phone:hover { color: var(--blue-bright) }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-bottom small { font-size: 13px; color: var(--muted) }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,8,20,.92);
  backdrop-filter: blur(20px);
}
.lb-shell {
  position: relative;
  z-index: 1;
  width: min(1100px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 48px 120px rgba(0,0,0,.7);
  transform: scale(.95);
  transition: transform .32s cubic-bezier(.22,1,.36,1);
}
.lightbox.is-open .lb-shell { transform: scale(1) }
.lb-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: var(--surface-2);
  flex-shrink: 0;
  gap: 12px;
}
.lb-toolbar-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0 }
.lb-title { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.lb-counter { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; color: var(--muted); padding: 2px 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; white-space: nowrap; flex-shrink: 0 }
.lb-toolbar-right { display: flex; align-items: center; gap: 5px; flex-shrink: 0 }
.lb-btn {
  height: 32px;
  min-width: 32px;
  padding: 0 10px;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--ink-dim);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
  display: grid;
  place-items: center;
  white-space: nowrap;
}
.lb-btn:hover { background: rgba(59,130,246,.18); border-color: rgba(59,130,246,.45); color: #fff }
.lb-close-btn { font-size: 12px; letter-spacing: 0 }
.lb-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #050b17;
  display: flex;
}
.lb-img-wrap {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: default;
}
.lb-img-wrap.is-grabbing { cursor: grabbing !important }
.lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transform-origin: center center;
  transition: transform .2s ease;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(15,24,37,.8);
  border: 1px solid rgba(59,130,246,.22);
  color: var(--ink-dim);
  font-size: 17px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .18s, border-color .18s, color .18s;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.lb-nav:hover { background: rgba(59,130,246,.2); border-color: rgba(96,165,250,.5); color: #fff }
.lb-prev { left: 14px }
.lb-next { right: 14px }
.lb-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: var(--surface-2);
  flex-shrink: 0;
}
.lb-thumb {
  width: 60px;
  height: 42px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.1);
  cursor: pointer;
  transition: border-color .18s, opacity .18s;
  opacity: .45;
  flex-shrink: 0;
  background: none;
  padding: 0;
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block }
.lb-thumb.is-active { border-color: rgba(96,165,250,.7); opacity: 1 }
.lb-thumb:hover:not(.is-active) { opacity: .78 }

/* ── RESPONSIVE 1080px ── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; min-height: 0 }
  .hero-copy h1 { max-width: 700px }
  .hero-copy p { max-width: 700px }
  .hero-visual { height: 420px }
  .mockup-desktop { width: 340px }
  .mockup-screen { height: 232px }
  .mockup-mobile { width: 134px; height: 238px }
  .category-grid { grid-template-columns: 1fr 1fr }
  .examples-grid { grid-template-columns: 1fr 1fr }
  .deliverables-grid { grid-template-columns: 1fr 1fr }
  .steps-grid { grid-template-columns: 1fr 1fr }
  /* Pricing — sudedamas į stulpelį */
  .price-wide-card { grid-template-columns: 1fr }
  .pwc-left {
    border-right: none;
    border-bottom: 1px solid rgba(59,130,246,.14);
    justify-content: flex-start;
    gap: 18px;
  }
  .pwc-middle { border-right: none; border-bottom: 1px solid rgba(59,130,246,.14) }
  .pwc-logo { max-width: 130px }
  .pwc-desc { max-width: none }
}

/* ── RESPONSIVE 820px ── */
@media (max-width: 820px) {
  .nav { display: none }
  .nav-cta { display: none }
  .hamburger { display: flex }
  .site-header { position: fixed; top: 0; left: 0; right: 0; }
  .hero { margin-top: 0; }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px;
    left: 0; right: 0; bottom: 0;
    background: rgba(7,12,25,.98);
    backdrop-filter: blur(20px);
    z-index: 29;
    padding: 36px 20px 32px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
    overflow-y: auto;
  }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) }
  .benefits-row { flex-direction: column; gap: 28px }
  .benefit-sep { display: none }
  .benefits-strip .benefit-item { padding: 0 }
  .hero-visual { height: 360px }
  .mockup-desktop { width: 280px; top: 10px }
  .mockup-screen { height: 190px }
  .mockup-mobile { width: 100px; height: 172px; bottom: 12px; left: 12px }
  .hero-badge { display: none }
  .category-grid { grid-template-columns: 1fr }
  .cat-img { height: 300px }
  .examples-grid { grid-template-columns: 1fr }
  .deliverables-grid { grid-template-columns: 1fr 1fr }
  .footer-inner { flex-direction: column; gap: 20px }
  .footer-contact { align-items: flex-start }
  .lb-prev { left: 8px }
  .lb-next { right: 8px }
  .pwc-left, .pwc-middle, .pwc-right { padding: 28px 28px }
  .pwc-logo { max-width: 110px }
  #pavyzdziai { padding-top: 44px }
}

/* ── RESPONSIVE 600px ── */
@media (max-width: 600px) {
  .container { width: min(var(--container), calc(100% - 20px)) }
  .site-header { padding: 10px 18px 0 }
  .header-inner { min-height: 64px }
  .brand img { height: 42px; width: auto }
  /* Hero */
  .hero { padding: 120px 0 80px; margin-top: 0 }
  .hero-copy h1 { font-size: 40px; letter-spacing: -.038em; line-height: 1.06 }
  .hero-copy p { font-size: 16px; max-width: none }
  .hero-actions { flex-direction: column }
  .hero-actions .btn { width: 100% }
  .hero-visual { display: none }
  .mobile-nav { top: 90px }
  /* Benefits */
  .benefits-strip { padding: 32px 0 }
  .benefit-item { flex-direction: row; gap: 14px }
  /* Sections */
  [id] { scroll-margin-top: 72px }
  .section-block { padding: 52px 0 0 }
  .section-alt { padding-bottom: 52px }
  #pavyzdziai { padding-top: 0 }
  #pavyzdziai .section-block { padding: 32px 0 0 }
  /* Kategorijų kortelės */
  .cat-img { height: 240px }
  /* Pavyzdžiai */
  .ex-preview img { height: 160px }
  /* Deliverables */
  .deliverables-grid { grid-template-columns: 1fr }
  /* Steps */
  .steps-grid { grid-template-columns: 1fr }
  #kaip-vyksta { padding-top: 72px; padding-bottom: 72px }
  /* Pricing */
  .pwc-left, .pwc-middle, .pwc-right { padding: 24px 20px }
  .pwc-logo { max-width: 90px }
  .pwc-price strong { font-size: 44px }
  .pwc-name { font-size: 10px }
  .pricing-layout { padding-bottom: 52px }
  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center }
  .footer-brand { align-items: center }
  .footer-contact { align-items: center }
  .footer-bottom { flex-direction: column; align-items: center; gap: 6px; text-align: center }
  /* Lightbox */
  .lb-shell { width: 100vw; max-height: 100dvh; border-radius: 0; border-left: none; border-right: none }
  .lb-nav { width: 36px; height: 36px; font-size: 15px }
  .lb-prev { left: 6px }
  .lb-next { right: 6px }
  .lb-btn { height: 28px; min-width: 28px; font-size: 12px; padding: 0 7px }
  .lb-title { font-size: 12px }
  .lb-thumb { width: 46px; height: 32px }
}

/* ── INTRO OVERLAY ── */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(10,28,58,0.96) 0%, rgba(3,7,18,1) 58%, #01040a 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.intro-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-overlay::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52vmin;
  height: 52vmin;
  transform: translate(-50%, -50%) scale(0.18);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(20,120,255,0.32) 0%,
    rgba(20,120,255,0.13) 34%,
    transparent 72%);
  opacity: 0;
  filter: blur(44px);
  animation: introSoftGlow 1.05s cubic-bezier(.15,.9,.2,1) forwards;
  animation-delay: 0.18s;
  pointer-events: none;
}

.intro-flash {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12vmin;
  height: 12vmin;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,255,255,1) 0%,
    rgba(245,250,255,1) 10%,
    rgba(185,225,255,0.98) 22%,
    rgba(20,120,255,0.62) 42%,
    rgba(20,120,255,0.16) 64%,
    transparent 76%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.03);
  mix-blend-mode: screen;
  filter: blur(8px);
  animation: introFlashToViewer 0.78s cubic-bezier(.1,.9,.16,1) forwards;
  animation-delay: 0.34s;
  pointer-events: none;
}

.intro-white-kick {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  mix-blend-mode: screen;
  animation: introWhiteKick 0.34s ease-out forwards;
  animation-delay: 0.56s;
  pointer-events: none;
}

.intro-logo {
  position: relative;
  z-index: 3;
  width: min(78vw, 980px);
  height: auto;
  opacity: 0;
  transform: scale(0.03);
  filter: blur(18px) brightness(2.35);
  transform-origin: center center;
  animation: introLogoWithFlash 1.04s cubic-bezier(.13,.95,.18,1) forwards;
  animation-delay: 0.38s;
  will-change: transform, opacity, filter;
}

@keyframes introSoftGlow {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.18); }
  42%  { opacity: 1; transform: translate(-50%, -50%) scale(0.78); }
  100% { opacity: 0.22; transform: translate(-50%, -50%) scale(1.42); }
}

@keyframes introFlashToViewer {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.03); filter: blur(16px); }
  18%  { opacity: 1; }
  38%  { opacity: 1; transform: translate(-50%, -50%) scale(7.2); filter: blur(2px); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(13); filter: blur(36px); }
}

@keyframes introWhiteKick {
  0%   { opacity: 0; }
  14%  { opacity: 0.72; }
  100% { opacity: 0; }
}

@keyframes introLogoWithFlash {
  0%   { opacity: 0; transform: scale(0.03); filter: blur(20px) brightness(2.7); }
  16%  { opacity: 0.85; transform: scale(0.20); filter: blur(13px) brightness(2.15); }
  42%  { opacity: 1; transform: scale(0.72); filter: blur(4px) brightness(1.42); }
  66%  { opacity: 1; transform: scale(1.065); filter: blur(0) brightness(1.12); }
  100% { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); }
}

body.intro-active {
  overflow: hidden;
}

body.intro-active main,
body.intro-active .site-header {
  opacity: 0;
}

body.intro-done main,
body.intro-done .site-header {
  opacity: 1;
  transition: opacity 0.55s ease;
}

@media (max-width: 760px) {
  .intro-logo {
    width: min(88vw, 560px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    display: none !important;
  }
  body.intro-active {
    overflow: auto;
  }
  body.intro-active main,
  body.intro-active .site-header {
    opacity: 1;
  }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: 24px;
  max-width: 420px;
  margin-left: auto;
  background: #141e30;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  padding: 20px 22px 18px;
  z-index: 10000;
  display: none;
}
.cookie-banner.is-visible {
  display: block;
  animation: cookieSlideUp .32s cubic-bezier(.22,.68,0,1.2) both;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-text {
  font-size: .85rem;
  line-height: 1.55;
  color: #a0b0cc;
  margin: 0 0 14px;
}
.cookie-link {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-link:hover {
  color: #93c5fd;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: Inter, system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity .18s, background .18s;
}
.cookie-btn--accept {
  background: #3b82f6;
  color: #fff;
}
.cookie-btn--accept:hover {
  background: #2563eb;
}
.cookie-btn--decline {
  background: rgba(255,255,255,.07);
  color: #7082a4;
  border: 1px solid rgba(255,255,255,.1);
}
.cookie-btn--decline:hover {
  background: rgba(255,255,255,.12);
  color: #a0b0cc;
}
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100
/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: 24px;
  max-width: 420px;
  margin-left: auto;
  background: #141e30;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  padding: 20px 22px 18px;
  z-index: 10000;
  display: none;
}
.cookie-banner.is-visible {
  display: block;
  animation: cookieSlideUp .32s cubic-bezier(.22,.68,0,1.2) both;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-text {
  font-size: .85rem;
  line-height: 1.55;
  color: #a0b0cc;
  margin: 0 0 14px;
}
.cookie-link {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-link:hover {
  color: #93c5fd;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: Inter, system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity .18s, background .18s;
}
.cookie-btn--accept {
  background: #3b82f6;
  color: #fff;
}
.cookie-btn--accept:hover {
  background: #2563eb;
}
.cookie-btn--decline {
  background: rgba(255,255,255,.07);
  color: #7082a4;
  border: 1px solid rgba(255,255,255,.1);
}
.cookie-btn--decline:hover {
  background: rgba(255,255,255,.12);
  color: #a0b0cc;
}
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 14px 14px 0 0;
  }
}

/* ── Footer Privacy Link ── */
.footer-privacy-link {
  color: #7082a4;
  text-decoration: none;
  transition: color .18s;
}
.footer-privacy-link:hover {
  color: #60a5fa;
}
