/* ============================================================
   Dobrze Napisane — Main Stylesheet
   Warm & Professional theme for academic editing services
   ============================================================ */

/* ─── CSS Custom Properties ─── */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A0;
  --gold-dark: #A68A3E;
  --navy: #1B2A4A;
  --navy-light: #2D4470;
  --navy-dark: #0F1B33;
  --charcoal: #2C2C2C;
  --warm-bg: #FAF8F5;
  --warm-bg-alt: #F3EDE4;
  --cream: #FFF9F0;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --text-muted: #999;
  --white: #FFFFFF;
  --orange-cta: #E85D26;
  --orange-hover: #D04E1A;
  --success: #27AE60;
  --border: rgba(0,0,0,0.08);
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --container: 1200px;
  --top-bar-h: 36px;
  --header-h: 116px; /* top-bar 36px + nav 80px */
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

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

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.625rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.section-label {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-dark);
  padding: 6px 18px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  margin-top: 14px;
}

/* ─── SVG Icons ─── */
.dn-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.btn-primary {
  background: var(--orange-cta);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,93,38,0.3);
}

.btn-secondary {
  background: var(--gold);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

/* ============================================================
   TOP BAR — quick service links above header
   ============================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: transform 0.3s;
}
.top-bar.hidden { transform: translateY(-100%); }
.top-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.top-bar__services {
  display: flex;
  gap: 20px;
}
.top-bar__services a,
.top-bar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.top-bar__services a:hover,
.top-bar__contact a:hover {
  color: var(--gold-light);
}
.top-bar__services .dn-icon,
.top-bar__contact .dn-icon {
  color: var(--gold);
  opacity: 0.7;
}
.top-bar__contact {
  display: flex;
  gap: 20px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: box-shadow var(--transition), top 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-h) - var(--top-bar-h));
}
.nav-links li {
  position: relative;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-link img {
  height: 48px;
  width: auto;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-text span {
  color: var(--gold);
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--navy);
}

/* Mobile nav */
/* ─── Mobile Nav — accordion with submenus ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 16px 20px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open { display: flex; flex-direction: column; }

/* Section toggle (Usługi / Dla kogo) */
.mobile-nav__section {
  border-bottom: 1px solid var(--border);
}
.mobile-nav__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
}
.mobile-nav__toggle .dn-icon:first-child {
  color: var(--gold-dark);
}
.mobile-nav__toggle .dn-icon:last-child {
  margin-left: auto;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.mobile-nav__toggle[aria-expanded="true"] .dn-icon:last-child {
  transform: rotate(180deg);
}

/* Submenu — hidden by default */
.mobile-nav__submenu {
  display: none;
  padding: 0 0 12px 0;
}
.mobile-nav__submenu.is-open {
  display: block;
}
.mobile-nav__group-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 12px 0 6px 0;
}
.mobile-nav__group-label:first-child {
  padding-top: 4px;
}
.mobile-nav__sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-nav__sublink:hover,
.mobile-nav__sublink:active {
  background: var(--warm-bg);
}
.mobile-nav__sublink .dn-icon {
  color: var(--gold-dark);
  flex-shrink: 0;
}
.mobile-nav__sublink--all {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-weight: 600;
  color: var(--navy);
}
.mobile-nav__sublink--header {
  background: var(--warm-bg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  padding: 13px 14px;
  border: 1px solid var(--border);
}
.mobile-nav__sublink--header .dn-icon {
  color: var(--orange-cta);
}

/* Plain links (Blog, O mnie, Opinie) */
.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav__link .dn-icon {
  color: var(--gold-dark);
}

/* CTA button */
.mobile-nav__cta {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
}

/* Contact info at bottom */
.mobile-nav__contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
}
.mobile-nav__contact .dn-icon {
  color: var(--gold-dark);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: calc(var(--header-h) + 60px) 32px 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #3A5A8A 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero label */
.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero trust row */
.hero-trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.hero-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-row svg {
  color: var(--gold-light);
}

/* Hero service tags */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.hero-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.hero-service-tag .dn-icon {
  color: var(--gold);
  opacity: 0.7;
}

/* Hero visual — photo + floating cards */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo-main {
  position: relative;
  width: 340px;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 4px solid rgba(201,168,76,0.3);
}
.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Floating card overlays */
.hero-card {
  position: absolute;
  background: rgba(27,42,74,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 12px 18px;
  color: var(--white);
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
/* .hero-card:first-of-type removed — Google card deleted from HTML */
.hero-card--bottom {
  bottom: -16px;
  left: -60px;
  right: auto;
  top: auto;
}
.hero-card-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.hero-card-stat {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* Legacy classes — keep for compatibility */
.hero-stats { display: none; }
.hero-photo-badge { display: none; }
.hero-badge { display: none; }
.hero-card-list { display: none; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 36px 32px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--warm-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 64px 32px;
  background: var(--warm-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 24px;
  transition: all 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-card:hover .service-link {
  gap: 12px;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  padding: 64px 32px;
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}
.step:hover .step-number {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}
.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT / PHOTO SECTION
   ============================================================ */
.about-section {
  padding: 64px 32px;
  background: var(--warm-bg-alt);
}
.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
/* Decorative frame behind photo */
.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-photo-wrap > * { position: relative; z-index: 1; }

/* Creative photo wrapper with badge */
.about-photo-creative {
  position: relative;
  z-index: 1;
}
.about-photo-creative__ring {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-photo-creative__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  z-index: 2;
  white-space: nowrap;
}
.about-photo-creative__badge .dn-icon { color: var(--gold-dark); }

/* Circular photo treatment for smaller images */
.photo-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold-light);
  box-shadow: var(--shadow-md);
}

.about-content h2 { margin-bottom: 20px; }
.about-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.highlight-item .dn-icon {
  color: var(--gold-dark);
  margin-top: 2px;
}
.highlight-item strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}
.highlight-item span {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 64px 32px;
  background: var(--navy);
}
.testimonials .section-label {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-desc { color: rgba(255,255,255,0.55); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.testimonial-quote {
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.6;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}
.testimonial-role {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

/* ============================================================
   CLIENTS MARQUEE — "Zaufali mi"
   ============================================================ */
.clients-section {
  padding: 56px 0 48px;
  background: var(--white);
  overflow: hidden;
}

.clients-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.clients-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.clients-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.clients-track--left {
  animation: marquee-left 40s linear infinite;
}

.clients-track--right {
  animation: marquee-right 40s linear infinite;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.clients-logo-card {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.clients-logo-card:hover {
  box-shadow: 0 4px 24px rgba(27,42,74,0.1);
  border-color: var(--gold);
}

.clients-logo-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.clients-logo-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* Marquee always runs — no pause on hover */

/* ============================================================
   BLOG HERO — osobisty hero strony bloga
   ============================================================ */
.blog-hero {
  padding: calc(var(--header-h) + 48px) 32px 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #3A5A8A 100%);
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.blog-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.blog-hero__content {
  flex: 1;
  max-width: 640px;
}
.blog-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}
.blog-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.blog-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
}
.blog-hero__author {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 28px;
  min-width: 320px;
  flex-shrink: 0;
}
.blog-hero__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.blog-hero__author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.blog-hero__author-info strong {
  color: var(--white);
  font-size: 16px;
}
.blog-hero__author-info > span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.blog-hero__author-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--gold-light);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .blog-hero__inner { flex-direction: column; text-align: center; gap: 32px; }
  .blog-hero__author { min-width: auto; }
  .blog-hero__desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .blog-hero { padding-top: calc(var(--header-h) + 32px); padding-bottom: 36px; }
  .blog-hero__author { padding: 18px; }
  .blog-hero__avatar { width: 72px; height: 72px; }
}

/* ============================================================
   BLOG / ARTICLES
   ============================================================ */
.blog-preview {
  padding: 64px 32px;
  background: var(--warm-bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.blog-card-img {
  overflow: hidden;
  position: relative;
  background: var(--warm-bg-alt);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
/* Placeholder for posts without featured image */
.blog-card-img--placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  opacity: 0.6;
}

.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-card-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.blog-card-date {
  font-size: 12px;
  color: var(--text-muted);
}
.blog-card-reading {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.2s;
}
.blog-card:hover h3 { color: var(--gold-dark); }

.blog-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}
.blog-card-link {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Blog Listing Page */
.blog-listing {
  padding: 40px 32px 100px;
  background: var(--warm-bg);
}
.blog-listing-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
}
.blog-main { display: flex; flex-direction: column; gap: 32px; }

/* Blog Single Post */
.single-post-header {
  padding: calc(var(--header-h) + 60px) 32px 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  text-align: center;
}
.single-post-header h1 {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 16px;
}
.single-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.single-post-layout {
  padding: 48px 0 0;
}
.single-post-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.single-post-content {
  padding: 0;
  background: var(--white);
  position: relative;
}
.single-post-content h2 {
  margin: 48px 0 16px;
  font-size: 28px;
}
.single-post-content h3 {
  margin: 36px 0 12px;
  font-size: 22px;
}
.single-post-content p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}
.single-post-content ul,
.single-post-content ol {
  margin: 0 0 20px 24px;
  font-size: 17px;
  line-height: 1.8;
}
.single-post-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--gold);
  background: var(--warm-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy);
}
.single-post-content img {
  border-radius: var(--radius);
  margin: 32px 0;
}
.single-post-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Single Post Sidebar ─── */
.single-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.sidebar-card--author {
  text-align: center;
}
.sidebar-author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--gold);
  margin: 0 auto 12px;
  display: block;
}
.sidebar-author-role {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.sidebar-author-bio {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.sidebar-popular-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.sidebar-popular-post {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.sidebar-popular-post:hover {
  background: var(--warm-bg);
}
.sidebar-popular-post__img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--warm-bg);
}
.sidebar-popular-post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-popular-post__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.sidebar-popular-post__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar-popular-post__meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.sidebar-links {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.sidebar-links li {
  margin-bottom: 0;
}
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.sidebar-links a:hover {
  background: var(--warm-bg);
  color: var(--gold-dark);
}
.sidebar-links .dn-icon {
  color: var(--gold);
}

/* ─── Reading Progress Bar ─── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange-cta));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 64px 32px;
  background: linear-gradient(135deg, var(--cream), var(--warm-bg-alt));
  text-align: center;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner--with-photo {
  max-width: 900px;
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
}
.cta-photo {
  flex-shrink: 0;
}
.cta-photo__img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 32px rgba(27,42,74,0.15);
}
.cta-text { flex: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section .cta-text p,
.cta-section > .cta-inner > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-features {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.cta-feature .dn-icon {
  color: var(--gold);
}

/* ============================================================
   CTA FORM SECTION (footer form on every page)
   ============================================================ */
.cta-form-section {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--cream), var(--warm-bg-alt));
}

/* Section heading above the grid */
.cta-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.cta-section-header h2 {
  margin-bottom: 0;
}
.cta-section-header h2 em {
  color: var(--gold-dark);
  font-style: italic;
}

.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Person photo */
.cta-form-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  margin-bottom: 24px;
}
.cta-form-person__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 32px rgba(27,42,74,0.15);
}

/* Quote block */
.cta-form-quote {
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  padding: 0;
  margin: 0 0 16px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  position: relative;
}

/* Signature */
.cta-form-signature {
  margin-bottom: 28px;
}
.cta-form-signature strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  font-family: 'Playfair Display', Georgia, serif;
}
.cta-form-signature span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Features grid */
.cta-form-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.cta-form-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.cta-form-feature .dn-icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* Contact alternative */
.cta-form-contact-alt {
  padding-top: 0;
  border-top: none;
}
.cta-form-contact-alt__heading {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.cta-contact-cards {
  display: flex;
  gap: 12px;
}
.cta-contact-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
}
.cta-contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.15);
  transform: translateY(-2px);
}
.cta-contact-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.cta-contact-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.cta-contact-card__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

/* Form card */
.cta-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.cta-form-wrap__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cta-form-wrap__heading .dn-icon {
  color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 56px 32px 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand span { color: var(--gold); }
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-contact-item .dn-icon {
  color: var(--gold);
}
.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-heading {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--container);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   PAGE HERO (for subpages)
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + 36px) 32px 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   SERVICE PAGE TEMPLATE
   ============================================================ */
.service-page-content {
  padding: 56px 32px;
  background: var(--white);
}
.service-page-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
}

.service-main h2 {
  position: relative;
  margin: 48px 0 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--navy);
}
.service-main h2:first-child,
.service-main .service-wp-content + h2,
.service-highlight-box h2,
.service-main > div:first-child + h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.service-main h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 12px;
}
.service-highlight-box h2::after {
  display: none;
}
.service-main p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
  color: var(--text);
  max-width: 65ch;
}
.service-main ul {
  margin: 0 0 24px 0;
  list-style: none;
}
.service-main ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}
.service-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Sidebar sticky */
.service-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.sidebar-card {
  background: var(--warm-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.sidebar-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}
.sidebar-card .footer-contact-item a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-card .footer-contact-item a:hover {
  color: var(--gold-dark);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.price-tag .amount {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
}
.price-tag .unit {
  font-size: 15px;
  color: var(--text-light);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 56px 32px;
  background: var(--white);
}
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.contact-info-card .dn-icon {
  color: var(--gold-dark);
  margin-top: 2px;
}
.contact-info-card strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info-card span {
  font-size: 14px;
  color: var(--text-light);
}

/* Contact form styling */
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: 8px 0;
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.breadcrumbs a {
  color: var(--text-light);
}
.breadcrumbs a:hover { color: var(--gold-dark); }
.breadcrumbs .sep {
  margin: 0 8px;
  color: var(--text-muted);
}
.breadcrumbs .current {
  color: var(--navy);
  font-weight: 500;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a,
.pagination span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--border);
  color: var(--text);
  transition: all 0.2s;
  text-decoration: none;
}
.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.pagination .current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  padding: calc(var(--header-h) + 80px) 32px 100px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-404 h1 {
  font-size: 120px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 h2 { margin-bottom: 16px; }
.page-404 p {
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 80px; --top-bar-h: 0px; }
  .top-bar { display: none; }
  .site-header { top: 0; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-photo-main { width: 280px; height: 360px; margin: 0 auto; }
  .hero-card--bottom { left: -40px; bottom: -12px; }
  .hero h1 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-page-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .container { padding-left: 12px; padding-right: 12px; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .hero { padding-top: calc(var(--header-h) + 32px); padding-bottom: 48px; }
  .hero h1 { font-size: 2rem; }
  .hero-photo-main { width: 220px; height: 280px; }
  .hero-card--bottom { left: -20px; bottom: -10px; padding: 8px 14px; }
  .hero-card-title { font-size: 12px; }
  .hero-card-stat { font-size: 11px; }
  .hero-trust-row { gap: 12px; font-size: 13px; }
  .hero-services { gap: 6px; }
  .hero-service-tag { font-size: 11px; padding: 4px 10px; }

  .single-post-grid { grid-template-columns: 1fr; }
  .single-post-sidebar { position: static; }
  .single-post-content p { font-size: 16px; }

  .about-highlights { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .trust-bar { padding: 24px 16px; }
  .trust-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
    justify-items: center;
    text-align: center;
  }
  .trust-item {
    flex-direction: column;
    font-size: 11px;
    gap: 6px;
    text-align: center;
    line-height: 1.3;
    white-space: normal;
  }
  .trust-icon { width: 32px; height: 32px; border-radius: 8px; }
  /* Last row: 2 items centered across 3-col grid */
  .trust-item:nth-child(4) { grid-column: 1 / 2; }
  .trust-item:nth-child(5) { grid-column: 2 / 3; }

  .clients-section { padding: 48px 0 40px; }
  .clients-logo-card { width: 140px; padding: 14px 10px; }
  .clients-logo-card img { width: 72px; height: 72px; }
  .clients-logo-name { font-size: 11px; }
  .clients-track--left { animation-duration: 25s; }
  .clients-track--right { animation-duration: 25s; }

  .cta-inner--with-photo { flex-direction: column; text-align: center; gap: 24px; }
  .cta-features { justify-content: center; }
  .cta-photo__img { width: 140px; height: 140px; }
  .cta-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-form-section { padding: 60px 0; }
  .cta-form-wrap { padding: 28px 24px; }
  .cta-form-features { grid-template-columns: 1fr; }
  .cta-contact-cards { flex-direction: column; }
  .cta-form-person__photo { width: 120px; height: 120px; }
  .cta-section-header { margin-bottom: 32px; }
}

/* ============================================================
   UNIQUE PAGE HEROES (per page type)
   ============================================================ */
/* Service page hero — accent stripe + icon */
.page-hero--service {
  background: linear-gradient(135deg, var(--navy) 0%, #2A3F6A 100%);
  padding-bottom: 44px;
}
.page-hero--service::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

/* Contact hero — warm gradient */
.page-hero--contact {
  background: linear-gradient(135deg, #2D4470 0%, var(--navy) 50%, #1a3355 100%);
}
.page-hero--contact::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* About hero — larger, warmer */
.page-hero--about {
  padding-bottom: 44px;
  background: linear-gradient(135deg, #1a3355 0%, var(--navy-light) 100%);
}
.page-hero--about::before {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}

/* Offer hero — gold accent */
.page-hero--offer {
  background: linear-gradient(135deg, var(--navy) 0%, #2D4470 60%, #3A5A8A 100%);
}
.page-hero--offer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

/* Audience hero — colored gradient per type */
.page-hero--audience {
  padding-bottom: 40px;
}

/* Blog hero — subtle pattern */
.page-hero--blog {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  padding-bottom: 70px;
}
.page-hero--blog::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--warm-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Hero icon circle */
.hero-icon-circle {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-icon-square {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

/* ============================================================
   SIDEBAR DARK CARD (CTA, price etc)
   ============================================================ */
.sidebar-card--dark {
  background: var(--navy);
  color: var(--white);
  border: none;
}
.sidebar-card--dark h3 {
  color: var(--gold-light);
}
.sidebar-card--dark p {
  color: rgba(255,255,255,0.75);
}
.sidebar-card--dark .price-tag .amount { color: var(--white); }
.sidebar-card--dark .price-tag .unit { color: rgba(255,255,255,0.6); }
.sidebar-card--dark .sidebar-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-card--dark .sidebar-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  text-align: center;
}
.sidebar-card--dark .sidebar-label {
  font-size: 13px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ============================================================
   CHECKLIST (used in sidebar, benefits, etc)
   ============================================================ */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.checklist--light li { color: rgba(255,255,255,0.8); }

/* ============================================================
   AUTHOR BOX (single post)
   ============================================================ */
.author-box {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--warm-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-width: 780px;
  margin: 32px auto 0;
}
.author-box__photo { flex-shrink: 0; }
.author-box__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.author-box__bio {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.6;
}

/* ============================================================
   TAGS LIST (single post)
   ============================================================ */
.post-tags {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.post-tags__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
}
.post-tags__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.post-tags__list a {
  display: inline-block;
  padding: 6px 16px;
  background: var(--warm-bg);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-light);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}
.post-tags__list a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Single post featured image (full-bleed) */
.single-post-hero-img {
  margin: -20px -20px 40px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.single-post-hero-img img {
  width: 100%;
  height: auto;
}

/* Post category badge (header) */
.post-category-badge {
  color: var(--gold-light);
  background: rgba(201,168,76,0.2);
  padding: 4px 14px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================================
   OFFER PAGE: PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.pricing-card--popular {
  border: 2px solid var(--gold);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-dark);
}
.pricing-card__time {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pricing-card__features {
  flex: 1;
  margin: 24px 0;
}

/* ============================================================
   AUDIENCE PAGE: BENEFITS LIST
   ============================================================ */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
}
.benefits-list .dn-icon { color: var(--gold-dark); flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE: TRUST BOX
   ============================================================ */
.contact-trust-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.contact-trust-box h3 {
  color: var(--gold-light);
  font-size: 18px;
  margin-bottom: 16px;
}

/* Contact form wrapper */
.contact-form-wrap {
  background: var(--warm-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form-wrap h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ============================================================
   ABOUT PAGE: VALUES SECTION
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-dark);
}
.value-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* About: placeholder initials */
.about-photo--initials {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--navy);
}
.faq-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   SIDEBAR: POPULAR POSTS
   ============================================================ */
.sidebar-posts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-posts li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-posts a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.sidebar-posts a:hover { color: var(--gold-dark); }
.sidebar-posts__meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Sidebar categories list */
.sidebar-categories {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-categories a:hover { color: var(--gold-dark); }
.sidebar-categories__count {
  background: var(--warm-bg);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Sidebar quick service links */
.sidebar-service-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-service-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  text-decoration: none;
}
.sidebar-service-links a:hover { color: var(--gold-dark); }

/* ============================================================
   SECTION PADDING HELPERS
   ============================================================ */
.section-padded {
  padding: 64px 32px;
}
/* Audience pages — same compact padding */
.page-hero--audience ~ .section-padded {
  padding: 64px 32px;
}
.section-padded--warm { background: var(--warm-bg); }
.section-padded--white { background: var(--white); }
.section-padded--alt { background: var(--warm-bg-alt); }

/* ============================================================
   ADDITIONAL RESPONSIVE — 480px small phones
   ============================================================ */
@media (max-width: 480px) {
  :root { --header-h: 64px; }

  .hero h1 { font-size: 1.75rem; }
  .hero-subtitle { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-photo-main { width: 200px; height: 260px; }
  .hero-card--bottom { left: -10px; }
  .hero-services { display: none; }

  .section-header h2 { font-size: 1.5rem; }
  .service-card { padding: 28px 20px; }

  .page-hero h1 { font-size: 1.5rem; }
  .page-hero p { font-size: 15px; }

  /* Trust bar — 2 columns on small phones */
  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
  }
  .trust-item:nth-child(4) { grid-column: auto; }
  .trust-item:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .single-post-content h2 { font-size: 22px; }
  .single-post-content p { font-size: 15px; line-height: 1.7; }

  .pricing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .btn-lg { padding: 16px 28px; font-size: 16px; }

  .author-box { flex-direction: column; text-align: center; }

  .page-404 h1 { font-size: 80px; }

  .contact-form-wrap { padding: 24px 12px; }
}

/* ============================================================
   ADDITIONAL CLASS REFINEMENTS
   ============================================================ */

/* Container narrow */
.container--narrow { max-width: 780px; margin-left: auto; margin-right: auto; }

/* Blog meta centered */
.blog-card-meta--center { justify-content: center; margin-bottom: 20px; }

/* Button full-width */
.btn--full { width: 100%; justify-content: center; }

/* Sidebar card inner elements */
.sidebar-card__title { font-size: 20px; margin-bottom: 12px; }
.sidebar-card__desc { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.sidebar-card--dark .sidebar-card__title { color: var(--gold-light); }
.sidebar-card--dark .sidebar-card__desc { color: rgba(255,255,255,0.75); }

/* Sidebar posts refinements */
.sidebar-posts__item { padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-posts__link {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.sidebar-posts__link:hover { color: var(--gold-dark); }

/* Sidebar categories refinements */
.sidebar-categories__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-categories__link:hover { color: var(--gold-dark); }

/* Sidebar service links refinements */
.sidebar-service-links__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  text-decoration: none;
}
.sidebar-service-links__item:hover { color: var(--gold-dark); }

/* Checklist item */
.checklist__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.checklist--light .checklist__item { color: rgba(255,255,255,0.8); }

/* Contact heading */
.contact-heading { margin-bottom: 8px; }
.contact-subheading { color: var(--text-light); margin-bottom: 32px; }

/* Contact trust-box title */
.contact-trust-box__title {
  color: var(--gold-light);
  font-size: 18px;
  margin-bottom: 16px;
}

/* Contact form wrap titles */
.contact-form-wrap__title { font-size: 24px; margin-bottom: 8px; }
.contact-form-wrap__desc { font-size: 14px; color: var(--text-light); margin-bottom: 32px; }

/* Form disclaimer */
.form-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* Hero icon circle (audience pages) */
.hero-icon-circle {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Services grid variants */
.services-grid--auto {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.services-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Service card price */
.service-card__price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.service-card__price strong { color: var(--navy); }

/* Benefits list refinements */
.benefits-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
  text-align: left;
}
.benefits-list__icon { flex-shrink: 0; color: var(--gold-dark); }

/* Pricing card inner */
.pricing-card__header { text-align: center; margin-bottom: 24px; }
.pricing-card__title { font-size: 20px; margin-bottom: 12px; }
.price-tag--center { justify-content: center; }

/* Pricing features */
.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 4px 0;
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__check { color: var(--gold-dark); flex-shrink: 0; }

/* FAQ item inner */
.faq-item__question { font-size: 18px; margin-bottom: 8px; color: var(--navy); }
.faq-item__answer { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* Value card inner */
.value-card__title { font-size: 20px; margin-bottom: 8px; }
.value-card__desc { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Tag item */
.post-tags__item {
  display: inline-block;
  padding: 6px 16px;
  background: var(--warm-bg);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-light);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}
.post-tags__item:hover { border-color: var(--gold); color: var(--gold-dark); }

/* Empty state (search) */
.empty-state {
  text-align: center;
  padding: 56px 24px;
}
.empty-state h2 { font-size: 28px; margin-bottom: 12px; color: var(--navy); }
.empty-state p { font-size: 16px; color: var(--text-light); margin-bottom: 32px; }

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-area { margin-top: 48px; }
.comments-title {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--navy);
}
.comment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.comment-list li {
  padding: 24px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.comment-list .comment-author { font-weight: 700; color: var(--navy); }
.comment-list .comment-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.comment-list .comment-body p { font-size: 14px; line-height: 1.7; }
.no-comments { font-size: 15px; color: var(--text-muted); font-style: italic; }
.comment-notes { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.comment-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

/* Comment form */
.comment-respond { margin-top: 48px; }
.comment-respond label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}
.comment-respond input:focus,
.comment-respond textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* ============================================================
   RESPONSIVE: services-grid and extra at 768px and 480px
   ============================================================ */
@media (max-width: 768px) {
  .services-grid--3,
  .services-grid--auto { grid-template-columns: 1fr; }
  .hero-icon-circle { width: 52px; height: 52px; }
}
@media (max-width: 480px) {
  .services-grid--3 { grid-template-columns: 1fr; }
  .contact-trust-box { padding: 20px; }
  .benefits-list__item { padding: 16px 20px; gap: 12px; }
  .empty-state { padding: 40px 16px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-warm { background: var(--warm-bg); }
.bg-navy { background: var(--navy); }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   OFFER PAGE — Hero with background
   ============================================================ */
.page-hero--with-bg {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #2a3f6a 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.94) 0%, rgba(27,42,74,0.87) 50%, rgba(27,42,74,0.78) 100%);
  z-index: 1;
}
.page-hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px;
}
.page-hero--with-bg h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}
.page-hero__subtitle {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.section-label--light {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
}

/* ============================================================
   OFFER PAGE — Benefits strip
   ============================================================ */
.offer-benefits-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.offer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
}
.offer-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.offer-benefit__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--warm-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}
.offer-benefit__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.offer-benefit__text strong {
  font-size: 0.95rem;
  color: var(--navy);
}
.offer-benefit__text span {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ============================================================
   OFFER PAGE — Service rows (alternating image+text)
   ============================================================ */
.offer-services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.offer-service-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.offer-service-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.offer-service-row--reverse {
  direction: rtl;
}
.offer-service-row--reverse > * {
  direction: ltr;
}
.offer-service-row__img {
  height: 100%;
  min-height: 260px;
  overflow: hidden;
}
.offer-service-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offer-service-row__body {
  padding: 32px 32px 32px 0;
}
.offer-service-row--reverse .offer-service-row__body {
  padding: 32px 0 32px 32px;
}
.offer-service-row__body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.offer-service-row__body p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.offer-service-row__meta {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.offer-service-row__price,
.offer-service-row__time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}
.offer-service-row__price {
  color: var(--gold-dark);
  font-weight: 600;
}

/* ============================================================
   OFFER PAGE — Process steps
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
.process-step {
  position: relative;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.process-step__number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.process-step__icon {
  width: 56px;
  height: 56px;
  margin: 12px auto 16px;
  background: var(--warm-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}
.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   OFFER PAGE — Portfolio grid
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.portfolio-card__img {
  height: 220px;
  overflow: hidden;
  background: var(--warm-bg);
}
.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.05);
}
.portfolio-card__body {
  padding: 24px;
}
.portfolio-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--warm-bg);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.portfolio-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.portfolio-card__body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   OFFER PAGE — Audience cards
   ============================================================ */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-card {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.audience-card__icon {
  width: 56px;
  height: 56px;
  background: var(--warm-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.audience-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.audience-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.audience-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ============================================================
   FAQ — <details> accordion style
   ============================================================ */
details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
details.faq-item[open] {
  border-color: var(--gold);
}
details.faq-item summary.faq-item__question {
  padding: 20px 24px;
  padding-right: 48px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-weight: 600;
}
details.faq-item summary.faq-item__question::-webkit-details-marker {
  display: none;
}
details.faq-item summary.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 300;
  transition: transform 0.2s;
}
details.faq-item[open] summary.faq-item__question::after {
  content: '−';
}
details.faq-item .faq-item__answer {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* FAQ Panel — questions left, answer right (desktop) */
.faq-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.faq-panel__questions {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
}
.faq-panel__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.faq-panel__q:last-child { border-bottom: none; }
.faq-panel__q:hover {
  background: var(--warm-bg);
  color: var(--navy);
}
.faq-panel__q svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: var(--transition);
}
.faq-panel__q--active {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.faq-panel__q--active:hover {
  background: var(--navy);
  color: var(--white);
}
.faq-panel__q--active svg {
  color: var(--gold);
  transform: rotate(0deg);
}

/* Answer area */
.faq-panel__answer-area {
  padding: 32px;
  display: flex;
  align-items: flex-start;
  background: var(--warm-bg);
  position: sticky;
  top: 100px;
  align-self: start;
}
.faq-panel__answer {
  display: none;
}
.faq-panel__answer--visible {
  display: block;
  animation: faqFadeIn 0.25s ease;
}
.faq-panel__answer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.faq-panel__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile: stack vertically as accordion */
@media (max-width: 768px) {
  .faq-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .faq-panel__questions {
    border-right: none;
    max-height: none;
  }
  .faq-panel__answer-area {
    display: none;
  }
  /* On mobile, show answer inline below active question */
  .faq-panel__q { position: relative; }
  .faq-panel__q--active + .faq-panel__mob-answer {
    display: block;
    padding: 16px 20px;
    background: var(--warm-bg);
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
  }
  .faq-panel__mob-answer {
    display: none;
  }
}

/* Button small variant */
.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ============================================================
   OFFER PAGE — Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .offer-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-service-row { grid-template-columns: 300px 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero--with-bg h1 { font-size: 2rem; }
  .page-hero__content { padding: 36px 20px; }
  .offer-benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .offer-service-row { grid-template-columns: 1fr; gap: 0; }
  .offer-service-row--reverse { direction: ltr; }
  .offer-service-row__img { min-height: 200px; }
  .offer-service-row__body { padding: 24px !important; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .audience-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .page-hero--with-bg h1 { font-size: 1.6rem; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE PAGE — Hero with background photo
   ============================================================ */
.service-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.service-hero__bg {
  position: absolute;
  inset: 0;
}
.service-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,42,74,0.95) 0%, rgba(27,42,74,0.88) 40%, rgba(27,42,74,0.78) 100%);
}
.service-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 72px 28px 64px;
}
.service-hero__content h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.2);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.service-hero__content .hero-icon-square {
  margin-bottom: 20px;
}
.service-hero__intro {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.service-hero__meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.service-hero__price,
.service-hero__time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
}
.service-hero__price {
  color: var(--gold);
  font-weight: 600;
}
.service-hero__trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.service-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}
.service-hero__trust-item .dn-icon {
  color: var(--gold-light);
}

/* SERVICE PAGE — Benefits grid */
.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-benefit-card {
  position: relative;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.service-benefit-card__number {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.service-benefit-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-benefit-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* SERVICE PAGE — Visual checklist */
.service-checklist-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
.service-checklist-visual__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--navy);
}
.service-checklist-visual__item .dn-icon {
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* SERVICE PAGE — Mini process steps */
.service-process-mini {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 32px;
}
.service-process-mini__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--warm-bg);
  border-radius: var(--radius);
}
.service-process-mini__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}
.service-process-mini__step strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.service-process-mini__step p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* SERVICE PAGE — Highlight box (difference section) */
.service-highlight-box {
  background: linear-gradient(135deg, #f8f6f1 0%, #faf9f6 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 32px 0;
}
.service-highlight-box h2 {
  font-size: 1.15rem;
  margin: 0 0 12px 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
  color: var(--navy);
}
.service-highlight-box h2::after {
  display: none;
}
.service-highlight-box p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}

/* SERVICE PAGE — Fields/specializations grid */
.service-fields-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 32px;
}
.service-field-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--warm-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color 0.2s, background 0.2s;
}
.service-field-tag:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.service-field-tag .dn-icon {
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ============================================================
   SERVICE PAGE — Rich WP Content Enhancement
   Auto-styles WP editor content for pages with custom content
   H2 and P inherit from .service-main; this block adds UL/OL card styles
   ============================================================ */

/* WP content H2: inherits from .service-main h2 (gold bar, separator) */
.service-wp-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* First paragraph after H2 — slightly larger */
.service-wp-content h2 + p {
  font-size: 1.05rem;
  color: var(--navy);
}

/* Unordered lists — card-style items */
.service-wp-content ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-wp-content ul li {
  position: relative;
  padding: 14px 16px 14px 40px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--navy);
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-wp-content ul li:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(201,168,76,0.1);
}
.service-wp-content ul li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 21px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* Ordered lists — step indicator style */
.service-wp-content ol {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  counter-reset: wp-step;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-wp-content ol li {
  counter-increment: wp-step;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text);
  position: relative;
  border-left: 3px solid var(--gold);
}
.service-wp-content ol li::before {
  content: counter(wp-step);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Visual separator for "Jak wygląda współpraca" type sections */
.service-wp-content h2 + p + ol {
  margin-top: 8px;
}

/* Strong text — navy accent */
.service-wp-content strong {
  color: var(--navy);
  font-weight: 600;
}

/* HR elements — decorative separator in WP content */
.service-wp-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  margin: 40px 0;
  opacity: 0.4;
}

/* Paragraphs after first — improved readability */
.service-wp-content p {
  max-width: 65ch;
}

/* SERVICE PAGE — Inline CTA (inside article for pages with WP content) */
.service-inline-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  margin: 36px 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-inline-cta:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.12);
}
.service-inline-cta__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
}
.service-inline-cta__text {
  flex: 1;
}
.service-inline-cta__text strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.service-inline-cta__text p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* SERVICE PAGE — Enrichment sections (below WP content on rich pages) */
.service-enrichment {
  margin-top: 12px;
  margin-bottom: 8px;
}

/* Responsive: stack lists on mobile */
@media (max-width: 768px) {
  .service-wp-content ul {
    grid-template-columns: 1fr;
  }
  .service-wp-content h2 {
    margin-top: 36px;
    padding-top: 24px;
  }
  .service-wp-content ol li {
    padding: 14px 16px;
  }
  .service-inline-cta {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .service-inline-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* SERVICE PAGE — Sidebar photo card */
.sidebar-card--photo {
  text-align: center;
  padding: 24px;
}
.sidebar-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold);
  margin-bottom: 16px;
}
.sidebar-card--photo h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.sidebar-card--photo p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* SERVICE PAGE — Numbers / Trust cards */
.svc-numbers {
  padding: 56px 0;
  background: linear-gradient(160deg, var(--navy) 0%, #162440 50%, #1d3050 100%);
}
.svc-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.svc-numbers__card {
  text-align: center;
  padding: 40px 24px 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  transition: background 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.svc-numbers__card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.svc-numbers__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  color: var(--gold-light);
  transition: background 0.3s, transform 0.3s;
}
.svc-numbers__card:hover .svc-numbers__icon {
  background: rgba(201,168,76,0.18);
  transform: scale(1.08);
}
.svc-numbers__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 10px;
}
.svc-numbers__label {
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.svc-numbers__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.svc-numbers__card[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.svc-numbers__card[data-animate]:nth-child(3) { transition-delay: 0.2s; }
.svc-numbers__card[data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* SERVICE PAGE — Reviews carousel */
.svc-reviews {
  background: var(--warm-bg);
}
.svc-reviews__carousel {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.svc-reviews__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.svc-reviews__slide {
  flex: 0 0 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}
.svc-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.svc-review-card:hover {
  box-shadow: 0 8px 32px rgba(27,42,74,0.1);
  border-color: var(--gold);
}
.svc-review-card__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.svc-review-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--body-color);
  font-style: italic;
  flex: 1;
  margin: 0 0 20px 0;
  border: none;
  padding: 0;
}
.svc-review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.svc-review-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.svc-review-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.svc-review-card__role {
  font-size: 12px;
  color: var(--text-muted, #6b7280);
  margin-top: 2px;
}
.svc-reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.svc-reviews__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.svc-reviews__btn:hover {
  background: var(--navy);
  color: var(--white);
}
.svc-reviews__btn--prev {
  transform: rotate(180deg);
}
.svc-reviews__dots {
  display: flex;
  gap: 8px;
}
.svc-reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.svc-reviews__dot--active {
  background: var(--gold);
  transform: scale(1.2);
}

/* SERVICE PAGE — Benefits grid 4 columns for 4 benefits */
.service-benefits-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* SERVICE PAGE — Benefit card stagger */
.service-benefit-card[data-animate]:nth-child(2) { transition-delay: 0.08s; }
.service-benefit-card[data-animate]:nth-child(3) { transition-delay: 0.16s; }
.service-benefit-card[data-animate]:nth-child(4) { transition-delay: 0.24s; }

/* SERVICE PAGE — Responsive */
@media (max-width: 1024px) {
  .service-benefits-grid,
  .service-benefits-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .svc-numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-reviews__slide { flex: 0 0 50%; }
}
@media (max-width: 768px) {
  .service-hero { min-height: 400px; }
  .service-hero__content { padding: 48px 20px; }
  .service-hero__trust { gap: 16px; }
  .service-hero__trust-item { font-size: 12px; }
  .service-checklist-visual { grid-template-columns: 1fr; }
  .service-benefits-grid { grid-template-columns: 1fr; }
  .svc-numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-numbers__card { padding: 24px 16px; }
  .svc-reviews__slide { flex: 0 0 100%; }
  .service-main h2 { margin-top: 36px; padding-top: 24px; }
}
@media (max-width: 480px) {
  .svc-numbers__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-numbers__card { padding: 20px 12px; }
  .svc-numbers__value { font-size: 1.8rem; }
}

/* ============================================================
   GOOGLE REVIEWS BADGE — Reusable Component
   ============================================================ */
.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px 8px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.google-reviews-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.google-reviews-badge__link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.google-reviews-badge__g {
  flex-shrink: 0;
}
.google-reviews-badge__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.google-reviews-badge__score {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.google-reviews-badge__stars {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.google-reviews-badge__text {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1;
  margin-top: 1px;
}
.google-reviews-badge__write {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.google-reviews-badge__write:hover {
  background: var(--gold);
  color: var(--white);
}
/* Light variant for dark backgrounds */
.google-reviews-badge--light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.google-reviews-badge--light .google-reviews-badge__score {
  color: var(--white);
}
.google-reviews-badge--light .google-reviews-badge__text {
  color: rgba(255,255,255,0.7);
}
.google-reviews-badge--light .google-reviews-badge__write {
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.5);
}
.google-reviews-badge--light .google-reviews-badge__write:hover {
  background: var(--gold);
  color: var(--white);
}
/* Google badge centered container */
.google-reviews-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
@media (max-width: 520px) {
  .google-reviews-badge {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 12px 16px;
    gap: 10px;
  }
  .google-reviews-badge__write {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   NAV DROPDOWN — Usługi submenu
   ============================================================ */
.nav-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-has-dropdown > a .dn-icon {
  transition: transform 0.2s;
}
.nav-has-dropdown:hover > a .dn-icon {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 100;
  padding-top: 6px;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 420px;
}
/* Single-column dropdown (e.g. "Dla kogo") — auto-shrink */
.nav-dropdown__inner:has(.nav-dropdown__col:only-child) {
  grid-template-columns: 1fr;
  min-width: auto;
}
.nav-dropdown__heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.nav-dropdown__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 1px;
}
.nav-dropdown__link:hover {
  background: var(--warm-bg);
  color: var(--navy);
}
.nav-dropdown__link .dn-icon {
  color: var(--gold-dark);
}
.nav-dropdown__link:hover::after {
  display: none;
}
.nav-dropdown__divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.nav-dropdown__link--all {
  color: var(--gold-dark);
  font-weight: 600;
}
.nav-dropdown__link--all:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
}
.nav-dropdown--narrow .nav-dropdown__inner {
  grid-template-columns: 1fr;
  min-width: 260px;
  padding: 14px 16px;
}
.nav-dropdown--narrow .nav-dropdown__link {
  padding: 9px 12px;
  font-size: 15px;
  gap: 10px;
}

/* ============================================================
   CONTACT PAGE — Person card + File upload
   ============================================================ */
.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-person__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.contact-person__info strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
}
.contact-person__info span {
  font-size: 14px;
  color: var(--text-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}
.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 16px;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold-dark);
  width: 16px;
  height: 16px;
}
.form-consent a {
  color: var(--gold-dark);
  text-decoration: underline;
}
.form-consent a:hover {
  color: var(--navy);
}

/* File upload area */
.file-upload-area {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--warm-bg);
}
.file-upload-area:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.file-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.file-upload-content .dn-icon {
  color: var(--gold);
}
.file-upload-text {
  font-size: 14px;
  color: var(--text-light);
}
.file-upload-hint {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT PAGE — Improved layout
   ============================================================ */
.about-page-main {
  padding: 56px 32px;
  background: var(--warm-bg);
}
.about-page-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}
.about-page-photo {
  position: relative;
}
.about-page-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-page-photo__badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.about-page-role {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* About experience grid */
.about-experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.about-experience-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-expertise-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about-expertise-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-expertise-item .dn-icon {
  color: var(--gold-dark);
  margin-top: 2px;
  flex-shrink: 0;
}
.about-expertise-item strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}
.about-expertise-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* About contact form section */
.about-contact-section {
  background: var(--white);
}
.about-contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--warm-bg);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE — New sections
   ============================================================ */
@media (max-width: 1024px) {
  .nav-dropdown__inner { min-width: 340px; }
  .about-page-grid { grid-template-columns: 300px 1fr; gap: 40px; }
  .about-experience-grid { grid-template-columns: 1fr; }
  .about-experience-photo { order: -1; max-width: 500px; }
  .hero-photo-main { width: 260px; height: 320px; }
}
@media (max-width: 768px) {
  .nav-dropdown { display: none; }
  .about-page-grid { grid-template-columns: 1fr; }
  .about-page-photo { max-width: 300px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .about-contact-form-wrap { padding: 24px; }
  .contact-person { flex-direction: column; text-align: center; }
}

/* ─── Audience Pages — Expanded Sections ─── */

/* Stats Strip — enhanced */
.audience-stats-strip {
  background: var(--navy);
  padding: 28px 0;
}
.audience-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.audience-stat {
  position: relative;
}
.audience-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.audience-stat__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.audience-stat__label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* Audience intro text — premium */
.audience-intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.audience-intro-text p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text);
}

/* ========================================
   Intro Storytelling — photo + quote bubble + signature
   ======================================== */
.intro-storytelling {
  background: linear-gradient(135deg, #faf9f6 0%, #f5f0e8 50%, #faf9f6 100%);
  position: relative;
  overflow: hidden;
}
.intro-storytelling::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.intro-storytelling::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27,42,74,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.intro-story {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

/* Photo column */
.intro-story__photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.intro-story__photo-ring {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(from 0deg, var(--gold) 0%, var(--navy) 25%, var(--gold) 50%, var(--navy) 75%, var(--gold) 100%);
  box-shadow:
    0 8px 32px rgba(27,42,74,0.12),
    0 2px 8px rgba(201,168,76,0.15);
}

.intro-story__photo-ring-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}

.intro-story__photo {
  position: relative;
  z-index: 1;
  width: 248px;
  height: 248px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.intro-story__credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.intro-story__credential-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.intro-story__credential-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Content column — bubble + signature */
.intro-story__content-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 12px;
}

.intro-story__bubble {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow:
    0 4px 24px rgba(27,42,74,0.06),
    0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(201,168,76,0.12);
}

.intro-story__bubble-arrow {
  position: absolute;
  left: -18px;
  top: 48px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 18px solid #fff;
  filter: drop-shadow(-2px 0 2px rgba(27,42,74,0.04));
}

.intro-story__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  line-height: 1.8;
  color: var(--navy);
  font-style: italic;
  margin: 0;
  position: relative;
  padding-left: 0;
}
.intro-story__quote::before {
  content: '\201E';
  position: absolute;
  top: -24px;
  left: -8px;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.3;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
}
.intro-story__quote strong {
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
}

/* Signature */
.intro-story__signature-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 8px;
}

.intro-story__signature-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 8px;
  border-radius: 2px;
}

.intro-story__signature {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.intro-story__signature-role {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Trust points row */
.intro-story__trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  margin-top: 4px;
}

.intro-story__trust-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.intro-story__trust-point svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Responsive — intro storytelling */
@media (max-width: 860px) {
  .intro-story {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
  }
  .intro-story__photo-col {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
  }
  .intro-story__photo-ring {
    width: 180px;
    height: 180px;
  }
  .intro-story__photo {
    width: 168px;
    height: 168px;
  }
  .intro-story__bubble-arrow {
    display: none;
  }
  .intro-story__bubble {
    border-radius: 20px;
    padding: 28px 28px;
  }
  .intro-story__quote {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .intro-story__photo-col {
    flex-direction: column;
  }
  .intro-story__photo-ring {
    width: 160px;
    height: 160px;
  }
  .intro-story__photo {
    width: 148px;
    height: 148px;
  }
  .intro-story__bubble {
    padding: 24px 20px;
  }
  .intro-story__quote {
    font-size: 16px;
    line-height: 1.75;
  }
  .intro-story__signature {
    font-size: 19px;
  }
  .intro-story__trust-row {
    flex-direction: column;
    gap: 14px;
  }
}

/* Checklist Visual Grid — premium */
.checklist-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.checklist-visual-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.checklist-visual-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.checklist-visual-item .dn-icon {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Benefits Card Grid — premium */
.benefits-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  line-height: 1.6;
}
.benefit-card-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.benefit-card-item__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(39, 174, 96, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-card-item__icon .dn-icon {
  color: var(--success);
}

/* Concern Cards */
.concern-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.concern-card:hover {
  box-shadow: var(--shadow-sm);
}
.concern-card__question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.concern-card__question .dn-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.concern-card__answer {
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
  padding-left: 34px;
}

/* Audience page responsive */
@media (max-width: 1024px) {
  .checklist-visual-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .audience-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .audience-stat__number { font-size: 28px; }
  .checklist-visual-grid { grid-template-columns: 1fr; }
  .benefits-card-grid { grid-template-columns: 1fr; }
  .concern-card { padding: 20px; }
  .concern-card__answer { padding-left: 0; }
  .audience-intro-text p { font-size: 15px; }
}
@media (max-width: 480px) {
  .audience-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .audience-stats-strip { padding: 24px 0; }
}

/* ─── Before / After Section ─── */
.before-after { background: var(--warm-bg); padding: 56px 0; }
.ba-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}
.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ba-card--before { background: #FFF5F5; border: 2px solid #FFCDD2; }
.ba-card--after  { background: #F1F8E9; border: 2px solid #C8E6C9; }
.ba-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 15px;
}
.ba-card--before .ba-card__header { background: #FFCDD2; color: #B71C1C; }
.ba-card--after .ba-card__header  { background: #C8E6C9; color: #1B5E20; }
.ba-card__content { padding: 24px; }
.ba-card__content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 20px;
}
.ba-error {
  background: #FFCDD2;
  color: #C62828;
  padding: 1px 5px;
  border-radius: 3px;
  text-decoration: line-through;
  text-decoration-color: #E57373;
}
.ba-fix {
  background: #C8E6C9;
  color: #2E7D32;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 500;
}
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.ba-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ba-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}
.ba-stat--bad  { background: #FFCDD2; color: #C62828; }
.ba-stat--good { background: #C8E6C9; color: #2E7D32; }

@media (max-width: 768px) {
  .ba-comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ba-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

/* ─── Price Calculator v2 — Pill-based ─── */
.calculator-section { padding: 56px 0; background: var(--white); }
.calc-v2 { margin-top: 40px; }

/* Service pills */
.calc-v2__services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.calc-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: 'Inter', sans-serif;
}
.calc-pill:hover {
  border-color: var(--gold-light);
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.calc-pill--active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.15));
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.calc-pill .dn-icon { color: var(--gold); }
.calc-pill__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.calc-pill__price {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Body: slider + result */
.calc-v2__body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  background: var(--warm-bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

/* Slider */
.calc-v2__slider-wrap { display: flex; flex-direction: column; justify-content: center; }
.calc-v2__slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.calc-v2__pages-badge {
  background: var(--navy);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.calc-v2__range {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) 50%, #e0ddd8 50%, #e0ddd8 100%);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.calc-v2__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  cursor: grab;
  transition: transform 0.15s;
}
.calc-v2__range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calc-v2__range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  cursor: grab;
}
.calc-v2__slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}
.calc-v2__note-small {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Result card */
.calc-v2__result-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid var(--gold-light);
  text-align: center;
}
.calc-v2__result-top { margin-bottom: 4px; }
.calc-v2__result-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.calc-v2__result-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}
.calc-v2__result-time {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 8px;
}
.calc-v2__includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  text-align: left;
}
.calc-v2__include {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
}
.calc-v2__include .dn-icon { color: var(--success); flex-shrink: 0; }
.calc-v2__disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .calc-v2__services { grid-template-columns: repeat(3, 1fr); }
  .calc-v2__body { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .calc-v2__services { grid-template-columns: repeat(2, 1fr); }
  .calc-v2__body { padding: 24px 20px; }
  .calc-v2__result-amount { font-size: 36px; }
  .calc-v2__includes { grid-template-columns: 1fr; }
}

/* ─── Form Messages ─── */
.form-msg {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  margin-top: 16px;
}
.form-msg--success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}
.form-msg--error {
  background: #FFF3E0;
  color: #E65100;
  border: 1px solid #FFCC80;
}

/* ─── Legal / Privacy Page ─── */
.legal-content { padding: 60px 0 80px; }
.container--narrow { max-width: 800px; margin: 0 auto; }
.legal-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin: 40px 0 16px;
}
.legal-content p { margin-bottom: 16px; line-height: 1.8; }
.legal-content ul {
  margin: 0 0 20px 24px;
  list-style: disc;
}
.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-contact {
  margin-top: 48px;
  padding: 24px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.legal-contact p { margin: 0; }

/* ─── Credentials / Education ─── */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.credential-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: box-shadow var(--transition);
}
.credential-card:hover { box-shadow: var(--shadow-md); }
.credential-card__icon {
  color: var(--gold);
  margin-bottom: 12px;
}
.credential-card__year {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  background: var(--warm-bg);
  padding: 4px 12px;
  border-radius: 20px;
}
.credential-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.credential-card__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}
.credentials-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 40px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  text-align: center;
}
.credential-number__value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.credential-number__label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .credentials-grid { grid-template-columns: 1fr; }
  .credentials-numbers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .credentials-numbers { grid-template-columns: 1fr 1fr; padding: 24px; }
  .credential-number__value { font-size: 28px; }
}

/* ============================================================
   Free Sample Landing Page
   ============================================================ */

/* Hero */
.sample-hero {
  padding: calc(var(--header-h) + 40px) 0 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.sample-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.sample-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 20px;
}
.sample-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--white);
}
.sample-hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.sample-hero__desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.sample-hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sample-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.sample-benefit svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* Form Card */
.sample-hero__form-wrap {
  position: relative;
}
.sample-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  color: var(--text);
}
.sample-form-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sample-form-card__title svg {
  color: var(--gold);
}

/* Form elements (reuse existing .contact-form + additions) */
.sample-form .form-group { margin-bottom: 18px; }
.sample-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.sample-form .form-optional {
  font-weight: 400;
  color: var(--text-muted);
}
.sample-form input[type="text"],
.sample-form input[type="email"],
.sample-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--warm-bg);
  transition: var(--transition);
}
.sample-form input:focus,
.sample-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}
.sample-form textarea { resize: vertical; min-height: 80px; }

/* File Upload */
.file-upload-area { position: relative; }
.file-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  border: 2px dashed rgba(201,168,76,0.4);
  border-radius: var(--radius);
  background: rgba(201,168,76,0.04);
  text-align: center;
  transition: var(--transition);
}
.file-upload-area:hover .file-upload-content,
.file-upload-input:focus + .file-upload-content {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.file-upload-content svg { color: var(--gold); }
.file-upload-text {
  font-size: 14px;
  color: var(--text);
}
.file-upload-hint {
  font-size: 12px;
  color: var(--text-muted);
}

/* Submit & Disclaimer */
.sample-form .btn--full { width: 100%; justify-content: center; }
.sample-form .form-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}
.sample-form .form-disclaimer svg { color: var(--success); flex-shrink: 0; }

/* Steps section (sample-specific overrides) */
.sample-steps .section-header { text-align: center; margin-bottom: 48px; }
.sample-steps h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy);
}

/* Social proof mini */
.sample-proof .section-header { text-align: center; margin-bottom: 8px; }
.sample-proof h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy);
}
/* Override testimonial colors for light background */
.sample-proof .testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27,42,74,0.06);
}
.sample-proof .testimonial-card:hover {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(27,42,74,0.1);
  border-color: var(--gold);
}
.sample-proof .testimonial-text {
  color: var(--body-color);
}
.sample-proof .testimonial-name {
  color: var(--navy);
}
.sample-proof .testimonial-role {
  color: var(--text-muted, #6b7280);
}
.sample-proof .testimonial-stars {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
  .sample-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sample-hero {
    padding: 60px 0 48px;
  }
  .sample-hero h1 { font-size: 34px; }
}
@media (max-width: 600px) {
  .sample-hero { padding: calc(var(--header-h) + 24px) 0 36px; }
  .sample-hero h1 { font-size: 28px; }
  .sample-hero__desc { font-size: 15px; }
  .sample-form-card { padding: 24px 20px; }
  .sample-form-card__title { font-size: 19px; }
  .file-upload-content { padding: 20px 16px; }
}

/* ============================================================
   Testimonials / Opinie Page
   ============================================================ */

/* Hero */
.opinie-hero {
  padding: calc(var(--header-h) + 40px) 0 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
}
.opinie-hero .section-label {
  color: var(--gold);
}
.opinie-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  margin: 16px 0;
  color: var(--white);
}
.opinie-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.opinie-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.opinie-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opinie-stat__value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.opinie-stat__label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Filters */
.opinie-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.opinie-filter {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.opinie-filter:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.opinie-filter--active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Grid */
.opinie-main {
  padding: 60px 0 40px;
  background: var(--warm-bg);
}
.opinie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.opinie-card {
  transition: var(--transition);
}
.opinie-card[data-hidden="true"] {
  display: none;
}

/* Override testimonial card colors for light background on Opinie page */
.opinie-main .testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.opinie-main .testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.opinie-main .testimonial-quote { color: var(--gold); opacity: 0.4; }
.opinie-main .testimonial-stars { color: var(--gold); }
.opinie-main .testimonial-text {
  color: var(--text);
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
}
.opinie-main .testimonial-name { color: var(--navy); }
.opinie-main .testimonial-role { color: var(--text-muted); }

/* CTA */
.opinie-cta {
  padding: 60px 0;
  background: var(--white);
}
.opinie-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 12px;
}
.opinie-cta__desc {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .opinie-grid { grid-template-columns: repeat(2, 1fr); }
  .opinie-hero h1 { font-size: 36px; }
  .opinie-hero__stats { gap: 32px; }
}
@media (max-width: 600px) {
  .opinie-hero { padding: calc(var(--header-h) + 24px) 0 36px; }
  .opinie-hero h1 { font-size: 28px; }
  .opinie-grid { grid-template-columns: 1fr; }
  .opinie-stat__value { font-size: 28px; }
  .opinie-hero__stats { gap: 24px; }
}

/* ============================================================
   Bottom CTA Strip — consistent across all subpages
   ============================================================ */
.bottom-cta-strip {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.bottom-cta-strip__inner {
  text-align: center;
}
.bottom-cta-strip__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.bottom-cta-strip__text p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
.bottom-cta-strip__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.bottom-cta-strip__trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.bottom-cta-strip__trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.bottom-cta-strip__trust .dn-icon {
  color: var(--gold);
}
@media (max-width: 600px) {
  .bottom-cta-strip { padding: 40px 0; }
  .bottom-cta-strip__text h2 { font-size: 26px; }
  .bottom-cta-strip__trust { flex-direction: column; align-items: center; gap: 8px; }
}

/* ============================================================
   Quick Quote Strip — inline CTA with mini form
   ============================================================ */
.quick-quote-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, #d4b35a 100%);
  color: var(--white);
}
.quick-quote__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.quick-quote__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.quick-quote__text p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.quick-quote__form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.quick-quote__form input[type="email"],
.quick-quote__form input[type="text"],
.quick-quote__form select {
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  flex: 1;
  min-width: 140px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.quick-quote__form input::placeholder,
.quick-quote__form select { color: rgba(255,255,255,0.7); }
.quick-quote__form select option { color: var(--text); background: var(--white); }
.quick-quote__form input:focus,
.quick-quote__form select:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255,255,255,0.25);
}
.quick-quote__form .btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .quick-quote__inner { grid-template-columns: 1fr; gap: 20px; }
  .quick-quote__form { flex-direction: column; }
  .quick-quote__form input, .quick-quote__form select { width: 100%; min-width: 0; }
  .quick-quote__form .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Mini Case Study — success numbers grid
   ============================================================ */
.case-study-mini { background: var(--warm-bg); }
.case-study-mini__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.case-mini-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.case-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.case-mini-card__icon {
  color: var(--gold);
  margin-bottom: 12px;
}
.case-mini-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.case-mini-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  margin-top: 4px;
  margin-bottom: 10px;
}
.case-mini-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-light);
}
@media (max-width: 900px) {
  .case-study-mini__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .case-study-mini__grid { grid-template-columns: 1fr; }
  .case-mini-card__number { font-size: 28px; }
}

/* ─── Contact Page — New Hero ─── */
.contact-hero {
  background: linear-gradient(135deg, #2D4470 0%, var(--navy) 50%, #1a3355 100%);
  padding: calc(var(--header-h) + 40px) 0 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-hero__text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-hero__text h1 em {
  color: var(--gold);
  font-style: normal;
}
.contact-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.contact-hero__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.25);
}
.contact-hero__badge svg { color: var(--gold); }
.contact-hero__person {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 20px;
  backdrop-filter: blur(4px);
}
.contact-hero__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.contact-hero__person strong {
  display: block;
  font-size: 15px;
  color: var(--white);
}
.contact-hero__person span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ─── Contact Calculator Section ─── */
.contact-calc-section {
  padding: 40px 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.contact-calc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-calc-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-calc-card__header svg { color: var(--gold-dark); }
.contact-calc-card__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.contact-calc-card .calc-v2__services--row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.contact-calc-card__note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.contact-calc-card__note svg { flex-shrink: 0; color: var(--text-muted); }

/* ─── Contact Info Column ─── */
.contact-info-col .contact-heading {
  font-size: 20px;
  margin-bottom: 20px;
}

/* ─── Contact Testimonial Mini ─── */
.contact-testimonial {
  margin-top: 24px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.contact-testimonial p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin: 8px 0;
}
.contact-testimonial__author {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.contact-testimonial__author strong {
  color: var(--navy);
}

@media (max-width: 768px) {
  .contact-hero__inner { flex-direction: column; align-items: flex-start; }
  .contact-hero__person { width: 100%; }
  .contact-calc-card .calc-v2__services--row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contact-hero { padding: calc(var(--header-h) + 24px) 0 36px; }
  .contact-hero__badges { gap: 8px; }
  .contact-hero__badge { font-size: 12px; padding: 5px 10px; }
  .contact-calc-card { padding: 20px; }
  .contact-calc-card .calc-v2__services--row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── About Page — New Hero ─── */
.about-hero {
  padding: calc(var(--header-h) + 40px) 0 56px;
  background: var(--warm-bg);
}
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-hero__photo-frame {
  position: relative;
}
.about-hero__photo-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-hero__photo-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 22px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.about-hero__text-col h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}
.about-hero__text-col h1 em {
  font-style: normal;
  font-weight: 400;
  font-size: 0.75em;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}
.about-hero__role {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.about-hero__role svg { color: var(--gold-dark); }
.about-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}
.about-hero__stats {
  display: flex;
  gap: 32px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-hero__stat { text-align: center; }
.about-hero__stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.about-hero__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ─── About Process Steps ─── */
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-process-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-process-step__number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}
.about-process-step__icon {
  margin-bottom: 12px;
  color: var(--navy);
}
.about-process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.about-process-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}

/* responsive about */
@media (max-width: 1024px) {
  .about-hero__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-process-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-hero__grid { grid-template-columns: 1fr; }
  .about-hero__photo-frame { max-width: 360px; margin: 0 auto; }
  .about-hero__stats { gap: 20px; justify-content: center; }
  .about-hero__cta { justify-content: center; }
  .about-process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .about-process-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-hero__stats {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 0;
    margin: 20px 0;
  }
  .about-hero__stat { flex: 1; text-align: center; min-width: 0; }
  .about-hero__stat-value { font-size: 22px; }
  .about-hero__stat-label { font-size: 10px; letter-spacing: 0.02em; }
}

/* ============================================================
   CAREER PATH — Flowing timeline, all visible, no clicks needed
   ============================================================ */
.path-flow {
  margin-top: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Vertical golden line */
.path-flow::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark), var(--orange-cta));
  border-radius: 3px;
}

/* Each row: year on left, card on right */
.path-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  padding-bottom: 6px;
}
.path-row:last-child { padding-bottom: 0; }

/* Year bubble */
.path-year {
  flex-shrink: 0;
  width: 104px;
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
  position: relative;
}
.path-year span {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-dark);
  background: var(--white);
  border: 2px solid var(--gold);
  padding: 5px 14px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.path-year--now span {
  background: var(--orange-cta);
  border-color: var(--orange-cta);
  color: var(--white);
  animation: pathPulseNow 2.5s ease-in-out infinite;
}
@keyframes pathPulseNow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,93,38,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(232,93,38,0); }
}

/* Card */
.path-card {
  flex: 1;
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.path-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.path-card--now {
  border-color: var(--orange-cta);
  border-width: 2px;
  background: linear-gradient(135deg, #fffaf7, var(--white));
}

.path-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border-radius: 14px;
  color: var(--gold-dark);
}
.path-card--now .path-card__icon {
  background: linear-gradient(135deg, rgba(232,93,38,0.1), rgba(232,93,38,0.03));
  color: var(--orange-cta);
}

.path-card__body { flex: 1; min-width: 0; }

.path-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.path-card__badge--accent {
  color: var(--orange-cta);
  background: rgba(232,93,38,0.1);
}

.path-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
.path-card__body p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 10px;
}
.path-card__body p strong {
  color: var(--navy);
  font-weight: 700;
}

.path-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.07);
  padding: 5px 12px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.path-card__tag .dn-icon { color: var(--gold); flex-shrink: 0; }

/* Scroll animation stagger */
.path-row[data-animate]:nth-child(2) { transition-delay: 0.06s; }
.path-row[data-animate]:nth-child(3) { transition-delay: 0.12s; }
.path-row[data-animate]:nth-child(4) { transition-delay: 0.18s; }
.path-row[data-animate]:nth-child(5) { transition-delay: 0.24s; }
.path-row[data-animate]:nth-child(6) { transition-delay: 0.30s; }
.path-row[data-animate]:nth-child(7) { transition-delay: 0.36s; }

/* ─── Path responsive ─── */
@media (max-width: 768px) {
  .path-flow::before { left: 32px; }
  .path-year { width: 64px; }
  .path-year span { font-size: 12px; padding: 4px 10px; }
  .path-card { flex-direction: column; gap: 12px; padding: 18px 16px; }
  .path-card__icon { width: 40px; height: 40px; }
  .path-card__body h3 { font-size: 17px; }
}
@media (max-width: 480px) {
  .path-flow::before { display: none; }
  .path-row { flex-direction: column; gap: 0; }
  .path-year { width: auto; padding-top: 0; justify-content: flex-start; margin-bottom: 8px; }
  .path-card { padding: 16px 14px; }
  .path-card__body p { font-size: 13.5px; }
}

/* ============================================================
   MID-PAGE CTA — prominent, dark, persuasive
   ============================================================ */
.about-mid-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #243554 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.about-mid-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.about-mid-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.about-mid-cta__inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.about-mid-cta__inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}
.about-mid-cta__inner p strong {
  color: var(--gold-light);
}
.about-mid-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   ENHANCED SCROLL ANIMATIONS for About page
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about-process-step[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.about-process-step[data-animate]:nth-child(3) { transition-delay: 0.2s; }
.about-process-step[data-animate]:nth-child(4) { transition-delay: 0.3s; }

.testimonial-card[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card[data-animate]:nth-child(3) { transition-delay: 0.2s; }
.testimonial-card[data-animate]:nth-child(4) { transition-delay: 0.3s; }
.testimonial-card[data-animate]:nth-child(5) { transition-delay: 0.4s; }
.testimonial-card[data-animate]:nth-child(6) { transition-delay: 0.5s; }

.value-card[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.value-card[data-animate]:nth-child(3) { transition-delay: 0.2s; }
.value-card[data-animate]:nth-child(4) { transition-delay: 0.3s; }

.about-expertise-item[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.about-expertise-item[data-animate]:nth-child(3) { transition-delay: 0.2s; }
.about-expertise-item[data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* Audience page stagger delays */
.service-card[data-animate]:nth-child(2) { transition-delay: 0.08s; }
.service-card[data-animate]:nth-child(3) { transition-delay: 0.16s; }
.service-card[data-animate]:nth-child(4) { transition-delay: 0.24s; }
.service-card[data-animate]:nth-child(5) { transition-delay: 0.32s; }

.checklist-visual-item[data-animate]:nth-child(2) { transition-delay: 0.04s; }
.checklist-visual-item[data-animate]:nth-child(3) { transition-delay: 0.08s; }
.checklist-visual-item[data-animate]:nth-child(4) { transition-delay: 0.12s; }
.checklist-visual-item[data-animate]:nth-child(5) { transition-delay: 0.16s; }
.checklist-visual-item[data-animate]:nth-child(6) { transition-delay: 0.20s; }
.checklist-visual-item[data-animate]:nth-child(7) { transition-delay: 0.24s; }
.checklist-visual-item[data-animate]:nth-child(8) { transition-delay: 0.28s; }
.checklist-visual-item[data-animate]:nth-child(9) { transition-delay: 0.32s; }
.checklist-visual-item[data-animate]:nth-child(10) { transition-delay: 0.36s; }
.checklist-visual-item[data-animate]:nth-child(11) { transition-delay: 0.40s; }
.checklist-visual-item[data-animate]:nth-child(12) { transition-delay: 0.44s; }

.benefit-card-item[data-animate]:nth-child(2) { transition-delay: 0.06s; }
.benefit-card-item[data-animate]:nth-child(3) { transition-delay: 0.12s; }
.benefit-card-item[data-animate]:nth-child(4) { transition-delay: 0.18s; }
.benefit-card-item[data-animate]:nth-child(5) { transition-delay: 0.24s; }
.benefit-card-item[data-animate]:nth-child(6) { transition-delay: 0.30s; }
.benefit-card-item[data-animate]:nth-child(7) { transition-delay: 0.36s; }
.benefit-card-item[data-animate]:nth-child(8) { transition-delay: 0.42s; }

.concern-card[data-animate]:nth-child(2) { transition-delay: 0.08s; }
.concern-card[data-animate]:nth-child(3) { transition-delay: 0.16s; }
.concern-card[data-animate]:nth-child(4) { transition-delay: 0.24s; }
.concern-card[data-animate]:nth-child(5) { transition-delay: 0.32s; }

.audience-testimonial-card[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.audience-testimonial-card[data-animate]:nth-child(3) { transition-delay: 0.2s; }

.case-mini-card[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.case-mini-card[data-animate]:nth-child(3) { transition-delay: 0.2s; }
.case-mini-card[data-animate]:nth-child(4) { transition-delay: 0.3s; }

.process-step[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.process-step[data-animate]:nth-child(3) { transition-delay: 0.2s; }
.process-step[data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   TABLE OF CONTENTS (TOC) WIDGET
   ============================================================ */
.toc-widget {
  background: var(--warm-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0 40px;
}
.toc-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.toc-widget__title {
  font-size: 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy) !important;
}
.toc-widget__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.toc-widget__toggle[aria-expanded="false"] {
  transform: rotate(-90deg);
}
.toc-widget__list {
  margin: 0 !important;
  padding-left: 20px !important;
  counter-reset: toc;
  list-style: none !important;
}
.toc-widget__list li {
  position: relative;
  counter-increment: toc;
  margin-bottom: 8px;
}
.toc-widget__list li::before {
  content: counter(toc) ".";
  position: absolute;
  left: -20px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
}
.toc-widget__list a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.2s;
  display: inline-block;
}
.toc-widget__list a:hover,
.toc-widget__list a.toc-active {
  color: var(--gold-dark);
  font-weight: 600;
}
.toc-widget.collapsed .toc-widget__list {
  display: none;
}

/* ============================================================
   INLINE CTA BOX (inside article content)
   ============================================================ */
.inline-cta-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #FAF8F5 0%, #F3EDE4 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange-cta);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 40px 0;
}
.inline-cta-box__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--orange-cta);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inline-cta-box__content {
  flex: 1;
}
.inline-cta-box__content strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}
.inline-cta-box__content p {
  font-size: 14px !important;
  color: var(--text-light) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}
.inline-cta-box .btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .inline-cta-box {
    flex-direction: column;
    text-align: center;
  }
  .inline-cta-box .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SOCIAL SHARING
   ============================================================ */
.social-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  margin: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-share__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-right: 4px;
}
.social-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.social-share__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.social-share__btn--fb:hover {
  background: #1877F2;
  color: var(--white);
  border-color: #1877F2;
}
.social-share__btn--li:hover {
  background: #0A66C2;
  color: var(--white);
  border-color: #0A66C2;
}
.social-share__btn--copy:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.social-share__btn--copy.copied {
  background: var(--success);
  color: var(--white);
  border-color: var(--success);
}

/* ============================================================
   AUTHOR BOX (bottom of article)
   ============================================================ */
.author-box-bottom {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  margin: 40px 0 0;
  background: var(--warm-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.author-box-bottom__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.author-box-bottom__name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 2px;
}
.author-box-bottom__role {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.author-box-bottom__bio {
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
@media (max-width: 600px) {
  .author-box-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   BLOG CARD IMAGE FIX — consistent aspect ratio
   ============================================================ */
.blog-card-img {
  aspect-ratio: 16 / 9;
  height: auto;
}
.blog-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

/* ============================================================
   FRONT PAGE — New sections
   ============================================================ */

/* Service card price tag */
.service-card__price {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

/* Audience nav section */
.audience-nav-section {
  padding: 56px 0;
  background: var(--warm-bg);
}
.audience-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.audience-nav-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.audience-nav-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.audience-nav-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}
.audience-nav-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.audience-nav-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.audience-nav-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap 0.2s ease;
}
.audience-nav-card:hover .audience-nav-card__link {
  gap: 10px;
}

/* Front-page mid CTA — seamless warm style */
.fp-mid-cta {
  padding: 48px 0;
}
.fp-mid-cta__inner {
  background: linear-gradient(135deg, var(--warm-bg) 0%, var(--cream) 50%, var(--warm-bg-alt) 100%);
  text-align: center;
  padding: 48px 40px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.18);
  position: relative;
  overflow: hidden;
}
.fp-mid-cta__inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.fp-mid-cta__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(27,42,74,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--navy);
}
.fp-mid-cta__inner h2 {
  color: var(--navy);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 12px;
}
.fp-mid-cta__inner p {
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.fp-mid-cta__note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Front-page FAQ */
.fp-faq {
  padding: 56px 0;
  background: var(--warm-bg);
}
.fp-faq__list {
  max-width: 800px;
  margin: 48px auto 0;
}
.fp-faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.fp-faq__item:hover {
  box-shadow: var(--shadow-sm);
}
.fp-faq__item[open] {
  box-shadow: var(--shadow-md);
}
.fp-faq__question {
  padding: 20px 24px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.fp-faq__question::-webkit-details-marker {
  display: none;
}
.fp-faq__toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: transform 0.3s ease, background 0.3s ease;
}
.fp-faq__item[open] .fp-faq__toggle {
  transform: rotate(90deg);
  background: var(--gold);
  color: var(--white);
}
.fp-faq__answer {
  padding: 0 24px 20px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}
.fp-faq__answer strong {
  color: var(--navy);
}

/* Front-page bottom CTA — full-width band, not boxed */
.fp-bottom-cta {
  padding: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1d3050 100%);
}
.fp-bottom-cta__inner {
  background: none;
  color: var(--white);
  text-align: center;
  padding: 48px 32px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.fp-bottom-cta__inner::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.fp-bottom-cta__inner::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232,93,38,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.fp-bottom-cta__inner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.fp-bottom-cta__inner p {
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}
.fp-bottom-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Stagger animations for service cards */
.service-card[data-animate]:nth-child(2) { transition-delay: 0.08s; }
.service-card[data-animate]:nth-child(3) { transition-delay: 0.16s; }
.service-card[data-animate]:nth-child(4) { transition-delay: 0.24s; }
.service-card[data-animate]:nth-child(5) { transition-delay: 0.32s; }
.service-card[data-animate]:nth-child(6) { transition-delay: 0.40s; }

/* Stagger animations for audience nav */
.audience-nav-card[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.audience-nav-card[data-animate]:nth-child(3) { transition-delay: 0.2s; }
.audience-nav-card[data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* Stagger for process steps */
.step[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.step[data-animate]:nth-child(3) { transition-delay: 0.2s; }
.step[data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* Stagger for testimonial cards */
.testimonials .testimonial-card[data-animate]:nth-child(2) { transition-delay: 0.08s; }
.testimonials .testimonial-card[data-animate]:nth-child(3) { transition-delay: 0.16s; }
.testimonials .testimonial-card[data-animate]:nth-child(4) { transition-delay: 0.24s; }
.testimonials .testimonial-card[data-animate]:nth-child(5) { transition-delay: 0.32s; }
.testimonials .testimonial-card[data-animate]:nth-child(6) { transition-delay: 0.40s; }

/* Stagger for FAQ items */
.fp-faq__item[data-animate]:nth-child(2) { transition-delay: 0.06s; }
.fp-faq__item[data-animate]:nth-child(3) { transition-delay: 0.12s; }
.fp-faq__item[data-animate]:nth-child(4) { transition-delay: 0.18s; }
.fp-faq__item[data-animate]:nth-child(5) { transition-delay: 0.24s; }
.fp-faq__item[data-animate]:nth-child(6) { transition-delay: 0.30s; }
.fp-faq__item[data-animate]:nth-child(7) { transition-delay: 0.36s; }

/* Stagger for highlight items */
.highlight-item[data-animate]:nth-child(2) { transition-delay: 0.08s; }
.highlight-item[data-animate]:nth-child(3) { transition-delay: 0.16s; }
.highlight-item[data-animate]:nth-child(4) { transition-delay: 0.24s; }

/* Blog card stagger */
.blog-card[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.blog-card[data-animate]:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   FRONT PAGE — Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .audience-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-trust-row {
    gap: 12px;
    font-size: 13px;
  }
  .audience-nav-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .audience-nav-card {
    padding: 24px 20px;
  }
  .fp-mid-cta__inner {
    padding: 48px 24px;
  }
  .fp-mid-cta__inner h2 {
    font-size: 22px;
  }
  .fp-bottom-cta__inner {
    padding: 48px 24px;
  }
  .fp-bottom-cta__inner h2 {
    font-size: 22px;
  }
  .fp-bottom-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .fp-faq__question {
    font-size: 1rem;
    padding: 16px 20px;
  }
  .fp-faq__answer {
    padding: 0 20px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-trust-row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .fp-mid-cta__inner {
    padding: 32px 20px;
    border-radius: var(--radius);
  }
  .fp-bottom-cta__inner {
    padding: 32px 20px;
    border-radius: var(--radius);
  }
  .audience-nav-card__icon {
    width: 52px;
    height: 52px;
  }
}
.blog-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   ENHANCED ARTICLE CONTENT STYLES
   ============================================================ */

/* Better styled lists inside articles */
.single-post-content ul li,
.single-post-content ol li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.single-post-content ul li::marker {
  color: var(--gold-dark);
}
.single-post-content ol li::marker {
  color: var(--gold-dark);
  font-weight: 700;
}

/* Strong text highlight */
.single-post-content > p > strong:only-child,
.single-post-content > p > strong:first-child:last-child {
  display: block;
  background: var(--warm-bg);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
}

/* Better links in content */
.single-post-content a:hover {
  color: var(--navy);
  text-decoration-color: var(--gold);
}

/* Smooth scroll for TOC links */
html {
  scroll-behavior: smooth;
}

/* H2 section anchors - offset for fixed header */
.single-post-content h2[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

/* Post tags styling */
.post-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.post-tags__label {
  font-size: 14px;
  color: var(--text-light);
}
.post-tags__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.post-tags__item {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  background: var(--warm-bg);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.post-tags__item:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════
   AUDIENCE PAGE ENHANCEMENTS
   ═══════════════════════════════════════════════════ */

/* Hero trust badges — premium */
.page-hero__trust-badges {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.page-hero__trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.page-hero__trust-badges .dn-icon {
  color: var(--gold);
}

/* Mid-page CTA */
.audience-mid-cta {
  padding: 0;
  margin: 0;
}
.audience-mid-cta__inner {
  background: linear-gradient(135deg, var(--navy) 0%, #243656 100%);
  color: var(--white);
  text-align: center;
  padding: 56px 40px;
  border-radius: 16px;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}
.audience-mid-cta__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.audience-mid-cta__inner h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--white);
}
.audience-mid-cta__inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials row on audience pages */
.audience-testimonials-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.audience-testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.audience-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.audience-testimonial-card .testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
}
.audience-testimonial-card .testimonial-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.audience-testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.audience-testimonial-card .testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.audience-testimonial-card .testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.audience-testimonial-card .testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

.audience-social-proof__more {
  text-align: center;
  margin-top: 32px;
}

/* Benefit card improvements */
.benefit-card-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Audience page responsive */
@media (max-width: 768px) {
  .page-hero__trust-badges {
    gap: 12px;
    font-size: 13px;
  }
  .audience-mid-cta__inner {
    padding: 40px 24px;
  }
  .audience-mid-cta__inner h2 {
    font-size: 22px;
  }
  .audience-testimonials-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .page-hero__trust-badges {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .audience-mid-cta__inner {
    padding: 32px 20px;
    border-radius: 12px;
  }
}

/* ============================================================
   OFFER PAGE — Comparison table, VS cards, pricing estimate
   ============================================================ */

/* Pricing card estimate */
.pricing-card__estimate {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-style: italic;
}

/* Comparison table */
.offer-comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(27,42,74,0.1);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.offer-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.offer-comparison-table thead {
  background: var(--navy);
  color: var(--white);
}
.offer-comparison-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.offer-comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(27,42,74,0.07);
  vertical-align: middle;
}
.offer-comparison-table tbody tr:hover {
  background: rgba(201,168,76,0.04);
}
.offer-comparison-table__highlight {
  background: rgba(201,168,76,0.06);
}
.offer-comparison-table__highlight td {
  border-bottom-color: rgba(201,168,76,0.15);
}
.offer-table-price {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  white-space: nowrap;
}
.offer-table-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.offer-table-footnote {
  text-align: center;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-secondary);
}
.offer-table-footnote a {
  color: var(--gold-dark);
  font-weight: 600;
}
.offer-table-footnote .dn-icon {
  vertical-align: -2px;
  margin-right: 4px;
  color: var(--gold);
}

/* VS comparison cards */
.offer-vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.offer-vs-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.offer-vs-card__header {
  padding: 32px 28px 20px;
  text-align: center;
  color: var(--white);
}
.offer-vs-card__header--korekta {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4570 100%);
}
.offer-vs-card__header--redakcja {
  background: linear-gradient(135deg, #8B6914 0%, var(--gold) 100%);
}
.offer-vs-card__header h3 {
  color: var(--white);
  margin: 12px 0 8px;
  font-size: 1.3rem;
}
.offer-vs-card__header .dn-icon {
  opacity: 0.8;
}
.offer-vs-card__price {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.95;
}
.offer-vs-card__list {
  list-style: none;
  padding: 24px 28px;
  margin: 0;
  flex: 1;
}
.offer-vs-card__list li {
  padding: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(27,42,74,0.06);
}
.offer-vs-card__list li:last-child {
  border-bottom: none;
}
.offer-vs-card__list .dn-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.offer-vs-card__ideal {
  padding: 0 28px 20px;
  font-size: 14px;
  color: var(--text-secondary);
}
.offer-vs-card .btn {
  margin: 0 28px 28px;
  width: calc(100% - 56px);
  text-align: center;
  justify-content: center;
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
}
.offer-vs-card .btn.btn-outline-dark {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.offer-vs-card .btn.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,42,74,0.2);
}
.offer-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.offer-vs-divider span {
  background: var(--navy);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.offer-vs-cta {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.offer-vs-cta p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Audience card tag */
.audience-card__tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* Table buttons — solid appearance */
.offer-comparison-table .btn {
  white-space: nowrap;
  border-radius: 8px;
  min-width: 100px;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  font-size: 13px;
  padding: 10px 18px;
}
.offer-comparison-table .btn-outline-dark {
  border-width: 2px;
}

/* Responsive — comparison table — redesigned mobile cards */
@media (max-width: 768px) {
  .offer-comparison-table thead { display: none; }
  .offer-comparison-table,
  .offer-comparison-table tbody,
  .offer-comparison-table tr,
  .offer-comparison-table td {
    display: block;
    width: 100%;
  }
  .offer-comparison-table tr {
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid rgba(27,42,74,0.08);
    border-radius: 0;
    overflow: hidden;
    background: var(--white);
    padding: 20px 0;
    position: relative;
  }
  .offer-comparison-table__highlight {
    background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(255,255,255,1) 100%);
    border-left: 3px solid var(--gold) !important;
    padding-left: 16px;
  }
  /* Usługa — big bold heading */
  .offer-comparison-table td:nth-child(1) {
    padding: 0 20px 8px;
    border-bottom: none;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
  }
  .offer-comparison-table td:nth-child(1)::before { display: none; }
  .offer-comparison-table td:nth-child(1) strong { font-weight: 700; }

  /* Cena — big accent number */
  .offer-comparison-table td:nth-child(2) {
    padding: 0 20px 12px;
    border-bottom: none;
  }
  .offer-comparison-table td:nth-child(2)::before { display: none; }
  .offer-comparison-table td:nth-child(2) .offer-table-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: -0.02em;
  }

  /* Czas + Zakres — inline row */
  .offer-comparison-table td:nth-child(3),
  .offer-comparison-table td:nth-child(4) {
    display: inline-block;
    width: auto;
    padding: 0 20px 4px;
    border-bottom: none;
    font-size: 13px;
    color: var(--text-secondary);
    vertical-align: top;
  }
  .offer-comparison-table td:nth-child(3)::before,
  .offer-comparison-table td:nth-child(4)::before {
    font-size: 10px;
    margin-bottom: 2px;
    color: var(--text-muted);
  }
  .offer-comparison-table td:nth-child(3) {
    padding-right: 12px;
    border-right: 1px solid var(--border);
    margin-right: 0;
  }
  .offer-comparison-table td:nth-child(4) {
    padding-left: 12px;
  }

  /* Button — full width */
  .offer-comparison-table td:last-child {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 20px 0;
    border-bottom: none;
  }
  .offer-comparison-table td:last-child .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
  }

  /* Badge "Popularna" inline */
  .offer-table-badge {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
  }

  /* VS cards */
  .offer-vs-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .offer-vs-divider {
    padding: 16px 0;
  }
  .offer-vs-divider span {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ============================================================
   SITEMAP PAGE — Visual sitemap
   ============================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sitemap-group {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  transition: box-shadow 0.2s;
}
.sitemap-group:hover {
  box-shadow: var(--shadow-lg);
}
.sitemap-group__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}
.sitemap-group__icon {
  width: 44px;
  height: 44px;
  background: var(--warm-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.sitemap-group__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0;
}
.sitemap-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-group__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(27,42,74,0.05);
}
.sitemap-group__list li:last-child {
  border-bottom: none;
}
.sitemap-group__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}
.sitemap-group__list a:hover {
  color: var(--gold-dark);
}
.sitemap-group__list .dn-icon {
  color: var(--gold);
  flex-shrink: 0;
}
.sitemap-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  white-space: nowrap;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sitemap-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LIGHTBOX — Simple image viewer for article content
   ============================================================ */
.dn-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.dn-lightbox--active {
  opacity: 1;
  visibility: visible;
}
.dn-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}
.dn-lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.dn-lightbox--active .dn-lightbox__img {
  transform: scale(1);
}
.dn-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}
.dn-lightbox__close:hover {
  background: rgba(255,255,255,0.3);
}

/* Content images — cursor hint */
.single-post-content a > img,
.single-post-content figure a > img {
  cursor: zoom-in;
}

/* ============================================================
   INLINE CTA BOX — Improved visibility
   ============================================================ */
.inline-cta-box .btn.btn-primary {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  background: var(--orange-cta);
  color: var(--white) !important;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(232,93,38,0.3);
  text-decoration: none;
  min-width: 160px;
  justify-content: center;
}
.inline-cta-box .btn.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 20px rgba(232,93,38,0.4);
  transform: translateY(-2px);
  color: var(--white) !important;
}
.inline-cta-box .btn.btn-primary svg {
  color: var(--white) !important;
}

/* ============================================================
   FRONT PAGE — Numbers Social Proof Strip
   ============================================================ */
.fp-numbers {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #243656 100%);
  color: var(--white);
}
.fp-numbers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}
.fp-numbers__item {
  position: relative;
  padding: 24px 16px;
}
.fp-numbers__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.fp-numbers__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 8px;
}
.fp-numbers__label {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.fp-numbers__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* Numbers stagger */
.fp-numbers__item[data-animate]:nth-child(2) { transition-delay: 0.12s; }
.fp-numbers__item[data-animate]:nth-child(3) { transition-delay: 0.24s; }
.fp-numbers__item[data-animate]:nth-child(4) { transition-delay: 0.36s; }
.fp-numbers__item[data-animate]:nth-child(5) { transition-delay: 0.48s; }

/* Social link in Numbers */
.fp-numbers__social-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fp-numbers__social-link:hover {
  opacity: 0.85;
}
.fp-numbers__item--social .dn-icon {
  fill: #1877F2;
  color: #1877F2;
  vertical-align: -2px;
  margin-right: 4px;
}
.fp-numbers__item--social .fp-numbers__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ============================================================
   FRONT PAGE — Guarantee / USP Cards
   ============================================================ */
.fp-guarantee {
  padding: 56px 0;
  background: var(--warm-bg);
}
.fp-guarantee__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fp-guarantee__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fp-guarantee__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.fp-guarantee__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-dark);
}
.fp-guarantee__card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.fp-guarantee__card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

/* Guarantee stagger */
.fp-guarantee__card[data-animate]:nth-child(2) { transition-delay: 0.08s; }
.fp-guarantee__card[data-animate]:nth-child(3) { transition-delay: 0.16s; }
.fp-guarantee__card[data-animate]:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   FRONT PAGE — Numbers & Guarantee Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .fp-numbers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fp-numbers__item:nth-child(3)::after,
  .fp-numbers__item:nth-child(5)::after {
    display: none;
  }
  .fp-guarantee__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .fp-numbers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .fp-numbers__item {
    padding: 16px 10px;
  }
  .fp-numbers__item::after {
    display: none !important;
  }
  /* Center last (5th) item across both columns */
  .fp-numbers__item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
  .fp-numbers__value {
    font-size: 1.75rem;
  }
  .fp-numbers__label {
    font-size: 14px;
  }
  .fp-numbers__desc {
    font-size: 12px;
  }
  .fp-numbers {
    padding: 32px 16px;
  }
  .fp-guarantee__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fp-guarantee__card {
    padding: 24px 20px;
  }
}

/* ═══════════════════════════════════════
   SOCIAL — Footer & Sidebar
   ═══════════════════════════════════════ */

/* Footer social links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social__link:hover {
  background: #1877F2;
  color: #fff;
  transform: translateY(-2px);
}
.footer-social__link .dn-icon {
  fill: currentColor;
}

/* Sidebar Facebook card */
.sidebar-card--fb {
  border: 1px solid #e4e6ea;
  background: #f7f8fa;
}
.sidebar-fb__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sidebar-fb__header .dn-icon {
  flex-shrink: 0;
  color: #1877F2;
  fill: #1877F2;
}
.sidebar-fb__header strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}
.sidebar-fb__count {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
}
.sidebar-fb__desc {
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 14px;
  line-height: 1.5;
}
.sidebar-fb__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1877F2;
  color: #fff !important;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  justify-content: center;
}
.sidebar-fb__btn:hover {
  background: #166fe5;
  transform: translateY(-1px);
}
.sidebar-fb__btn .dn-icon {
  color: #fff;
}

/* ============================================================
   CONCERNS PREMIUM INFOGRAPHIC — dark bg, hero+grid layout
   ============================================================ */
.concerns-infographic {
  padding: 64px 32px;
}

/* Hero concern — featured first item */
.concern-hero {
  position: relative;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 24px;
  padding: 48px 56px;
  margin-bottom: 32px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.concern-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.concern-hero__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 24px 0 0 24px;
}
.concern-hero__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  position: relative;
}
.concern-hero__number {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--navy-dark);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(201,168,76,0.3);
  letter-spacing: 0.5px;
}
.concern-hero__body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 14px;
}
.concern-hero__body p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 700px;
}

/* Grid of remaining concerns */
.concern-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.concern-card-premium {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.concern-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  border-color: rgba(201,168,76,0.2);
}
.concern-card-premium__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.concern-card-premium__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.concern-card-premium__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
}
.concern-card-premium__title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
.concern-card-premium__text {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Animation delays */
.concern-card-premium[data-animate]:nth-child(2) { transition-delay: 0.08s; }
.concern-card-premium[data-animate]:nth-child(3) { transition-delay: 0.16s; }
.concern-card-premium[data-animate]:nth-child(4) { transition-delay: 0.24s; }

/* Reassurance CTA bar */
.concern-reassurance {
  margin-top: 8px;
}
.concern-reassurance__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 32px 40px;
}
.concern-reassurance__inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  flex: 1;
}
.concern-reassurance__inner .btn {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .concern-hero { padding: 36px 32px; }
}
@media (max-width: 768px) {
  .concerns-infographic { padding: 72px 24px; }
  .concern-hero { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .concern-hero__icon { width: 60px; height: 60px; }
  .concern-cards-grid { grid-template-columns: 1fr; }
  .concern-card-premium { padding: 24px 20px; }
  .concern-reassurance__inner { flex-direction: column; text-align: center; padding: 28px 24px; gap: 20px; }
  .concern-reassurance__inner .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   DARK SECTION BACKGROUND — for premium sections
   ============================================================ */
.section-padded--dark {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-dark) 60%, #0a1628 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-padded--dark::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.section-padded--dark::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.section-header--light h2 { color: var(--white); }
.section-desc--light { color: rgba(255,255,255,0.65); }

/* ============================================================
   PREMIUM SERVICES SHOWCASE — Pozostałe usługi (luxury tier)
   ============================================================ */
.premium-services-showcase {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- Featured card (full-width hero) --- */
.premium-svc {
  position: relative;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease;
}
.premium-svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  color: inherit;
}
.premium-svc--featured {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,0.2);
}
.premium-svc--featured .premium-svc__content {
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr auto;
  gap: 0 32px;
  position: relative;
  z-index: 1;
}

/* Gradient accent strip */
.premium-svc__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  z-index: 2;
}
.premium-svc__gradient--gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
}
.premium-svc__gradient--navy {
  background: linear-gradient(180deg, #4A6FA5 0%, var(--navy) 100%);
}
.premium-svc__gradient--orange {
  background: linear-gradient(180deg, #F5A623 0%, var(--orange-cta) 100%);
}
.premium-svc__gradient--green {
  background: linear-gradient(180deg, #6FCF97 0%, #27AE60 100%);
}

/* Badge */
.premium-svc__badge {
  grid-column: 2;
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  width: fit-content;
}

/* Icon circle */
.premium-svc__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  grid-row: 1 / 5;
  align-self: start;
}
.premium-svc--featured .premium-svc__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
}

/* Typography */
.premium-svc h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 12px;
  grid-column: 2;
}
.premium-svc--card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.premium-svc__lead {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 600px;
  grid-column: 2;
}

/* Feature lists */
.premium-svc__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  grid-column: 2;
}
.premium-svc__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.premium-svc__features li .dn-icon {
  color: var(--gold);
  flex-shrink: 0;
}
.premium-svc__features--compact {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.premium-svc__features--compact li {
  font-size: 14px;
}

/* Bottom row — price + CTA */
.premium-svc__bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  grid-column: 2;
}
.premium-svc__price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.premium-svc__price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.premium-svc__price-unit {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.premium-svc__time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.premium-svc__time .dn-icon {
  color: rgba(255,255,255,0.4);
}

/* CTA button — featured */
.premium-svc__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-cta);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-left: auto;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.premium-svc--featured:hover .premium-svc__cta-btn {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,93,38,0.35);
}

/* CTA link — small cards */
.premium-svc__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 15px;
  margin-left: auto;
  transition: gap 0.25s ease, color 0.25s ease;
}
.premium-svc--card:hover .premium-svc__cta-link {
  gap: 14px;
  color: var(--white);
}

/* --- Cards row (3-column) --- */
.premium-services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.premium-svc--card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
}
.premium-svc--card .premium-svc__content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}
.premium-svc--card .premium-svc__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 20px;
}
.premium-svc--card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}
.premium-svc--card .premium-svc__bottom {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 12px;
}
.premium-svc--card .premium-svc__price-amount {
  font-size: 1.5rem;
}

/* --- Trust micro-bar --- */
.premium-services-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 28px 0 0;
  flex-wrap: wrap;
}
.premium-services-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.premium-services-trust span .dn-icon {
  color: var(--gold);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .premium-svc--featured .premium-svc__content {
    padding: 36px 32px;
    grid-template-columns: 1fr;
  }
  .premium-svc__badge,
  .premium-svc h3,
  .premium-svc__lead,
  .premium-svc__features,
  .premium-svc__bottom { grid-column: 1; }
  .premium-svc--featured .premium-svc__icon-wrap {
    grid-row: auto;
    margin-bottom: 16px;
  }
  .premium-svc__features { grid-template-columns: 1fr; }
  .premium-svc__cta-btn { margin-left: 0; margin-top: 8px; }
}
@media (max-width: 900px) {
  .premium-services-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .premium-svc--featured .premium-svc__content { padding: 28px 24px; }
  .premium-svc__cta-btn { width: 100%; justify-content: center; }
  .premium-services-trust { gap: 20px; }
  .premium-services-trust span { font-size: 12px; }
  .premium-svc--card .premium-svc__content { padding: 24px 20px; }
}

/* Animation delays for showcase cards */
.premium-svc--card[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.premium-svc--card[data-animate]:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   MOBILE RESPONSIVE FIXES — March 2026
   Wider content, bigger elements, less squeeze
   ============================================================ */

/* --- Front page hero: wider text, bigger font --- */
@media (max-width: 768px) {
  .hero__inner { gap: 24px; }
  .hero-text { max-width: 100%; }
  .hero h1 { font-size: 1.85rem; line-height: 1.2; }
  .hero-subtitle { font-size: 16px; line-height: 1.6; max-width: 100%; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .hero-subtitle { font-size: 15px; }
}

/* --- Google reviews badge: bigger on all screens --- */
.google-reviews-badge {
  padding: 10px 24px 10px 16px;
  gap: 14px;
}
.google-reviews-badge__score {
  font-size: 26px;
  font-weight: 800;
}
.google-reviews-badge__stars {
  font-size: 18px;
  letter-spacing: 1px;
}
.google-reviews-badge__text {
  font-size: 14px;
}
.google-reviews-badge__write {
  padding: 8px 18px;
  font-size: 13px;
}
@media (max-width: 520px) {
  .google-reviews-badge {
    padding: 16px 20px;
    gap: 12px;
    min-width: 260px;
  }
  .google-reviews-badge__score {
    font-size: 28px;
  }
  .google-reviews-badge__write {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* --- Offer page: pricing cards — 1 column on tablets --- */
@media (max-width: 900px) and (min-width: 481px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-card { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .pricing-grid { gap: 16px; }
}

/* --- Offer page: audience cards wider on mobile --- */
@media (max-width: 768px) {
  .audience-cards { gap: 16px; }
  .audience-card { padding: 28px 24px; }
  .audience-card__title { font-size: 18px; }
}
@media (max-width: 480px) {
  .audience-card { padding: 24px 20px; }
}

/* --- Offer page: comparison table comfortable on mobile --- */
@media (max-width: 768px) {
  .offer-comparison-table th,
  .offer-comparison-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* --- Offer page: service rows breathe on mobile --- */
@media (max-width: 768px) {
  .offer-service-row__body { padding: 28px 24px !important; }
  .offer-service-row__body h3 { font-size: 22px; }
}
@media (max-width: 480px) {
  .offer-service-row__body { padding: 24px 16px !important; }
}

/* --- Service pages: hero text wider --- */
@media (max-width: 768px) {
  .service-hero__content h1 { font-size: 1.75rem; }
  .service-hero__content p { font-size: 15px; line-height: 1.6; }
}

/* --- Blog listing: cards breathe --- */
@media (max-width: 480px) {
  .blog-card { padding: 20px 16px; }
  .blog-card__title { font-size: 18px; }
}

/* --- About page: stats row on small screens --- */
@media (max-width: 480px) {
  .about-hero__stats { gap: 16px; }
  .about-hero__stat-value { font-size: 2rem; }
}

/* --- All pages: section headers wider --- */
@media (max-width: 480px) {
  .section-header { padding-left: 0; padding-right: 0; }
  .section-header h2 { font-size: 1.4rem; }
  .section-desc { font-size: 14px; }
}

/* (footer mobile moved to full-bleed section below) */

/* ============================================================
   HEADER OVERLAP FIX — all pages must respect --header-h
   ============================================================ */
.page-hero--with-bg { padding-top: var(--header-h); }

/* ============================================================
   FULL-WIDTH MOBILE — edge-to-edge, zero wasted space
   Cards/forms bleed to screen edges via negative margins
   ============================================================ */

@media (max-width: 768px) {

  /* ── FULL-BLEED HELPER ──
     Cards inside .container (12px padding) get negative margins
     to stretch to screen edges. border-radius removed. */

  /* --- Forms: full screen width --- */
  .contact-form-wrap {
    padding: 28px 20px;
    border-radius: 0;
    margin-left: -12px;
    margin-right: -12px;
    border-left: none;
    border-right: none;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px;
    padding: 14px 16px;
  }
  .contact-form .form-group { margin-bottom: 16px; }

  /* --- Contact page --- */
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .contact-info-card {
    padding: 20px;
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* --- Pricing cards: full width --- */
  .pricing-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 28px 20px;
    border-left: none;
    border-right: none;
  }
  .pricing-card--popular {
    border-left: none;
    border-right: none;
  }

  /* --- FAQ section: full width --- */
  .faq-item {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0 !important;
  }
  .faq-item__question { padding: 18px 20px; font-size: 15px; }
  .faq-item__answer { padding: 0 20px 18px; font-size: 14px; line-height: 1.7; }

  /* --- Service cards: full width --- */
  .service-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 28px 20px;
  }

  /* --- Quick quote form: full width --- */
  .quick-quote {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 28px 20px;
  }
  .quick-quote__form { max-width: 100%; }

  /* --- Sidebar cards: full width --- */
  .sidebar-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 24px 20px;
  }

  /* --- Benefit cards --- */
  .benefit-card-item {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 24px 20px;
  }

  /* --- Process steps --- */
  .process-step {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 24px 20px;
  }

  /* --- Audience cards --- */
  .audience-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 24px 20px;
  }

  /* --- Testimonial / opinie cards --- */
  .opinie-card,
  .testimonial-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 24px 20px;
  }

  /* --- Offer page service rows --- */
  .offer-service-row {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
  }
  .offer-service-row__body { padding: 24px 20px !important; }

  /* --- Page hero content --- */
  .page-hero__content { padding: 24px 20px 32px; }

  /* --- Sample/free-sample page --- */
  .sample-form-wrap {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 24px 20px;
  }

  /* --- CTA form in footer --- */
  .cta-form-wrap {
    padding: 28px 20px;
    border-radius: 0;
  }

  /* --- Offer comparison table: full-bleed --- */
  .offer-comparison-table-wrap {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    overflow: visible;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  /* --- Offer VS cards: full-bleed --- */
  .offer-vs-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(27,42,74,0.1);
  }
  .offer-vs-card__list { padding: 20px 20px; }
  .offer-vs-card__ideal { padding: 0 20px 16px; }
  .offer-vs-card .btn { margin: 0 20px 24px; width: calc(100% - 40px); }
  .offer-vs-card__header { padding: 28px 20px 16px; }
  .offer-vs-cta {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 24px 20px;
  }

  /* --- Offer benefit cards: full-bleed --- */
  .offer-benefit {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 16px 20px;
  }

  /* --- Premium service cards: full-bleed --- */
  .premium-svc {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0 !important;
  }
  .premium-svc--featured {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0 !important;
  }

  /* --- Portfolio cards: full-bleed --- */
  .portfolio-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* --- Quick quote strip inner --- */
  .quick-quote__inner {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 24px 20px;
  }

  /* --- Career path cards --- */
  .path-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .path-flow {
    margin-left: -12px;
    margin-right: -12px;
  }

  /* --- About page sections: values, process --- */
  .about-process-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 24px 20px;
  }
  .values-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding: 24px 20px;
  }
}

/* Extra adjustments for small phones */
@media (max-width: 480px) {
  .contact-form-wrap { padding: 24px 16px; }
  .pricing-card { padding: 24px 16px; }
  .service-card { padding: 24px 16px; }
  .quick-quote { padding: 24px 16px; }
  .sidebar-card { padding: 20px 16px; }
  .benefit-card-item { padding: 20px 16px; }
  .audience-card { padding: 20px 16px; }
  .contact-info-card { padding: 16px; }
  .sample-form-wrap { padding: 20px 16px; }
  .cta-form-wrap { padding: 24px 16px; }
  .offer-service-row__body { padding: 20px 16px !important; }
  .path-card { padding: 16px 14px; }
  .about-process-card { padding: 20px 16px; }
  .values-card { padding: 20px 16px; }
  .offer-comparison-table td { padding: 10px 16px; }
  .offer-vs-card { padding: 20px 16px; }
  .offer-vs-cta { padding: 20px 16px; }
  .offer-benefit { padding: 14px 16px; }
  .premium-svc--featured .premium-svc__content { padding: 24px 16px; }
  .premium-svc--card .premium-svc__content { padding: 20px 16px; }
  .portfolio-card { margin-bottom: 16px; }
  .quick-quote__inner { padding: 20px 16px; }

  /* Footer */
  .footer-inner { padding: 28px 16px; }
}
