/* ============================================================
   USŁUGI ŚLUSARSKIE KOWALSKI — style.css
   ============================================================ */

:root {
  --accent:      #00AFCC;
  --accent-dark: #0099B5;
  --accent-glow: rgba(0,175,204,.25);

  --bg:      #1a1d24;
  --bg-2:    #20232b;
  --bg-3:    #272b35;
  --border:  rgba(255,255,255,.08);
  --gray:    #9299a6;
  --light:   #e8eaf0;
  --white:   #ffffff;

  --font-head: 'Poppins', system-ui, -apple-system, Arial, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, Arial, sans-serif;

  --nav-h:    70px;
  --r:        10px;
  --r-lg:     20px;
  --t:        220ms ease;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── Layout ──────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Typography helpers ──────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}
.section-desc { color: var(--gray); font-size: 1.05rem; max-width: 540px; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }
.section-header .section-desc { margin: 0 auto; }

/* ── Logo ────────────────────────────────────────────── */
.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.footer__logo-img {
  width: 100px;
  height: auto;
  display: block;
  margin-bottom: .75rem;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .8rem 1.9rem; border-radius: var(--r);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.btn--primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,175,204,.35);
}
.btn--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 28px rgba(0,175,204,.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.22);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm   { padding: .55rem 1.3rem; font-size: .85rem; }
.btn--full { width: 100%; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  background: rgba(26,29,36,.92);
  backdrop-filter: blur(14px);
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(26,29,36,.96);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner { display: flex; align-items: center; height: 100%; gap: .75rem; }
.nav__logo  { margin-right: auto; }
.nav__links { display: flex; align-items: center; gap: .15rem; }
.nav__link {
  font-family: var(--font-head); font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.7); padding: .5rem .9rem; border-radius: var(--r);
  transition: color var(--t), background var(--t);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link--cta {
  background: var(--accent); color: var(--white) !important;
  padding: .5rem 1.2rem;
  box-shadow: 0 2px 12px rgba(0,175,204,.3);
}
.nav__link--cta:hover { background: var(--accent-dark); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('img/hero-pattern.jpg');
  background-size: cover;
  background-position: center;
}
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,29,36,.95) 0%, rgba(26,29,36,.4) 18%, transparent 35%),
    linear-gradient(100deg, rgba(26,29,36,.96) 0%, rgba(26,29,36,.82) 50%, rgba(26,29,36,.55) 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 15% 60%, rgba(0,175,204,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}
.hero__eyebrow {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero__eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--accent); border-radius: 2px;
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900; line-height: 1.06;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: normal; color: var(--accent);
}
.hero__sub {
  font-size: 1.05rem; color: rgba(232,234,240,.6);
  margin-bottom: 2.5rem; line-height: 1.75; max-width: 480px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1;
}
.hero__scroll-hint span {
  display: block; width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.2); border-radius: 12px; position: relative;
}
.hero__scroll-hint span::after {
  content: ''; position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--accent); border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%,100% { opacity: 1; top: 5px; }
  50%      { opacity: 0; top: 18px; }
}

/* ── STATS — accent banner ───────────────────────────── */
.stats {
  background: linear-gradient(135deg, #007A8F 0%, var(--accent) 50%, #33C8E0 100%);
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1rem; gap: .3rem; }
.stat__num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--white); line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.stat__label { font-size: .82rem; color: rgba(255,255,255,.8); letter-spacing: .03em; }
.stat__pills { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-bottom: .2rem; }
.stat__pill {
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
}

/* ── SERVICES ────────────────────────────────────────── */
.services {
  padding: 7rem 0;
  background: var(--bg);
}
.services__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
}
.services__grid > .service-card {
  flex: 0 1 calc(33.333% - 1rem); min-width: 280px;
}
.service-card__photo {
  position: relative;
  margin: -2.5rem -2.25rem 2rem;
  overflow: hidden;
  height: 200px;
}
.service-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-card__photo img {
  transform: scale(1.04);
}
.service-card__body {
  display: flex; flex-direction: column;
}
.service-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.5rem 2.25rem;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0,175,204,.4), transparent);
  transition: background var(--t);
}
.service-card:hover::before { background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.service-card::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(0,175,204,.12) 0%, transparent 70%);
  border-radius: 50%;
  transition: opacity var(--t);
  opacity: 0;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  border-color: rgba(0,175,204,.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(0,175,204,.1);
}
.service-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #252830 0%, var(--bg-2) 100%);
}
.service-card--featured::before { background: var(--accent); height: 3px; }
.service-card--featured:hover {
  box-shadow: 0 16px 48px rgba(0,175,204,.2), 0 0 0 1px rgba(0,175,204,.3);
}
.service-card__badge {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem 1rem; border-radius: 99px;
  box-shadow: 0 4px 12px rgba(0,175,204,.5);
  white-space: nowrap;
}
.service-card__icon {
  width: 58px; height: 58px;
  background: rgba(0,175,204,.1); border: 1px solid rgba(0,175,204,.2);
  border-radius: 14px; padding: 13px;
  color: var(--accent); margin-bottom: 1.5rem;
  transition: background var(--t), border-color var(--t);
}
.service-card:hover .service-card__icon {
  background: rgba(0,175,204,.18);
  border-color: rgba(0,175,204,.4);
}
.service-card__title {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: .75rem;
}
.service-card__desc { color: var(--gray); font-size: .93rem; line-height: 1.72; margin-bottom: 1.5rem; }
.service-card__features { display: flex; flex-direction: column; gap: .55rem; }
.service-card__features li {
  font-size: .875rem; color: rgba(232,234,240,.6);
  padding-left: 1.2rem; position: relative;
}
.service-card__features li::before {
  content: '';
  position: absolute; left: 0; top: .58em;
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}

/* Realizujemy m.in. */
.services__realizujemy {
  margin-top: 3.5rem;
  text-align: center;
}
.services__realizujemy-title {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.25rem;
}
.services__realizujemy-list {
  display: inline-flex; flex-direction: column; gap: .65rem;
  list-style: none; text-align: left;
}
.services__realizujemy-list li {
  font-size: .95rem; color: var(--light);
  padding-left: 1.75rem; position: relative;
}
.services__realizujemy-list li::before {
  content: '';
  position: absolute; left: 0; top: .35em;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%231A82FF'/%3E%3Cpath d='M3.5 7 L6 9.5 L10.5 4.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C%2Fsvg%3E") center/contain no-repeat;
}

/* ── PROCESS ─────────────────────────────────────────── */
.process {
  padding: 7rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,175,204,.04) 0%, transparent 70%);
}
.process__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 36px); right: calc(12.5% + 36px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,175,204,.4) 20%, rgba(0,175,204,.4) 80%, transparent);
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.process-step__num {
  width: 72px; height: 72px;
  border: 2px solid rgba(0,175,204,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 900;
  color: var(--accent);
  background: var(--bg-3);
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.process-step:hover .process-step__num {
  background: var(--accent); color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(0,175,204,.45);
}
.process-step__title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem;
}
.process-step__desc { font-size: .875rem; color: var(--gray); line-height: 1.6; }

/* ── ABOUT ───────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--bg);
}
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about__visual { display: flex; align-items: center; justify-content: center; }
.about__panel {
  width: 100%; max-width: 420px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about__panel-header {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: .85rem 1.25rem;
  display: flex; align-items: center; gap: .5rem;
}
.about__panel-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.about__panel-dot:nth-child(1) { background: #ff5f57; }
.about__panel-dot:nth-child(2) { background: #febc2e; }
.about__panel-dot:nth-child(3) { background: #28c840; }
.about__panel-title {
  margin-left: .5rem;
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  color: var(--gray); letter-spacing: .06em;
}
.about__panel-body { padding: 1.75rem; }
.about__spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .875rem;
}
.about__spec-row:last-child { border-bottom: none; }
.about__spec-key { color: var(--gray); font-family: var(--font-head); font-size: .8rem; }
.about__spec-val { font-weight: 600; color: var(--white); font-family: var(--font-head); }
.about__spec-val.accent { color: var(--accent); }
.about__panel-bar { margin-top: 1.5rem; }
.about__panel-bar-label {
  display: flex; justify-content: space-between;
  font-size: .78rem; color: var(--gray); margin-bottom: .5rem;
  font-family: var(--font-head);
}
.about__panel-bar-track {
  height: 6px; background: var(--bg-3); border-radius: 3px; overflow: hidden;
}
.about__panel-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  border-radius: 3px; animation: bar-grow 2s ease forwards;
}
@keyframes bar-grow { from { width: 0; } }

.about__text p { color: rgba(232,234,240,.72); margin-bottom: 1rem; font-size: .975rem; }
.about__values { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.75rem 0 2rem; }
.value {
  display: flex; align-items: center; gap: .55rem;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: .55rem 1.1rem;
  font-family: var(--font-head); font-size: .875rem; font-weight: 600;
  color: var(--white); transition: border-color var(--t);
}
.value:hover { border-color: rgba(0,175,204,.4); }
.value__icon { color: var(--accent); font-size: .65rem; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: var(--bg-2);
}
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: stretch; }
.contact__info { display: flex; flex-direction: column; }
.contact__map { flex: 1; width: 100%; min-height: 180px; border: 1px solid var(--border); border-radius: var(--r-lg); display: block; }
.contact__lead { color: var(--gray); margin-bottom: 2rem; font-size: 1rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact__item {
  display: flex; align-items: flex-start; gap: 1rem;
  transition: color var(--t);
}
a.contact__item:hover { color: var(--accent); }
.contact__item-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); transition: background var(--t), border-color var(--t);
}
a.contact__item:hover .contact__item-icon { background: rgba(0,175,204,.15); border-color: rgba(0,175,204,.35); }
.contact__item-icon svg { width: 18px; height: 18px; }
.contact__item-label { display: block; font-size: .74rem; color: var(--gray); margin-bottom: .15rem; font-family: var(--font-head); letter-spacing: .06em; }
.contact__item-value { font-size: .975rem; color: var(--white); font-weight: 500; display: block; }
a.contact__item-value { color: var(--white); text-decoration: none; }
a.contact__item-value:hover { color: var(--accent); }

/* ── FORM ────────────────────────────────────────────── */
.contact__form-wrapper {
  background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .84rem; font-family: var(--font-head); font-weight: 600; color: rgba(232,234,240,.75); }
.form-group input, .form-group textarea {
  background: var(--bg-2); border: 1.5px solid rgba(255,255,255,.09);
  border-radius: var(--r); color: var(--white);
  font-family: var(--font-body); font-size: .95rem;
  padding: .8rem 1rem;
  transition: border-color var(--t), background var(--t);
  resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(146,153,166,.45); }
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
  background: rgba(0,175,204,.03);
}
.form-note { font-size: .8rem; color: var(--gray); }
.form-status { font-size: .88rem; font-family: var(--font-head); font-weight: 600; min-height: 1.4rem; }
.form-status.success { color: #4ade80; }
.form-status.error   { color: #f87171; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 3px solid var(--accent);
}
.footer__inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: start; gap: 3rem;
  padding: 3.5rem 28px;
}
.footer__brand p { margin-top: .65rem; font-size: .85rem; color: var(--gray); line-height: 1.55; }
.footer__nav { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; justify-content: center; padding-top: .25rem; }
.footer__nav a { font-size: .9rem; color: var(--gray); transition: color var(--t); }
.footer__nav a:hover { color: var(--accent); }
.footer__contact { display: flex; flex-direction: column; gap: .45rem; text-align: right; }
.footer__contact a, .footer__contact span { font-size: .875rem; color: var(--gray); transition: color var(--t); }
.footer__contact a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1rem 0; text-align: center; font-size: .8rem; color: rgba(146,153,166,.45); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .process__grid      { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
}
@media (max-width: 900px) {
  .services__grid > .service-card { flex: 0 1 calc(50% - .75rem); }
  .about__inner       { grid-template-columns: 1fr; gap: 3rem; }
  .contact__inner     { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner      { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer__contact    { text-align: center; }
  .nav__burger        { display: flex; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
    background: rgba(26,29,36,.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 1.5rem; gap: .25rem;
    transform: translateY(calc(-100% - var(--nav-h))); transition: transform var(--t);
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open    { transform: translateY(0); }
  .nav__link          { width: 100%; text-align: center; padding: .9rem; }
  .nav__link--cta     { margin-top: .5rem; }
}
@media (max-width: 768px) {
  .stats__grid        { grid-template-columns: repeat(2, 1fr); }
  .hero__headline     { font-size: clamp(2.2rem, 10vw, 3rem); }
  .contact__form-wrapper { padding: 1.75rem; }
}
@media (max-width: 600px) {
  .services__grid > .service-card { flex: 1 1 100%; max-width: 480px; }
}
@media (max-width: 540px) {
  .process__grid      { grid-template-columns: 1fr; }
  .hero__actions      { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* ── Cookie consent banner ───────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
}
.cookie-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.55;
}
.cookie-banner__actions {
  display: flex;
  gap: .65rem;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; text-align: center; }
}
.cf-turnstile { margin-bottom: .75rem; }
.revealed { opacity: 1 !important; transform: translateY(0) !important; }
