:root {
  --red: #e63027;
  --red-dark: #c5251e;
  --black: #0d0d0d;
  --gray-900: #1a1a1a;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-300: #d4d4d4;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --gray-50: #fafafa;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 4px;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* ─── HERO ─── */
#hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 5vw 6rem;
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--red);
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: normal;
  color: var(--red);
  display: inline-block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 0.95rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230,48,39,0.25); }

.btn-outline {
  background: var(--white);
  border: 2px solid var(--gray-200);
  color: var(--black);
  padding: 0.85rem 1.7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover { border-color: var(--black); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
}

.hero-visual picture, .hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 1rem 1.3rem;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-badge-icon {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-badge-icon svg { fill: white; width: 18px; height: 18px; }

.hero-badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 700;
}

.hero-badge-text small {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ─── SECTIONS ─── */
section { padding: 6rem 5vw; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1rem;
}

h2 span { color: var(--red); }

.section-sub {
  color: var(--gray-700);
  max-width: 560px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ─── SERVICES ─── */
#uslugi { background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 2.2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12);
  border-color: var(--red);
}

.service-icon {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.service-card:hover .service-icon { transform: rotate(-5deg) scale(1.05); }

.service-icon svg { fill: white; width: 26px; height: 26px; }

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  color: var(--black);
}

.service-card p {
  color: var(--gray-700);
  font-size: 0.93rem;
  line-height: 1.7;
}

.service-list {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-200);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ─── WHY US ─── */
#dlaczego { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.why-image {
  position: relative;
  aspect-ratio: 1/1.1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.25);
}

.why-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(230,48,39,0.15));
}

.why-stat-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.3rem;
  border-radius: 6px;
  text-align: center;
}

.why-stat-overlay strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.why-stat-overlay small {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.95;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.feature-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  transition: color 0.3s;
}

.feature:hover .feature-num { color: var(--red); }

.feature h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: var(--black);
}

.feature p {
  color: var(--gray-700);
  font-size: 0.93rem;
}

/* ─── BLOG SECTION (recent posts on homepage) ─── */
#blog-recent { background: var(--gray-50); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12);
  border-color: var(--red);
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}

.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.8rem;
}

.blog-card-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.blog-card-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.8rem;
  color: var(--black);
}

.blog-card-content p {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.blog-card-link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.blog-card:hover .blog-card-link-text {
  gap: 0.7rem;
}

.blog-all-link {
  text-align: center;
  margin-top: 1rem;
}

/* ─── CONTACT ─── */
#kontakt { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.contact-item:hover { border-color: var(--red); }

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(230,48,39,0.08);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-icon svg { fill: var(--red); width: 20px; height: 20px; }

.contact-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.3rem;
}

.contact-item a, .contact-item p {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--red); }

/* ─── FORM ─── */
.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px -15px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,48,39,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

.form-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 0.8rem;
}

.success-msg {
  display: none;
  background: #d4f5e0;
  border: 1px solid #4caf50;
  border-radius: 6px;
  padding: 1rem;
  color: #1e7e34;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}

/* ─── MAP ─── */
.map-container {
  margin-top: 0.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  height: 240px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.map-link:hover { text-decoration: underline; }
.map-link svg { fill: currentColor; width: 14px; height: 14px; }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 3rem 5vw 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gray-700);
}

.footer-brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-brand-fallback {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand-fallback span { color: var(--red); }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-300);
  max-width: 320px;
}

.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ─── FLOATING CTA ─── */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--red);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(230,48,39,0.4);
  z-index: 50;
  transition: all 0.2s;
}

.float-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(230,48,39,0.55);
}

.float-cta svg { fill: white; width: 22px; height: 22px; }

/* ─── FLOATING MESSENGER BUTTON ─── */
.float-messenger {
  position: fixed;
  bottom: 1.5rem;
  right: 5.5rem; /* obok przycisku z telefonem (56px szer + 1.5rem gap) */
  background: linear-gradient(135deg, #00B2FF 0%, #006AFF 50%, #8E57FF 100%);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 106, 255, 0.4);
  z-index: 50;
  transition: all 0.2s;
}

.float-messenger:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 106, 255, 0.55);
}

.float-messenger svg {
  fill: white;
  width: 28px;
  height: 28px;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.12);
  padding: 1.5rem 5vw;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.visible { display: block; }

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner-text p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--red);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.7rem 1.3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--red);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--red-dark);
}

.cookie-btn-reject {
  background: var(--white);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}

.cookie-btn-reject:hover {
  border-color: var(--gray-700);
  color: var(--black);
}

/* Footer link to manage cookies */
.cookie-link {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 0.88rem;
  padding: 0;
  font-family: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.cookie-link:hover { color: var(--red); }

/* Map placeholder when cookies not accepted */
.map-blocked {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  padding: 2rem;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.map-blocked p {
  color: var(--gray-700);
  font-size: 0.9rem;
}

.map-blocked button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}

.map-blocked button:hover { background: var(--red-dark); }

@media (max-width: 768px) {
  .cookie-banner { padding: 1.2rem 5vw; }
  .cookie-banner-inner { gap: 1rem; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; min-width: 130px; }
}

/* ─── PRIVACY POLICY PAGE ─── */
.policy-hero {
  padding: 4rem 5vw 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.policy-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.policy-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.policy-hero p {
  color: var(--gray-700);
  font-size: 1rem;
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 5vw 5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.policy-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: var(--black);
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
  color: var(--black);
}

.policy-content p { margin-bottom: 1.2rem; }

.policy-content strong { color: var(--black); font-weight: 700; }

.policy-content ul, .policy-content ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.policy-content li { margin-bottom: 0.5rem; }

.policy-content a {
  color: var(--red);
  text-decoration: underline;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.policy-content th,
.policy-content td {
  border: 1px solid var(--gray-200);
  padding: 0.7rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.policy-content th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--black);
}

.policy-meta {
  background: var(--gray-50);
  border-left: 4px solid var(--red);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
}

.policy-meta strong { display: inline-block; margin-right: 0.4rem; }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

.mobile-menu a:hover { color: var(--red); }

.mobile-close {
  position: absolute;
  top: 1.2rem;
  right: 5vw;
  font-size: 1.5rem;
  color: var(--black);
  cursor: pointer;
  background: none;
  border: none;
}

/* ─── BLOG LIST PAGE ─── */
.blog-list-hero {
  padding: 5rem 5vw 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  text-align: center;
}

.blog-list-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.blog-list-hero p {
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.blog-list {
  padding: 4rem 5vw 6rem;
  background: var(--gray-50);
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── BLOG ARTICLE PAGE ─── */
.article-hero {
  padding: 4rem 5vw 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.article-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.article-breadcrumbs {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.article-breadcrumbs a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.article-breadcrumbs a:hover { color: var(--red); }
.article-breadcrumbs span { color: var(--gray-300); }

.article-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--gray-500);
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.article-meta strong { color: var(--gray-700); font-weight: 600; }

.article-cover {
  max-width: 1000px;
  margin: 2rem auto 0;
  padding: 0 5vw;
}

.article-cover img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.2);
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 5vw 6rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.article-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--black);
}

.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--black);
}

.article-body p {
  margin-bottom: 1.4rem;
}

.article-body strong { color: var(--black); font-weight: 700; }

.article-body ul, .article-body ol {
  margin-bottom: 1.4rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.6rem;
}

.article-body a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.article-body a:hover { color: var(--red-dark); }

.article-body hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 2.5rem 0;
}

.article-body blockquote {
  border-left: 4px solid var(--red);
  padding: 1rem 0 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--gray-50);
  border-radius: 0 8px 8px 0;
  color: var(--gray-700);
  font-style: italic;
}

.article-body blockquote p:last-child { margin-bottom: 0; }

.article-tldr {
  background: var(--gray-50);
  border-left: 4px solid var(--red);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.article-tldr h3 {
  margin-top: 0;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.article-tldr ul {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

.article-tldr li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.article-tldr li:last-child { border-bottom: none; }

.article-cta-box {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  margin: 3rem 0;
  text-align: center;
}

.article-cta-box h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  text-transform: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
}

.article-cta-box p {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.article-body .article-cta-box p strong,
.article-body .article-cta-box strong {
  color: var(--white);
}

/* Reset article-body link styles for CTA box button */
.article-body .article-cta-box a.btn-primary,
.article-body .article-cta-box a.btn-primary:hover,
.article-body .article-cta-box a.btn-primary:visited {
  color: var(--white) !important;
  text-decoration: none !important;
  background: var(--red);
  margin: 0 auto;
}

.article-body .article-cta-box a.btn-primary:hover {
  background: var(--red-dark);
}

.article-cta-box .btn-primary svg {
  fill: var(--white);
}

.article-back {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 5vw 4rem;
}

.article-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.article-back a:hover { gap: 0.8rem; }

.article-back svg {
  width: 14px; height: 14px;
  fill: currentColor;
  transition: transform 0.2s;
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 5vw; }
  .hero-visual { aspect-ratio: 4/3; max-height: 420px; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  section { padding: 4rem 5vw; }
  .article-body { padding: 2.5rem 5vw 4rem; }
  .article-hero { padding: 2.5rem 5vw 1.5rem; }
}
