/* =========================================================
   OKNA ROLETY 360 JS — Jacek Szydło  |  Styles
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --navy-950: #070f20;
  --navy-900: #0a1628;
  --navy-800: #0f1d35;
  --navy-700: #15263f;
  --navy-600: #1c3050;
  --blue:     #1e6fbf;
  --blue-bright: #3a8ee0;
  --blue-soft: rgba(30, 111, 191, 0.15);
  --orange:   #f39c12;
  --orange-bright: #ff9e1f;
  --white:    #ffffff;
  --text:     #e8eef7;
  --muted:    #9eb0c9;
  --muted-2:  #6f85a2;
  --border:   rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  --container: 1200px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange-bright); }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text); }

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

/* ===================== BACKGROUND ATMOSPHERE ===================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 15% 10%, rgba(30, 111, 191, 0.18), transparent 60%),
    radial-gradient(ellipse 600px 400px at 85% 90%, rgba(243, 156, 18, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  background: rgba(7, 15, 32, 0.75);
  border-bottom: 1px solid var(--border);
  transition: background .2s ease;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand img { height: 150px; width: auto; }
.brand-txt { display: none; }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--text);
  border-radius: 10px;
  transition: all .2s ease;
}
.nav-links a:hover { background: var(--blue-soft); color: var(--white); }
.nav-links a.active {
  color: var(--orange-bright);
}
.nav-links a.active::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin: 4px auto 0;
}

.cta-phone {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  color: var(--navy-900) !important;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 6px 22px -6px rgba(243, 156, 18, 0.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta-phone:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -8px rgba(243, 156, 18, 0.8); color: var(--navy-900) !important; }
.cta-phone svg { width: 16px; height: 16px; }

/* mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  color: var(--navy-900);
  box-shadow: 0 12px 34px -10px rgba(243, 156, 18, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -12px rgba(243, 156, 18, 0.9); color: var(--navy-900); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); color: var(--white); border-color: rgba(255,255,255,0.25); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--blue-soft);
  border: 1px solid rgba(30, 111, 191, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.hero-kicker::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 10px var(--orange);
}
.hero h1 {
  margin-bottom: 22px;
}
.hero h1 .highlight {
  background: linear-gradient(120deg, var(--blue-bright) 0%, var(--orange-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-stats {
  display: flex; gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--orange-bright);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-strong);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(30, 111, 191, 0.35), transparent 70%);
  z-index: -1;
  filter: blur(30px);
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 90px 0;
  position: relative;
}
.section-alt {
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* ===================== SERVICE CARDS ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft);
  border: 1px solid rgba(30, 111, 191, 0.35);
  border-radius: 14px;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--blue-bright); }
.service-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.service-card .arrow {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange-bright); font-weight: 600; font-size: 0.9rem;
}

/* ===================== FEATURE / PILLARS ===================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.pillar {
  padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-bright), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}
.pillar h4 { margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: 0.95rem; }

/* ===================== ABOUT SECTION ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-text p { color: var(--muted); margin-bottom: 20px; font-size: 1.05rem; }
.about-text p:first-child { color: var(--text); font-size: 1.15rem; }
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 14px 20px;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid var(--border-strong);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--orange-bright);
}
.about-badge-label { font-size: 0.85rem; color: var(--muted); }

/* ===================== OFFER DETAIL (expandable) ===================== */
.offer-block {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
  transition: border-color .25s;
}
.offer-block:hover { border-color: var(--border-strong); }
.offer-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}
.offer-head .icon-box {
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft);
  border: 1px solid rgba(30,111,191,0.35);
  border-radius: 16px;
}
.offer-head .icon-box svg { width: 32px; height: 32px; color: var(--blue-bright); }
.offer-head h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}
.offer-head p { color: var(--muted); }

.offer-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.offer-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}
.offer-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 18px; height: 18px;
  background: var(--blue-soft);
  border: 1.5px solid var(--blue);
  border-radius: 50%;
}
.offer-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 14px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--orange-bright);
  border-bottom: 2px solid var(--orange-bright);
  transform: rotate(-45deg);
}

/* ===================== GALLERY ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-700);
  border: 1px solid var(--border);
  transition: transform .3s ease;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 15, 32, 0.8) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item .magnify {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease;
  color: var(--white);
}
.gallery-item .magnify svg { width: 18px; height: 18px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .magnify { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.95);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-strong);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.15);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 22px; height: 22px; }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p {
  color: var(--muted);
  margin-bottom: 34px;
  font-size: 1.05rem;
}
.contact-list { list-style: none; display: grid; gap: 18px; }
.contact-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.contact-list li:hover { border-color: var(--border-strong); }
.contact-list .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--blue-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-bright);
}
.contact-list .icon svg { width: 20px; height: 20px; }
.contact-list .label {
  font-size: 0.8rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-list .value {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  word-break: break-word;
}
.contact-list .value a:hover { color: var(--orange-bright); }
.contact-list .sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Form */
.contact-form {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { color: var(--muted); margin-bottom: 28px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(7, 15, 32, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s, background .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: rgba(7, 15, 32, 0.85);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.form-check input { margin-top: 3px; flex-shrink: 0; }
.form-check a { color: var(--blue-bright); text-decoration: underline; }
.form-note {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 16px;
  display: none;
}
.form-note.success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #86efac; display: block; }
.form-note.error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #fca5a5; display: block; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.18), transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30, 111, 191, 0.18), transparent 70%);
  border-radius: 50%;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { color: var(--muted); font-size: 1.1rem; margin-bottom: 30px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-banner .buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy-950);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col p, .footer-col li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-col ul { list-style: none; }
.footer-col a:hover { color: var(--orange-bright); }
.footer-logo img { height: 46px; margin-bottom: 16px; }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  color: var(--muted-2);
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--white); }

/* ===================== FLOATING CALL BUTTON ===================== */
.float-call {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 14px 34px -8px rgba(243, 156, 18, 0.6);
  text-decoration: none;
  transition: transform .2s;
}
.float-call:hover { transform: translateY(-2px); color: var(--navy-900); }
.float-call svg { width: 18px; height: 18px; }
.float-call .pulse {
  width: 12px; height: 12px;
  background: var(--navy-900);
  border-radius: 50%;
  position: relative;
}
.float-call .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.6;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 580px;
  margin: 0 auto;
  z-index: 150;
  background: var(--navy-800);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: none;
}
.cookie-banner.visible { display: block; animation: slideUp .3s ease; }
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner h4 { margin-bottom: 8px; font-size: 1.1rem; }
.cookie-banner p { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; line-height: 1.6; }
.cookie-banner p a { color: var(--blue-bright); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .btn { padding: 10px 20px; font-size: 0.9rem; }

/* ===================== LEGAL PAGES ===================== */
.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal h1 { margin-bottom: 12px; }
.legal .updated {
  color: var(--muted-2);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--white);
}
.legal h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--white);
}
.legal p, .legal li { color: var(--text); margin-bottom: 12px; line-height: 1.75; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 16px; }
.legal li { padding-left: 6px; }
.legal a { color: var(--blue-bright); text-decoration: underline; }
.legal strong { color: var(--white); }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.legal th, .legal td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.legal th { background: var(--navy-700); color: var(--white); font-weight: 700; }

/* ===================== PAGE HEADER (subpages) ===================== */
.page-header {
  padding: 70px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .breadcrumb {
  font-size: 0.85rem;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: var(--muted); }
.page-header .breadcrumb a:hover { color: var(--orange-bright); }
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--muted); max-width: 680px; margin: 0 auto; font-size: 1.1rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 820px) {
  .hero { padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .section { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 460px; margin: 0 auto; aspect-ratio: 16/10; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr; }
  .offer-list { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 26px; }
  .contact-form { padding: 28px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    background: var(--navy-900);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 18px; }
  .nav-links a.active::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .cta-phone { display: none; }

  .float-call { padding: 12px 16px; font-size: 0.9rem; }
  .float-call span { display: none; }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .offer-block { padding: 26px 22px; }
  .offer-head { flex-direction: column; gap: 14px; }
  .brand-txt { display: none; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; }
  .container { padding: 0 18px; }
}

/* accessibility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: 2px solid var(--orange-bright); outline-offset: 3px; border-radius: 4px; }
