/* ============ TOKENS ============ */
:root {
  --navy-950: #050D1C;
  --navy-900: #0A1628;
  --navy-800: #0F1E36;
  --navy-700: #142238;
  --navy-600: #1E2E4A;
  --navy-500: #2A3A56;
  --steel-600: #334155;
  --steel-500: #475569;
  --steel-400: #64748B;
  --steel-300: #94A3B8;
  --steel-200: #CBD5E1;
  --steel-100: #E2E8F0;
  --steel-50:  #F1F5F9;
  --white: #FFFFFF;
  --cyan-600: #0891B2;
  --cyan-500: #06B6D4;
  --cyan-400: #22D3EE;
  --cyan-300: #67E8F9;
  --cyan-glow: rgba(34, 211, 238, 0.18);

  --max: 1240px;
  --nav-h: 88px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(5, 13, 28, 0.08);
  --shadow-md: 0 4px 16px rgba(5, 13, 28, 0.10);
  --shadow-lg: 0 12px 40px rgba(5, 13, 28, 0.18);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.375rem); }
p  { margin: 0 0 1em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-500);
  margin-bottom: 12px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}
.brand img.brand-logo {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.footer-brand .brand img.brand-logo { height: 84px; }
@media (max-width: 640px) {
  .brand img.brand-logo { height: 52px; }
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  color: var(--steel-200);
  font-size: 0.925rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(34, 211, 238, 0.08);
}
.nav-cta {
  display: none;
}
@media (min-width: 900px) {
  .nav-cta { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius);
  color: var(--white);
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 899px) {
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--cyan-500);
  color: var(--navy-900);
  box-shadow: 0 0 0 1px var(--cyan-500), 0 8px 24px -8px var(--cyan-glow);
}
.btn-primary:hover {
  background: var(--cyan-400);
  box-shadow: 0 0 0 1px var(--cyan-400), 0 12px 32px -8px var(--cyan-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(203, 213, 225, 0.35);
}
.btn-secondary:hover {
  border-color: var(--cyan-400);
  color: var(--cyan-300);
}
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-700); }

.btn svg { width: 16px; height: 16px; }

/* ============ NEOTURELINK MARK ============ */
.link-mark {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  object-fit: contain;
  background: var(--cyan-400);
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.link-mark-lg { width: 200px; height: 200px; }
.link-mark-inline {
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--cyan-400);
  padding: 3px;
  margin: 0 6px -6px;
}
.split-with-mark {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .split-with-mark { grid-template-columns: 200px 1fr; gap: 56px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(5, 13, 28, 0.88) 0%, rgba(5, 13, 28, 0.55) 40%, rgba(5, 13, 28, 0.15) 75%, rgba(5, 13, 28, 0) 100%),
    url('../assets/hero-globe.jpg') right center / cover no-repeat,
    var(--navy-950);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 500px at 15% 30%, rgba(6, 182, 212, 0.08), transparent 60%);
  pointer-events: none;
}
@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(5, 13, 28, 0.75) 0%, rgba(5, 13, 28, 0.55) 100%),
      url('../assets/hero-globe.jpg') right center / cover no-repeat,
      var(--navy-950);
  }
}
.hero-inner {
  position: relative;
  padding: clamp(72px, 12vw, 140px) 24px clamp(80px, 10vw, 120px);
  max-width: var(--max);
  margin: 0 auto;
}
.hero-headline {
  max-width: 900px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 0%, #cfe8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--steel-200);
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--steel-300);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--cyan-400); }

/* Page header (non-home) */
.page-header {
  background:
    radial-gradient(900px 400px at 70% 0%, rgba(34, 211, 238, 0.08), transparent 65%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: clamp(80px, 10vw, 120px) 0 clamp(56px, 7vw, 80px);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.page-header .container { position: relative; }
.page-header h1 { margin-bottom: 16px; }
.page-header p {
  color: var(--steel-200);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 720px;
  margin: 0;
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(64px, 8vw, 110px) 0;
}
.section-light { background: var(--white); }
.section-tint  { background: var(--steel-50); }
.section-dark  { background: var(--navy-900); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark p  { color: var(--steel-200); }

.section-photo {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url('../assets/services-factory.jpg') center / cover no-repeat;
  color: #FFFFFF;
}
.section-photo h2,
.section-photo h3,
.section-photo p,
.section-photo p strong,
.section-photo .service-num,
.section-photo .eyebrow {
  color: #FFFFFF !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}
.section-photo h2,
.section-photo h3 { font-weight: 800; }
.section-photo p { font-weight: 600; font-size: 1.08rem; }
.section-photo p strong { font-weight: 700; }
.section-photo .service-num { font-weight: 800; }
.section-photo .service { border-bottom-color: rgba(255, 255, 255, 0.18); }
.section-photo .service:last-child { border-bottom: none; }

.section-head {
  max-width: 780px;
  margin-bottom: 48px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--steel-500);
}
.section-dark .section-head p { color: var(--steel-200); }

/* Two-column intro layout */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 5fr 7fr; gap: 72px; }
}
.split .lead {
  font-size: 1.05rem;
  color: var(--steel-500);
}
.section-dark .split .lead { color: var(--steel-200); }

/* ============ CAPABILITY GRID ============ */
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  border-color: var(--cyan-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--cyan-400);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--steel-500);
  line-height: 1.6;
}

/* ============ COMPLIANCE STRIP ============ */
.compliance {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .compliance { grid-template-columns: repeat(3, 1fr); } }

.compliance-item {
  padding: 28px;
  background: rgba(148, 163, 184, 0.05);
  border-left: 3px solid var(--cyan-400);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.compliance-item h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}
.compliance-item p {
  margin: 0;
  color: var(--steel-300);
  font-size: 0.95rem;
}

/* ============ SERVICE BLOCKS (services page) ============ */
.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--steel-100);
}
.service:last-child { border-bottom: none; }
@media (min-width: 900px) {
  .service { grid-template-columns: 1fr 2fr; gap: 64px; }
}
.service-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--cyan-500);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.service h2 {
  margin-top: 8px;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}
.service p {
  color: var(--steel-500);
  font-size: 1.02rem;
}

/* ============ PROCESS (3-step) ============ */
.process {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 800px) { .process { grid-template-columns: repeat(3, 1fr); } }

.step {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius-lg);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--navy-900);
  color: var(--cyan-400);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--steel-500); font-size: 0.95rem; }

/* ============ REQUIREMENTS LIST ============ */
.req-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.req-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  color: var(--navy-800);
  font-size: 0.98rem;
}
.req-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--cyan-500);
  margin-top: 2px;
}

/* ============ CTA BLOCK ============ */
.cta-block {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(34, 211, 238, 0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: clamp(56px, 8vw, 96px) 24px;
  text-align: center;
  border-radius: var(--radius-lg);
}
.cta-block h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-block p {
  color: var(--steel-200);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-950);
  color: var(--steel-300);
  padding: 56px 0 32px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
}
.footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer a { color: var(--steel-300); transition: color .15s ease; }
.footer a:hover { color: var(--cyan-400); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer p { margin: 0 0 6px; line-height: 1.55; }
.footer-brand p { color: var(--steel-300); font-size: 0.9rem; max-width: 320px; }
.footer-brand .brand { margin-bottom: 16px; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--steel-400);
}

/* ============ BILINGUAL COPY ============ */
.lang-pl {
  color: var(--steel-500);
  font-style: italic;
  font-size: 0.95em;
  margin-top: -8px;
  line-height: 1.55;
}
.section-dark .lang-pl,
.page-header .lang-pl { color: var(--steel-300); }
.hero-headline-pl {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  font-style: italic;
  color: var(--steel-300);
  margin-top: 8px;
  letter-spacing: -0.01em;
  -webkit-text-fill-color: var(--steel-300);
}
h1 + .lang-pl-h { font-size: 1.1rem; color: var(--steel-300); font-style: italic; margin: -6px 0 20px; }
h2 .lang-pl-inline,
h3 .lang-pl-inline {
  display: block;
  font-size: 0.65em;
  font-weight: 500;
  font-style: italic;
  color: var(--steel-400);
  margin-top: 4px;
}
.section-dark h2 .lang-pl-inline,
.section-dark h3 .lang-pl-inline { color: var(--steel-300); }
.req-list li .req-pl {
  display: block;
  color: var(--steel-500);
  font-style: italic;
  font-size: 0.9em;
  margin-top: 4px;
  font-weight: 400;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 380px 1fr; gap: 56px; }
}

.contact-info { display: grid; gap: 16px; align-content: start; }
.info-card {
  padding: 24px 26px;
  background: var(--steel-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--steel-100);
}
.info-card .eyebrow { margin-bottom: 8px; }
.info-lg {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
  word-break: break-all;
  margin-bottom: 6px;
}
.info-lg:hover { color: var(--cyan-600); }
.info-note {
  margin: 0;
  color: var(--steel-500);
  font-size: 0.9rem;
}
.info-card-dark {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-700);
}
.info-card-dark .eyebrow { color: var(--cyan-400); }
.info-card-dark p { color: var(--steel-200); }

.contact-form-wrap { min-width: 0; }

.contact-form {
  display: grid;
  gap: 20px;
}
.contact-form .form-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .contact-form .form-row { grid-template-columns: 1fr 1fr; }
}

.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form label > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}
.contact-form label > span em {
  color: var(--cyan-600);
  font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-note {
  margin: 0;
  color: var(--steel-500);
  font-size: 0.82rem;
  max-width: 320px;
}

.hp { position: absolute; left: -9999px; visibility: hidden; }

.success-banner {
  padding: 20px 24px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid var(--cyan-500);
  border-radius: var(--radius-lg);
  color: var(--navy-900);
  margin-bottom: 24px;
}
.success-banner strong { color: var(--cyan-600); }

/* ============ LEGAL DOC PAGES ============ */
.legal-doc {
  max-width: 780px;
  margin: 0 auto;
  color: var(--navy-800);
}
.legal-doc .legal-meta {
  color: var(--steel-500);
  font-size: 0.9rem;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--steel-100);
}
.legal-doc h2 {
  font-size: 1.35rem;
  margin: 40px 0 12px;
  color: var(--navy-900);
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p { line-height: 1.7; }
.legal-doc ul {
  margin: 0 0 20px 4px;
  padding: 0 0 0 20px;
}
.legal-doc li { line-height: 1.6; margin-bottom: 8px; }
.legal-doc a { color: var(--cyan-600); text-decoration: underline; text-underline-offset: 3px; }
.legal-doc a:hover { color: var(--cyan-500); }
.legal-doc code {
  background: var(--steel-50);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: ui-monospace, 'Consolas', monospace;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: var(--navy-900);
  color: var(--steel-100);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: cookieUp .28s ease-out;
}
.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}
@keyframes cookieUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1 1 320px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.cookie-text strong { color: var(--white); }
.cookie-text a {
  color: var(--cyan-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-text a:hover { color: var(--cyan-300); }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.cookie-actions .btn { white-space: nowrap; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(203, 213, 225, 0.4);
}
.btn-outline:hover {
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(203, 213, 225, 0.7);
  color: var(--white);
}
@media (max-width: 640px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-banner-inner { padding: 14px 16px; gap: 12px; }
  .cookie-text { font-size: 0.85rem; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1 1 0; }
}

/* ============ MOBILE POLISH ============ */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero-inner { padding: 56px 20px 64px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.5rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-badges {
    gap: 14px;
    margin-top: 40px;
    padding-top: 24px;
  }
  .hero-badge { font-size: 0.72rem; letter-spacing: 0.06em; }

  .page-header { padding: 48px 0 40px; }
  .section { padding: 48px 0; }

  .split-with-mark {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .split-with-mark .link-mark-lg {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }

  .cta-block { padding: 44px 20px; border-radius: 6px; }
  .cta-block .btn { width: 100%; }

  .service { padding: 32px 0; gap: 12px; }
  .service-num { font-size: 2.25rem; }

  .card { padding: 24px 20px; }
  .step { padding: 24px 20px; }

  .footer-bottom { font-size: 0.75rem; flex-direction: column; gap: 6px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-headline { font-size: 1.85rem; }
  .brand img.brand-logo { height: 46px; }
}
