:root {
  --bg: #070B12;
  --bg-deep: #030509;
  --surface: #0E1520;
  --surface-soft: #121B29;
  --text: #F7F4EC;
  --soft: rgba(247,244,236,.78);
  --muted: rgba(247,244,236,.55);
  --line: rgba(247,244,236,.10);
  --accent: #F06030;
  --accent-2: #FF784A;
  --cream: #F3F1EA;
  --shadow: rgba(0,0,0,.42);
  --max: 1160px;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 72% -10%, rgba(240,96,48,.26), transparent 28rem),
    radial-gradient(circle at 20% 8%, rgba(255,255,255,.04), transparent 22rem),
    linear-gradient(180deg, #070B12 0%, #05080D 58%, #030509 100%);
  color: var(--text);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 48px, var(--max)); margin: 0 auto; }
.section { padding: 126px 0; }
.header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(7,11,18,.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; min-width: 168px; }
.brand-logo { display: block; width: 178px; height: auto; }
.nav { display: flex; align-items: center; gap: 24px; color: var(--soft); font-size: 14px; }
.nav a { opacity: .9; transition: color .2s ease, opacity .2s ease; }
.nav a:hover { color: var(--text); opacity: 1; }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #170803 !important;
  font-weight: 800;
  opacity: 1 !important;
}
.nav-toggle { display: none; background: none; border: 0; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; }
.hero { padding-top: 128px; padding-bottom: 118px; min-height: 86vh; display: flex; flex-direction: column; justify-content: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr); gap: 96px; align-items: center; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(38px, 4.55vw, 58px); line-height: 1.06; letter-spacing: -.05em; margin-bottom: 30px; max-width: 820px; }
.subhero h1 { font-size: clamp(42px, 5.2vw, 68px); max-width: 980px; }
h2 { font-size: clamp(30px, 3.7vw, 52px); line-height: 1.06; letter-spacing: -.048em; margin-bottom: 24px; }
h3 { font-size: 20px; letter-spacing: -.025em; margin-bottom: 10px; }
.lead { font-size: clamp(16px, 1.28vw, 18px); line-height: 1.55; color: var(--soft); max-width: 610px; margin-bottom: 16px; }
.muted { color: var(--muted); }
.microcopy { color: var(--muted); font-size: 13px; line-height: 1.5; margin-top: 16px; max-width: 590px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 12px 18px; border-radius: 999px; font-weight: 900; letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  border: 1px solid transparent;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--accent); color: #170803; box-shadow: 0 16px 42px rgba(240,96,48,.22); }
.button.primary:hover { background: var(--accent-2); }
.button.secondary { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.035); }
.button.secondary:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.065); }

.hero-photo-card {
  margin: 0;
  height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #05080D;
  box-shadow: 0 30px 80px var(--shadow);
  position: relative;
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 50%, rgba(240,96,48,.10), transparent 18rem), linear-gradient(90deg, rgba(7,11,18,.10), rgba(7,11,18,.30));
  pointer-events: none;
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
}

.visual-card {
  height: 520px; border: 1px solid var(--line); border-radius: var(--radius-xl);
  background: radial-gradient(circle at 58% 38%, rgba(240,96,48,.18), transparent 15rem), linear-gradient(145deg, #0B111B, #05070B 72%);
  box-shadow: 0 30px 80px var(--shadow); position: relative; overflow: hidden;
}
.orange-disc { position: absolute; width: 520px; height: 300px; right: -160px; top: -170px; border-radius: 50%; background: var(--accent); opacity: .96; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: rotate(-18deg); }
.orbit-a { width: 470px; height: 210px; top: 142px; left: 45px; }
.orbit-b { width: 340px; height: 150px; top: 178px; left: 110px; border-color: rgba(240,96,48,.24); }
.decision-point {
  position: absolute; width: 24px; height: 24px; top: 250px; left: 245px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 10px rgba(240,96,48,.14), 0 0 45px rgba(240,96,48,.8);
}
.signal-card {
  position: absolute; width: 190px; padding: 16px; border-radius: 18px;
  background: rgba(14,21,32,.88); border: 1px solid rgba(255,255,255,.09); backdrop-filter: blur(12px);
}
.signal-card span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 4px; }
.signal-card strong { font-size: 15px; }
.signal-1 { top: 84px; left: 52px; }
.signal-2 { top: 346px; right: 46px; }
.signal-3 { top: 108px; right: 70px; }
.hand-shape {
  position: absolute; width: 180px; height: 220px; bottom: -38px; left: 125px;
  background: linear-gradient(145deg, rgba(243,241,234,.24), rgba(243,241,234,.04));
  border-radius: 70px 70px 20px 20px; transform: rotate(-23deg); filter: blur(.2px); opacity: .58;
}
.benefit-strip {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--line);
}
.benefit-strip div { background: rgba(14,21,32,.72); padding: 28px 30px; }
.benefit-strip strong { display: block; font-size: 18px; letter-spacing: -.02em; margin-bottom: 4px; }
.benefit-strip span { color: var(--muted); font-size: 14px; }
.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 96px; align-items: center; }
.align-start { align-items: start; }
.section-copy { font-size: 19px; color: var(--soft); }
.section-copy p:last-child { margin-bottom: 0; }
.compact-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 64px; }
.point, .soft-card, .card {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px;
}
.point span, .review-list span { color: var(--accent); font-weight: 900; font-size: 13px; display: inline-block; margin-bottom: 12px; }
.step span { color: var(--accent); font-weight: 900; font-size: 13px; display: block; margin-bottom: 18px; letter-spacing: .04em; }
.step strong { display: block; font-size: 20px; line-height: 1.12; margin-bottom: 24px; }
.point strong { display: block; font-size: 19px; margin-bottom: 8px; }
.point p, .soft-card p, .card p, .step p, .review-list p { color: var(--muted); margin-bottom: 0; }
.soft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 66px; }
.review-panel {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px;
  padding: 64px; border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(240,96,48,.14), rgba(255,255,255,.035));
  border: 1px solid rgba(240,96,48,.24); box-shadow: 0 30px 80px rgba(0,0,0,.32);
}
.review-panel p { color: var(--soft); font-size: 18px; }
.outcome-box {
  margin: 24px 0 28px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(7,11,18,.56);
  border: 1px solid rgba(255,255,255,.10);
}
.outcome-box strong { display: block; margin-bottom: 7px; font-size: 18px; }
.outcome-box p { margin: 0; color: var(--muted); font-size: 16px; }
.review-list { display: grid; gap: 14px; }
.review-list div { padding: 20px; border-radius: var(--radius-md); background: rgba(7,11,18,.58); border: 1px solid var(--line); }
.review-list strong { display: block; margin-bottom: 6px; }
.centered { text-align: center; max-width: 860px; }
.centered p { color: var(--soft); font-size: 19px; }
.timeline { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; background: var(--line); }
.step {
  padding: 42px 38px;
  min-height: 230px;
  background:
    radial-gradient(circle at 72% 12%, rgba(240,96,48,.045), transparent 42%),
    linear-gradient(180deg, rgba(15,22,33,.92), rgba(10,15,24,.92));
}
.timeline .step:nth-child(1) {
  background:
    radial-gradient(circle at 72% 12%, rgba(240,96,48,.045), transparent 42%),
    linear-gradient(180deg, rgba(15,22,33,.92), rgba(10,15,24,.92));
}
.timeline .step:nth-child(2) {
  background:
    radial-gradient(circle at 72% 12%, rgba(240,96,48,.075), transparent 44%),
    linear-gradient(180deg, rgba(18,23,34,.93), rgba(11,16,25,.93));
}
.timeline .step:nth-child(3) {
  background:
    radial-gradient(circle at 72% 12%, rgba(240,96,48,.11), transparent 46%),
    linear-gradient(180deg, rgba(22,24,34,.94), rgba(12,16,25,.94));
}
.timeline .step:nth-child(4),
.timeline .step.step-strong {
  background:
    radial-gradient(circle at 72% 12%, rgba(240,96,48,.20), transparent 48%),
    linear-gradient(180deg, rgba(45,27,27,.94), rgba(14,18,28,.94));
}
.timeline .step + .step { box-shadow: inset 1px 0 0 rgba(255,255,255,.035); }
.cards-four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 66px; }
.card { padding: 24px; }
.card h3 { font-size: 18px; }

.logos-panel {
  background: var(--cream);
  color: #070B12;
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  gap: 30px;
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.logos-panel .eyebrow { color: #B63F1D; }
.logos-panel h2 { max-width: 780px; }
.logos-panel p { color: rgba(7,11,18,.72); max-width: 760px; font-size: 18px; }
.client-logos {
  width: 100%;
  display: block;
  border-radius: 18px;
  background: #F3F0E8;
  border: 1px solid rgba(7,11,18,.08);
}

.experience-box, .contact-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start;
  background: var(--cream); color: #070B12; border-radius: var(--radius-xl); padding: 68px;
}
.experience-box {
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025) 48%, rgba(18,27,41,.64));
  color: var(--text);
  border: 1px solid rgba(247,244,236,.11);
  box-shadow: 0 28px 75px rgba(0,0,0,.26);
}
.experience-box .eyebrow { color: rgba(247,244,236,.62); }
.contact .eyebrow { color: #B63F1D; }
.experience-box p { color: var(--soft); font-size: 17px; line-height: 1.55; }
.contact-grid p { color: rgba(7,11,18,.72); font-size: 18px; }
.experience-box .check-list { color: var(--soft); }
.check-list { padding-left: 20px; color: rgba(7,11,18,.78); }
.check-list li { margin: 8px 0; }
.contact { padding-bottom: 112px; }
.contact-note { font-weight: 600; }
.contact-links { display: grid; gap: 10px; margin-top: 24px; }
.contact-links a { font-weight: 900; color: #070B12; }
.contact-form { display: grid; gap: 14px; background: white; border-radius: 24px; padding: 26px; box-shadow: 0 20px 55px rgba(0,0,0,.12); }
.contact-form label { display: grid; gap: 7px; color: rgba(7,11,18,.74); font-size: 13px; font-weight: 900; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(7,11,18,.14); border-radius: 14px; padding: 14px 14px;
  font: inherit; color: #070B12; background: #F8F7F3; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(240,96,48,.11); }
.contact-form .button { border: none; width: fit-content; cursor: pointer; }
.form-note { font-size: 12px !important; margin: 0; }
.footer { border-top: 1px solid var(--line); padding: 52px 0 24px; background: #05080D; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 48px; }
.footer p { color: var(--muted); max-width: 460px; }
.footer-links { display: grid; gap: 12px; color: var(--soft); }
.footer-bottom { margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .section { padding: 76px 0; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-grid, .two-col, .review-panel, 
.logos-panel {
  background: var(--cream);
  color: #070B12;
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  gap: 30px;
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.logos-panel .eyebrow { color: #B63F1D; }
.logos-panel h2 { max-width: 780px; }
.logos-panel p { color: rgba(7,11,18,.72); max-width: 760px; font-size: 18px; }
.client-logos {
  width: 100%;
  display: block;
  border-radius: 18px;
  background: #F3F0E8;
  border: 1px solid rgba(7,11,18,.08);
}

.experience-box, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual { order: 2; }
  .hero-photo-card { height: 430px; }
  
.hero-photo-card {
  margin: 0;
  height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #05080D;
  box-shadow: 0 30px 80px var(--shadow);
  position: relative;
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 50%, rgba(240,96,48,.10), transparent 18rem), linear-gradient(90deg, rgba(7,11,18,.10), rgba(7,11,18,.30));
  pointer-events: none;
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
}

.visual-card { height: 440px; }
  .compact-points, .soft-grid, .cards-four, .timeline, .benefit-strip { grid-template-columns: 1fr; }
  .timeline, .benefit-strip { gap: 1px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 20px 20px; background: rgba(7,11,18,.96); border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 12px; border-bottom: 0 !important; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header { padding-left: 14px; padding-right: 14px; }
  h1 { font-size: clamp(36px, 11vw, 52px); }
  .subhero h1 { font-size: clamp(34px, 10vw, 50px); }
  h2 { font-size: clamp(28px, 9vw, 38px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .review-panel, 
.logos-panel {
  background: var(--cream);
  color: #070B12;
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  gap: 30px;
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.logos-panel .eyebrow { color: #B63F1D; }
.logos-panel h2 { max-width: 780px; }
.logos-panel p { color: rgba(7,11,18,.72); max-width: 760px; font-size: 18px; }
.client-logos {
  width: 100%;
  display: block;
  border-radius: 18px;
  background: #F3F0E8;
  border: 1px solid rgba(7,11,18,.08);
}

.experience-box, .contact-grid { padding: 28px; border-radius: 24px; }
  
.hero-photo-card {
  margin: 0;
  height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #05080D;
  box-shadow: 0 30px 80px var(--shadow);
  position: relative;
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 50%, rgba(240,96,48,.10), transparent 18rem), linear-gradient(90deg, rgba(7,11,18,.10), rgba(7,11,18,.30));
  pointer-events: none;
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
}

.visual-card { height: 360px; }
  .signal-card { width: 155px; padding: 13px; }
  .signal-1 { top: 54px; left: 24px; }
  .signal-2 { top: 235px; right: 20px; }
  .signal-3 { top: 84px; right: 24px; }
  .orbit-a { left: -40px; top: 110px; }
  .orbit-b { left: 20px; top: 140px; }
  .decision-point { top: 195px; left: 150px; }
  .orange-disc { width: 420px; height: 220px; right: -210px; top: -105px; }
}


/* v3 spacing refinements */
.section + .section { border-top: 1px solid rgba(247,244,236,.035); }
.section-copy p { margin-bottom: 22px; }
.point p, .soft-card p, .card p, .step p, .review-list p { line-height: 1.58; }
.review-list { gap: 18px; }
.review-list div { padding: 26px; }
.outcome-box { margin: 34px 0 34px; padding: 26px; }
.centered { margin-left: auto; margin-right: auto; }
@media (min-width: 981px) {
  .system .section-copy { padding-top: 8px; }
  .retainer .section-copy { padding-top: 8px; }
}
@media (max-width: 980px) {
  .section { padding: 96px 0; }
  .hero { padding-top: 104px; padding-bottom: 88px; }
  .hero-grid, .two-col, .review-panel, 
.logos-panel {
  background: var(--cream);
  color: #070B12;
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  gap: 30px;
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.logos-panel .eyebrow { color: #B63F1D; }
.logos-panel h2 { max-width: 780px; }
.logos-panel p { color: rgba(7,11,18,.72); max-width: 760px; font-size: 18px; }
.client-logos {
  width: 100%;
  display: block;
  border-radius: 18px;
  background: #F3F0E8;
  border: 1px solid rgba(7,11,18,.08);
}

.experience-box, .contact-grid { gap: 48px; }
  .brand-logo { width: 164px; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 32px, var(--max)); }
  .section { padding: 78px 0; }
  .hero { padding-top: 72px; }
  .hero-photo-card { height: 360px; }
  .brand { min-width: 136px; }
  .brand-logo { width: 146px; }
}


/* Subpage: Przegląd komunikacji */
.subhero { padding-top: 172px; padding-bottom: 80px; }
.subhero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 86px; align-items: end; }
.subhero-card {
  background: linear-gradient(145deg, rgba(240,96,48,.18), rgba(255,255,255,.035));
  border: 1px solid rgba(240,96,48,.24);
  border-radius: var(--radius-xl);
  padding: 44px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.subhero-card .card-label { color: var(--accent); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .22em; margin-bottom: 18px; }
.subhero-card strong { font-size: clamp(24px, 2.2vw, 34px); line-height: 1.04; letter-spacing: -.045em; display: block; margin-bottom: 18px; }
.subhero-card p { color: var(--soft); margin-bottom: 0; }
.airy { padding-top: 128px; }
.service-grid { margin-top: 74px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
}
.service-card span, .process-list span { color: var(--accent); font-weight: 900; font-size: 13px; display: inline-block; margin-bottom: 20px; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.review-light { padding-top: 86px; padding-bottom: 86px; }
.process-list { display: grid; gap: 18px; }
.process-list div {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}
.process-list strong { display: block; font-size: 20px; margin-bottom: 8px; }
.process-list p { color: var(--muted); margin: 0; }
.path-mini .review-panel { background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(240,96,48,.12)); }
@media (max-width: 980px) {
  .subhero { padding-top: 128px; padding-bottom: 58px; }
  .subhero-grid, .service-grid { grid-template-columns: 1fr; gap: 34px; }
  .subhero-card { min-height: auto; padding: 34px; }
  .airy { padding-top: 86px; }
}
@media (max-width: 620px) {
  .service-card { min-height: auto; padding: 26px; }
}

/* v8 pricing blocks */
.pricing-section { padding-top: 82px; padding-bottom: 82px; }
.pricing-box {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: start;
  border: 1px solid rgba(240,96,48,.22);
  border-radius: var(--radius-xl);
  padding: 58px;
  background: linear-gradient(145deg, rgba(240,96,48,.13), rgba(255,255,255,.035));
  box-shadow: 0 28px 72px rgba(0,0,0,.28);
}
.pricing-box p { color: var(--soft); font-size: 18px; }
.price-note {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(7,11,18,.52);
  border: 1px solid var(--line);
  color: var(--soft);
  line-height: 1.58;
}
.price-note strong { color: var(--text); }
@media (max-width: 980px) {
  .pricing-box { grid-template-columns: 1fr; gap: 28px; padding: 34px; }
}
@media (max-width: 620px) {
  .pricing-section { padding-top: 64px; padding-bottom: 64px; }
  .pricing-box { padding: 28px; border-radius: 24px; }
}

/* v11 active navigation state */
.nav a:not(.nav-cta) { position: relative; padding: 8px 0; }
.nav a.is-active:not(.nav-cta) {
  color: var(--text);
  opacity: 1;
  font-weight: 900;
}
.nav a.is-active:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(240,96,48,.42);
}
@media (max-width: 980px) {
  .nav a.is-active:not(.nav-cta) {
    color: var(--text);
    background: rgba(240,96,48,.10);
    border-radius: 14px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .nav a.is-active:not(.nav-cta)::after {
    left: 0;
    right: auto;
    top: 12px;
    bottom: 12px;
    width: 3px;
    height: auto;
  }
}


/* v12 privacy page and cookie consent */
.legal-hero { padding-bottom: 82px; }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 72px; align-items: start; }
.legal-toc {
  position: sticky; top: 96px; display: grid; gap: 10px; padding: 22px;
  border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.035);
}
.legal-toc a { color: var(--muted); font-size: 14px; line-height: 1.3; }
.legal-toc a:hover { color: var(--text); }
.legal-content { max-width: 850px; }
.legal-content section {
  padding: 38px 0; border-top: 1px solid var(--line);
}
.legal-content section:first-child { border-top: 0; padding-top: 0; }
.legal-content h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; }
.legal-content p { color: var(--soft); font-size: 18px; line-height: 1.72; }
.legal-content a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(240,96,48,.6); }
.legal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0; }
.legal-cards div { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.035); }
.legal-cards h3 { font-size: 18px; margin-bottom: 8px; }
.legal-cards p { font-size: 15px; margin: 0; color: var(--muted); }
.footer-button-link {
  padding: 0; border: 0; background: transparent; color: var(--soft); font: inherit; text-align: left; cursor: pointer;
}
.footer-button-link:hover { color: var(--text); }
.cookie-settings-button { margin-top: 12px; }
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 80;
  display: none; max-width: 920px; margin: 0 auto; padding: 26px;
  border: 1px solid rgba(247,244,236,.16); border-radius: 26px;
  background: rgba(11, 15, 22, .96); box-shadow: 0 28px 90px rgba(0,0,0,.55); backdrop-filter: blur(18px);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.cookie-banner p { max-width: 780px; color: var(--soft); font-size: 16px; line-height: 1.65; margin-bottom: 18px; }
.cookie-banner a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(240,96,48,.7); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.cookie-actions .button { min-width: 150px; }
.cookie-modal-backdrop {
  position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center;
  padding: 22px; background: rgba(0,0,0,.72);
}
.cookie-modal-backdrop.is-visible { display: flex; }
.cookie-modal {
  width: min(720px, 100%); max-height: min(760px, 92vh); overflow: auto;
  border: 1px solid rgba(247,244,236,.16); border-radius: 28px; padding: 30px;
  background: #0B0F16; box-shadow: 0 30px 100px rgba(0,0,0,.6);
}
.cookie-modal h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 12px; }
.cookie-modal > p { color: var(--soft); line-height: 1.65; }
.cookie-option {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.cookie-option:first-of-type { margin-top: 18px; }
.cookie-option h3 { font-size: 18px; margin: 0 0 6px; }
.cookie-option p { color: var(--muted); margin: 0; font-size: 15px; }
.cookie-switch { position: relative; display: inline-flex; width: 58px; height: 34px; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; cursor: pointer; inset: 0; background: rgba(255,255,255,.15); border: 1px solid var(--line); border-radius: 999px; transition: .2s;
}
.cookie-slider::before {
  content: ""; position: absolute; width: 24px; height: 24px; left: 4px; top: 4px; border-radius: 50%; background: var(--text); transition: .2s;
}
.cookie-switch input:checked + .cookie-slider { background: var(--accent); border-color: var(--accent); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(24px); background: #170803; }
.cookie-switch input:disabled + .cookie-slider { opacity: .72; cursor: not-allowed; }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; margin-top: 24px; }
@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; gap: 34px; }
  .legal-toc { position: static; }
  .legal-cards { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 20px; }
  .cookie-actions, .cookie-modal-actions { flex-direction: column; }
  .cookie-actions .button, .cookie-modal-actions .button { width: 100%; }
  .cookie-modal { padding: 22px; }
  .cookie-option { grid-template-columns: 1fr; }
}

/* v15 refinements */
.experience-box h2 { font-size: clamp(28px, 3.2vw, 46px); }
.experience-box .check-list li { margin: 7px 0; }
@media (max-width: 760px) {
  h1 { font-size: clamp(34px, 11vw, 48px); }
  .lead { font-size: 16px; }
}

/* v16 typographic normalization, updated logo, model icons and footer */
:root {
  --h1-size: clamp(38px, 4.55vw, 58px);
  --h2-size: clamp(28px, 3.25vw, 46px);
}

.brand-logo { width: 142px; height: auto; object-fit: contain; }
.header .brand-logo { width: 142px; }

h1,
.subhero h1,
.legal-hero h1 {
  font-size: var(--h1-size);
  line-height: 1.06;
  letter-spacing: -.05em;
  max-width: 860px;
}

h2,
.legal-content h2 {
  font-size: var(--h2-size);
  line-height: 1.08;
}

.lead {
  font-size: clamp(16px, 1.14vw, 18px);
  line-height: 1.58;
}

.section-copy {
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.62;
}

.subhero {
  padding-top: 150px;
  padding-bottom: 76px;
}

.subhero-grid {
  align-items: center;
}

.step {
  padding: 46px 38px;
}

.step span {
  display: block !important;
  margin-bottom: 24px !important;
  line-height: 1;
}

.step strong {
  display: block;
  margin-bottom: 22px;
}

.model-card {
  position: relative;
  overflow: hidden;
}

.model-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
  margin-bottom: 26px;
  opacity: .82;
  filter: saturate(.95) brightness(.96);
}

.footer {
  padding: 70px 0 28px;
  background: #05080D;
}

.footer-grid.footer-grid-full {
  grid-template-columns: 1.05fr 1fr 1fr .95fr;
  gap: 72px;
  align-items: start;
}

.footer-logo { width: 150px; }
.footer-col h3 {
  color: var(--soft);
  font-size: 16px;
  line-height: 1.25;
  margin: 0 0 22px;
  letter-spacing: -.015em;
}
.footer-col h3:not(:first-child) { margin-top: 28px; }
.footer-col p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}
.footer-col a { color: var(--soft); }
.footer-col a:hover { color: var(--text); }
.footer-small-links {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  color: var(--soft);
}
.footer-bottom {
  margin-top: 52px;
  padding-top: 20px;
  display: block;
  font-size: 15px;
}
.footer-button-link { font-size: 15px; }

@media (max-width: 980px) {
  .header .brand-logo { width: 128px; }
  .subhero { padding-top: 118px; }
  .footer-grid.footer-grid-full { grid-template-columns: 1fr 1fr; gap: 36px 48px; }
}

@media (max-width: 620px) {
  h1,
  .subhero h1,
  .legal-hero h1 { font-size: clamp(34px, 10vw, 46px); }
  h2,
  .legal-content h2 { font-size: clamp(28px, 8vw, 40px); }
  .lead { font-size: 16px; }
  .footer-grid.footer-grid-full { grid-template-columns: 1fr; gap: 26px; }
  .footer { padding-top: 52px; }
  .footer-logo { width: 138px; }
}

/* Form mail handler v17 */
.hp-field { display: none !important; }
.consent-field {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  color: rgba(7,11,18,.66) !important;
  font-size: 12px !important;
  line-height: 1.45;
  font-weight: 700 !important;
}
.consent-field input {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.consent-field a { color: #070B12; text-decoration: underline; }
.form-note { color: rgba(7,11,18,.54); line-height: 1.45; }
.thanks-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px;
  border-radius: var(--radius-xl);
  background: var(--cream);
  color: #070B12;
  box-shadow: 0 30px 85px rgba(0,0,0,.24);
}
.thanks-card p { color: rgba(7,11,18,.72); font-size: 18px; line-height: 1.55; }
@media (max-width: 720px) { .thanks-card { padding: 34px; } }


/* v18 contact shading, compact footer, Natalia block and normalized forms */
.contact-grid {
  background:
    radial-gradient(circle at 78% 18%, rgba(7,11,18,.055), transparent 22rem),
    linear-gradient(145deg, #F4F2EA 0%, #ECE9DF 100%);
  border: 1px solid rgba(247,244,236,.08);
  box-shadow: 0 26px 70px rgba(0,0,0,.20);
}
.contact-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(240,96,48,.045), transparent 42%, rgba(7,11,18,.035));
}
.contact-grid > * { position: relative; z-index: 1; }
.contact-form {
  padding: 34px;
  box-shadow: 0 18px 54px rgba(7,11,18,.10);
}
.contact-form label { font-size: 14px; margin-bottom: 14px; }
.contact-form input,
.contact-form textarea { padding: 13px 14px; }
.contact-form textarea { min-height: 138px; }
.contact-form .button { min-height: 44px; padding: 11px 18px; }
.natalia-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  max-width: 430px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(7,11,18,.08);
  box-shadow: 0 14px 36px rgba(7,11,18,.08);
}
.natalia-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #081021;
  flex: 0 0 auto;
}
.natalia-card strong {
  display: block;
  color: #070B12;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.natalia-card p {
  margin: 0;
  color: rgba(7,11,18,.62) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}
.footer {
  padding: 42px 0 18px;
}
.footer-grid.footer-grid-full {
  gap: 42px;
}
.footer-logo { width: 128px; }
.footer-col h3 {
  margin-bottom: 12px;
  font-size: 15px;
}
.footer-col h3:not(:first-child) { margin-top: 18px; }
.footer-col p {
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.35;
}
.footer-small-links {
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 14px;
  font-size: 13px;
}
.form-note { display: none !important; }
@media (max-width: 980px) {
  .contact-form { padding: 28px; }
  .footer { padding-top: 34px; }
  .footer-grid.footer-grid-full { gap: 26px 34px; }
}
@media (max-width: 620px) {
  .contact-form { padding: 22px; }
  .natalia-card { align-items: flex-start; }
  .natalia-card img { width: 56px; height: 56px; }
  .footer-grid.footer-grid-full { gap: 20px; }
}


/* v19 footer compression and softer contact panels */
.contact-grid {
  background:
    radial-gradient(circle at 78% 18%, rgba(240,96,48,.065), transparent 18rem),
    radial-gradient(circle at 18% 88%, rgba(7,11,18,.050), transparent 22rem),
    linear-gradient(145deg, #EEECE4 0%, #E5E1D6 100%) !important;
  border: 1px solid rgba(247,244,236,.10) !important;
  box-shadow: 0 20px 54px rgba(0,0,0,.16) !important;
}
.contact-grid::before {
  background: linear-gradient(100deg, rgba(240,96,48,.028), transparent 43%, rgba(7,11,18,.045)) !important;
}
.contact-form {
  background: rgba(250,249,245,.78) !important;
  border: 1px solid rgba(7,11,18,.075) !important;
  box-shadow: 0 14px 40px rgba(7,11,18,.09) !important;
}
.contact-form input,
.contact-form textarea {
  background: rgba(246,245,240,.78) !important;
  border-color: rgba(7,11,18,.14) !important;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,.90) !important;
  border-color: rgba(240,96,48,.62) !important;
}
.natalia-card {
  background: rgba(250,249,245,.52) !important;
  box-shadow: 0 10px 28px rgba(7,11,18,.07) !important;
}

.footer {
  padding: 28px 0 14px !important;
}
.footer-grid.footer-grid-full {
  grid-template-columns: 1.05fr 1.05fr .9fr .95fr !important;
  gap: 24px !important;
  align-items: start;
}
.footer-logo { width: 112px !important; }
.footer-tagline {
  max-width: 230px !important;
  margin: 10px 0 0 !important;
  font-size: 12px !important;
  line-height: 1.28 !important;
  color: rgba(247,244,236,.45) !important;
}
.footer-col h3 {
  margin: 0 0 7px !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
  letter-spacing: -.01em;
  color: rgba(247,244,236,.78) !important;
}
.footer-col h3:not(:first-child) { margin-top: 13px !important; }
.footer-col p {
  margin: 0 0 9px !important;
  font-size: 12.5px !important;
  line-height: 1.42 !important;
  color: rgba(247,244,236,.48) !important;
}
.footer-col a { color: rgba(247,244,236,.74) !important; }
.footer-small-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  margin-top: 10px !important;
  font-size: 12.5px !important;
  line-height: 1.2 !important;
}
.footer-button-link {
  font-size: 12.5px !important;
  line-height: 1.2 !important;
}
.footer-bottom {
  margin-top: 18px !important;
  padding-top: 10px !important;
  font-size: 11.5px !important;
  color: rgba(247,244,236,.38) !important;
}
@media (max-width: 980px) {
  .footer-grid.footer-grid-full { grid-template-columns: 1fr 1fr !important; gap: 20px 28px !important; }
}
@media (max-width: 620px) {
  .footer { padding-top: 24px !important; }
  .footer-grid.footer-grid-full { grid-template-columns: 1fr !important; gap: 16px !important; }
  .footer-logo { width: 104px !important; }
}

/* v21 FAQ */
.faq-teaser {
  padding-top: 88px;
  padding-bottom: 88px;
}
.faq-mini {
  display: grid;
  gap: 12px;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-mini details,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  overflow: hidden;
}
.faq-mini summary,
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 850;
  letter-spacing: -.02em;
}
.faq-mini summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker { display: none; }
.faq-mini summary::after,
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 900;
  margin-left: 18px;
}
.faq-mini details[open] summary::after,
.faq-list details[open] summary::after { content: "–"; }
.faq-mini details p,
.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  max-width: 780px;
}
.small-button { width: fit-content; margin-top: 10px; }
.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 72px;
  align-items: start;
}
.faq-section { padding-top: 96px; padding-bottom: 96px; }
.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.006));
  border-top: 1px solid rgba(247,244,236,.06);
  border-bottom: 1px solid rgba(247,244,236,.06);
}
.faq-hero { padding-bottom: 72px; }
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 26px; }
  .faq-section, .faq-teaser { padding-top: 72px; padding-bottom: 72px; }
}

/* v22 mobile and visual normalization overrides */
:root {
  --mobile-gutter: 20px;
}

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

/* Undo older accidental media inheritance and keep structural grids neutral */
.hero-grid,
.two-col,
.subhero-grid,
.review-panel,
.experience-box,
.contact-grid,
.pricing-box,
.faq-layout,
.legal-layout {
  min-width: 0;
}
.hero-grid,
.two-col,
.subhero-grid,
.faq-layout,
.legal-layout {
  background: transparent !important;
  color: inherit !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Desktop rhythm normalization */
.section { padding-top: 112px; padding-bottom: 112px; }
.hero { min-height: 0; padding-top: 118px; padding-bottom: 104px; }
.subhero { padding-top: 136px; padding-bottom: 72px; }
.hero-grid { gap: clamp(48px, 7vw, 92px); }
.two-col { gap: clamp(44px, 6vw, 86px); }
.compact-points,
.soft-grid,
.cards-four,
.service-grid { gap: 20px; }
.point,
.soft-card,
.card,
.service-card { padding: 28px; }
.review-panel,
.experience-box,
.contact-grid,
.pricing-box { padding: clamp(34px, 5vw, 58px); }

/* Better touch targets and less visual density */
.nav a { min-height: 38px; display: inline-flex; align-items: center; }
.nav-cta { min-height: 40px; }
.button { min-height: 46px; }

/* Tablet */
@media (max-width: 980px) {
  body {
    background:
      radial-gradient(circle at 76% -8%, rgba(240,96,48,.18), transparent 22rem),
      linear-gradient(180deg, #070B12 0%, #05080D 58%, #030509 100%);
  }
  .container { width: min(100% - 40px, var(--max)); }
  .header {
    padding: 14px 20px;
    min-height: 68px;
  }
  .header .brand-logo { width: 118px; }
  .nav-toggle { display: block; }
  .nav {
    top: 100%;
    padding: 10px 20px 18px;
    background: rgba(7,11,18,.98);
    backdrop-filter: blur(18px);
  }
  .nav a {
    min-height: 46px;
    padding: 12px 14px !important;
    border-bottom: 1px solid rgba(247,244,236,.08);
  }
  .nav-cta {
    margin-top: 12px;
    justify-content: center;
    border-bottom: 0 !important;
  }
  .section { padding-top: 84px; padding-bottom: 84px; }
  .hero { padding-top: 84px; padding-bottom: 76px; }
  .subhero { padding-top: 116px; padding-bottom: 58px; }
  .hero-grid,
  .two-col,
  .subhero-grid,
  .review-panel,
  .experience-box,
  .contact-grid,
  .pricing-box,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr !important;
  }
  .hero-grid,
  .two-col,
  .subhero-grid,
  .faq-layout,
  .legal-layout { gap: 30px !important; }
  .review-panel,
  .experience-box,
  .contact-grid,
  .pricing-box { gap: 30px !important; }
  .hero-copy { max-width: 720px; }
  .hero-photo-card {
    height: min(420px, 56vw) !important;
    border-radius: 26px;
  }
  .benefit-strip,
  .compact-points,
  .soft-grid,
  .cards-four,
  .timeline,
  .service-grid,
  .legal-cards {
    grid-template-columns: 1fr !important;
  }
  .benefit-strip { margin-top: 54px; }
  .benefit-strip div { padding: 22px 24px; }
  .timeline { margin-top: 42px; }
  .step { min-height: auto; padding: 30px 28px; }
  .step span { margin-bottom: 14px !important; }
  .step strong { margin-bottom: 10px; }
  .logos-panel { padding: 34px; }
  .legal-toc { position: static; }
}

/* Phone */
@media (max-width: 620px) {
  .container { width: calc(100% - 32px); }
  .header {
    padding-left: 16px;
    padding-right: 16px;
    min-height: 64px;
  }
  .brand { min-width: auto; }
  .header .brand-logo { width: 108px; }
  .nav-toggle { padding: 8px; }

  .section { padding-top: 68px; padding-bottom: 68px; }
  .section + .section { border-top-color: rgba(247,244,236,.045); }
  .hero { padding-top: 58px; padding-bottom: 62px; }
  .subhero { padding-top: 96px; padding-bottom: 48px; }

  h1,
  .subhero h1,
  .legal-hero h1 {
    font-size: clamp(32px, 9.4vw, 42px) !important;
    line-height: 1.08 !important;
    letter-spacing: -.045em !important;
    margin-bottom: 22px;
  }
  h2,
  .legal-content h2 {
    font-size: clamp(26px, 7.8vw, 34px) !important;
    line-height: 1.1 !important;
    letter-spacing: -.04em !important;
    margin-bottom: 18px;
  }
  h3 { font-size: 18px; line-height: 1.18; }
  .eyebrow {
    font-size: 11px;
    letter-spacing: .12em;
    margin-bottom: 14px;
  }
  .lead,
  .section-copy,
  .centered p,
  .review-panel p,
  .pricing-box p,
  .contact-grid p,
  .legal-content p {
    font-size: 15.5px !important;
    line-height: 1.56 !important;
  }
  .microcopy { font-size: 12.5px; line-height: 1.48; }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
  }
  .button {
    width: 100%;
    min-height: 44px;
    padding: 11px 16px;
    font-size: 14px;
  }
  .hero-photo-card {
    height: 300px !important;
    border-radius: 22px;
  }
  .hero-photo-card img { object-position: 55% 50%; }

  .benefit-strip {
    margin-top: 38px;
    border-radius: 20px;
  }
  .benefit-strip div { padding: 18px 18px; }
  .benefit-strip strong { font-size: 16px; }
  .benefit-strip span { font-size: 13px; }

  .compact-points,
  .soft-grid,
  .cards-four,
  .service-grid { margin-top: 36px; gap: 14px; }
  .point,
  .soft-card,
  .card,
  .service-card,
  .process-list div,
  .review-list div {
    padding: 20px !important;
    border-radius: 18px;
  }
  .point span,
  .review-list span,
  .service-card span,
  .process-list span { margin-bottom: 10px; }

  .review-panel,
  .experience-box,
  .contact-grid,
  .pricing-box,
  .subhero-card,
  .logos-panel,
  .thanks-card {
    padding: 24px !important;
    border-radius: 22px !important;
  }
  .outcome-box,
  .price-note { padding: 18px; border-radius: 16px; }

  .contact-form {
    padding: 18px !important;
    border-radius: 18px;
    gap: 10px;
  }
  .contact-form label { font-size: 13px; margin-bottom: 8px; }
  .contact-form input,
  .contact-form textarea { padding: 12px; border-radius: 12px; }
  .contact-form textarea { min-height: 116px; }
  .natalia-card {
    margin-top: 20px;
    padding: 13px;
    border-radius: 18px;
    gap: 12px;
  }
  .natalia-card img { width: 52px; height: 52px; }

  .footer {
    padding: 22px 0 12px !important;
  }
  .footer-grid.footer-grid-full {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .footer-col h3 { margin-bottom: 5px !important; }
  .footer-col h3:not(:first-child) { margin-top: 10px !important; }
  .footer-col p { margin-bottom: 6px !important; }
  .footer-bottom { margin-top: 12px !important; padding-top: 8px !important; }

  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; border-radius: 20px; }
  .cookie-banner h2 { font-size: 24px; }
  .cookie-banner p { font-size: 14px; line-height: 1.5; }
  .cookie-modal { padding: 20px; border-radius: 22px; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 24px); }
  h1,
  .subhero h1,
  .legal-hero h1 { font-size: 31px !important; }
  h2,
  .legal-content h2 { font-size: 25px !important; }
  .hero-photo-card { height: 260px !important; }
}


/* v24 thanks page header alignment */
.thanks-page { min-height: 100vh; }
.thanks-section { min-height: calc(100vh - 86px); display: flex; align-items: center; padding-top: 150px; padding-bottom: 120px; }
.thanks-card { margin-left: auto; margin-right: auto; }
.button.secondary.dark-on-light { color: #070B12; border-color: rgba(7,11,18,.18); background: rgba(7,11,18,.035); }
.button.secondary.dark-on-light:hover { border-color: rgba(7,11,18,.28); background: rgba(7,11,18,.07); }
@media (max-width: 760px) {
  .thanks-section { min-height: auto; padding-top: 118px; padding-bottom: 72px; }
  .thanks-card .button-row { flex-direction: column; align-items: stretch; }
}


/* v25 direct Natalia contact and compact footer cleanup */
.contact-links { display: none !important; }
.natalia-card--contact {
  max-width: 520px;
  align-items: center;
  background: rgba(250,249,245,.56) !important;
}
.natalia-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 8px;
}
.natalia-contact-links a {
  color: #070B12;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}
.natalia-contact-links a:hover { color: var(--accent); }
.footer-col p strong {
  color: rgba(247,244,236,.78);
  font-weight: 900;
}
.footer-col p br { line-height: 1.1; }
.footer-col p { margin-bottom: 5px !important; }
.footer-col h3:not(:first-child) { margin-top: 8px !important; }
@media (max-width: 620px) {
  .natalia-card--contact { align-items: flex-start; }
  .natalia-contact-links { flex-direction: column; gap: 4px; }
}

/* v26 PageSpeed, accessibility and performance fixes */
:root {
  --soft: rgba(247,244,236,.84);
  --muted: rgba(247,244,236,.66);
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.nav a,
.footer-col a,
.footer-small-links a,
.natalia-contact-links a,
.cookie-actions .button,
.cookie-modal-actions .button,
.footer-button-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav a { padding: 4px 0; }
.nav-cta { min-height: 42px; }
.footer-small-links { gap: 6px 18px !important; }
.footer-small-links a { padding: 2px 0; }
.footer-col p,
.contact-grid p,
.legal-content p,
.legal-content li,
.cookie-banner p,
.cookie-option p {
  color: rgba(247,244,236,.72);
}
.contact-grid p,
.contact-grid .lead,
.contact .lead,
.experience-box p,
.experience-box li,
.pricing-box p,
.pricing-box li {
  color: rgba(7,11,18,.76);
}
.microcopy,
.muted { color: rgba(247,244,236,.70); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(7,11,18,.50); }
.cookie-switch,
.cookie-actions .button,
.cookie-modal-actions .button { touch-action: manipulation; }
.cookie-slider { cursor: pointer; }
@media (max-width: 760px) {
  .nav a,
  .nav-cta,
  .footer-col a,
  .footer-button-link {
    min-height: 46px;
  }
  .nav a { padding: 8px 0; }
  .footer-col p { line-height: 1.35; }
}


/* v27 production fixes: header fit, contact blocks and compact footer */
.header {
  min-height: 72px;
}
.nav {
  min-width: 0;
  flex-wrap: nowrap;
  gap: 18px;
}
.nav a {
  white-space: nowrap;
}
.nav-cta {
  flex: 0 0 auto;
  padding-left: 14px;
  padding-right: 14px;
  min-width: max-content;
}
@media (max-width: 1240px) {
  .header { padding-left: 22px; padding-right: 22px; }
  .brand-logo { width: 150px; }
  .brand { min-width: 142px; }
  .nav { gap: 12px; font-size: 13px; }
  .nav-cta { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(7,11,18,.98);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; justify-content: center; margin-top: 12px; border-bottom: 0 !important; }
}

.contact-grid {
  background: linear-gradient(145deg, #F3F1EA, #E9E6DD) !important;
  color: #070B12 !important;
  border: 1px solid rgba(7,11,18,.08);
  box-shadow: 0 22px 70px rgba(0,0,0,.16);
}
.contact-copy > p:not(.eyebrow),
.contact-grid p {
  color: rgba(7,11,18,.72) !important;
}
.contact-form {
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(7,11,18,.08);
  box-shadow: 0 18px 46px rgba(0,0,0,.10);
}
.natalia-card--contact {
  max-width: 620px;
  background: rgba(255,255,255,.55) !important;
  border: 1px solid rgba(7,11,18,.08) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.08) !important;
}
.natalia-card--contact strong { color: #070B12; }
.natalia-card--contact p { color: rgba(7,11,18,.64) !important; }
.natalia-contact-links a {
  min-height: 32px;
  color: #070B12 !important;
}
.consent-field a { text-decoration: underline; }

.footer {
  padding: 34px 0 18px !important;
}
.footer-grid-full {
  grid-template-columns: 1.15fr .95fr .95fr .9fr;
  gap: 28px !important;
}
.footer-col h3 {
  margin: 0 0 8px !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
}
.footer-col h3:not(:first-child) { margin-top: 12px !important; }
.footer-col p,
.footer-tagline {
  margin: 0 0 8px !important;
  line-height: 1.36 !important;
  font-size: 14px !important;
}
.footer-small-links {
  gap: 4px !important;
  margin-top: 10px !important;
}
.footer-small-links a,
.footer-button-link {
  min-height: 28px !important;
  font-size: 14px !important;
}
.footer-bottom {
  margin-top: 20px !important;
  padding-top: 12px !important;
  font-size: 12px !important;
}
.footer-logo { width: 124px !important; }
.footer-brand { min-width: 0 !important; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr !important; padding: 42px !important; gap: 30px !important; }
  .footer-grid-full { grid-template-columns: 1fr 1fr; gap: 22px !important; }
}
@media (max-width: 620px) {
  .contact-grid { padding: 26px !important; border-radius: 24px !important; }
  .contact-form { padding: 20px !important; }
  .natalia-card--contact { align-items: flex-start; }
  .natalia-contact-links { flex-direction: column; gap: 2px; }
  .footer-grid-full { grid-template-columns: 1fr; gap: 14px !important; }
  .footer { padding-top: 28px !important; }
}

/* v28 readability and layout fixes from live testing */
/* Dark feature panels: restore readable light text after accessibility overrides. */
.review-panel,
.pricing-box,
.path-mini .review-panel {
  color: var(--text) !important;
  background: linear-gradient(145deg, rgba(240,96,48,.13), rgba(18,27,41,.70) 58%, rgba(255,255,255,.035)) !important;
}
.review-panel:not(.path-mini .review-panel) {
  border-color: rgba(247,244,236,.12) !important;
}
.review-panel .eyebrow,
.pricing-box .eyebrow {
  color: rgba(247,244,236,.72) !important;
}
.review-panel h2,
.review-panel h3,
.pricing-box h2,
.pricing-box h3,
.pricing-box strong,
.review-panel strong,
.price-note strong,
.outcome-box strong {
  color: var(--text) !important;
}
.review-panel p,
.review-panel li,
.review-panel .check-list,
.pricing-box p,
.pricing-box li,
.pricing-box .check-list,
.path-mini .review-panel p,
.path-mini .review-panel li {
  color: rgba(247,244,236,.82) !important;
}
.review-panel .muted,
.pricing-box .muted {
  color: rgba(247,244,236,.72) !important;
}
.price-note,
.outcome-box,
.review-list div {
  background: rgba(3,5,9,.38) !important;
  border-color: rgba(247,244,236,.14) !important;
  color: rgba(247,244,236,.82) !important;
}
.price-note p,
.outcome-box p,
.review-list p { color: rgba(247,244,236,.78) !important; }

/* Contact sections: prevent full-width broken form panels and normalize light cards. */
.contact {
  overflow: hidden;
}
.contact-grid {
  width: min(100% - 48px, var(--max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .78fr) !important;
  align-items: start !important;
  gap: clamp(34px, 6vw, 70px) !important;
  padding: clamp(40px, 5vw, 62px) !important;
  border-radius: clamp(26px, 3vw, 42px) !important;
  background:
    radial-gradient(circle at 82% 12%, rgba(240,96,48,.055), transparent 23rem),
    linear-gradient(145deg, #F4F2EA 0%, #ECE9DF 100%) !important;
  color: #070B12 !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.16) !important;
}
.contact-copy { min-width: 0 !important; }
.contact-form {
  width: 100% !important;
  max-width: 540px !important;
  justify-self: end !important;
  align-self: start !important;
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(7,11,18,.08) !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.09) !important;
}
.contact-form input,
.contact-form textarea {
  background: rgba(248,247,243,.92) !important;
}
.contact-form textarea { min-height: 145px !important; }
.natalia-card--contact {
  max-width: 560px !important;
  margin-top: 26px !important;
}
.contact-copy .lead,
.contact-copy p:not(.eyebrow),
.contact-grid p { max-width: 620px; }

@media (max-width: 1080px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    width: min(100% - 40px, var(--max)) !important;
  }
  .contact-form { max-width: 100% !important; justify-self: stretch !important; }
}
@media (max-width: 620px) {
  .contact-grid {
    width: calc(100% - 24px) !important;
    padding: 24px !important;
    border-radius: 24px !important;
    gap: 24px !important;
  }
  .contact-form { padding: 18px !important; }
  .contact-form textarea { min-height: 132px !important; }
}

/* Menu: keep CTA inside header and avoid mid-width collision. */
@media (min-width: 1081px) and (max-width: 1320px) {
  .header { padding-left: 18px !important; padding-right: 18px !important; }
  .brand-logo { width: 136px !important; }
  .brand { min-width: 126px !important; }
  .nav { gap: 10px !important; font-size: 12.5px !important; }
  .nav-cta { padding: 9px 11px !important; }
}

/* Footer: remove vertical looseness after live deployment. */
.footer-col p { margin: 0 0 4px !important; line-height: 1.24 !important; }
.footer-col h3 { margin: 0 0 6px !important; }
.footer-col h3:not(:first-child) { margin-top: 8px !important; }
.footer-small-links { margin-top: 4px !important; gap: 2px !important; }
.footer-small-links a,
.footer-button-link { min-height: 24px !important; }
.footer-bottom { margin-top: 12px !important; padding-top: 10px !important; }

/* v30 live fixes: readable dark effect panels and compact header CTA */
/* Dark effect panels were inheriting light-section text color from accessibility overrides. */
.experience-box {
  color: var(--text) !important;
  background:
    radial-gradient(circle at 12% 50%, rgba(247,244,236,.055), transparent 24rem),
    radial-gradient(circle at 86% 22%, rgba(240,96,48,.050), transparent 22rem),
    linear-gradient(145deg, rgba(255,255,255,.070), rgba(18,27,41,.72) 60%, rgba(255,255,255,.030)) !important;
  border-color: rgba(247,244,236,.14) !important;
}
.experience-box .eyebrow {
  color: rgba(247,244,236,.74) !important;
}
.experience-box h1,
.experience-box h2,
.experience-box h3,
.experience-box strong {
  color: var(--text) !important;
}
.experience-box p,
.experience-box li,
.experience-box .check-list,
.experience-box .muted {
  color: rgba(247,244,236,.82) !important;
}
.experience-box .check-list li::marker {
  color: var(--accent) !important;
}

/* Price / retainer panels: keep right column readable on production. */
.pricing-box,
.review-panel,
.path-mini .review-panel {
  color: var(--text) !important;
}
.pricing-box p,
.pricing-box li,
.pricing-box .check-list,
.review-panel p,
.review-panel li,
.review-panel .check-list {
  color: rgba(247,244,236,.84) !important;
}
.pricing-box .eyebrow,
.review-panel .eyebrow {
  color: rgba(247,244,236,.74) !important;
}
.price-note,
.outcome-box,
.review-list div {
  background: rgba(3,5,9,.42) !important;
  border-color: rgba(247,244,236,.16) !important;
}

/* Header CTA: prevent collision / clipping at real browser widths. */
.header {
  gap: 16px !important;
}
.header .brand-logo {
  width: 122px !important;
}
.brand {
  min-width: 112px !important;
}
.nav {
  gap: clamp(8px, 1.1vw, 16px) !important;
  font-size: clamp(11.5px, .82vw, 13px) !important;
}
.nav a:not(.nav-cta) {
  min-height: 34px !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.nav-cta {
  min-height: 34px !important;
  padding: 7px 12px !important;
  font-size: clamp(11.5px, .82vw, 13px) !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 28px rgba(240,96,48,.22) !important;
}
.nav a.is-active:not(.nav-cta)::after {
  bottom: -10px !important;
}
@media (max-width: 1180px) {
  .nav-toggle { display: block !important; }
  .nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 12px 20px 20px !important;
    background: rgba(7,11,18,.98) !important;
    border-bottom: 1px solid var(--line) !important;
    font-size: 14px !important;
  }
  .nav.is-open { display: flex !important; }
  .nav a {
    min-height: 46px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .nav-cta {
    justify-content: center !important;
    width: 100% !important;
    min-height: 44px !important;
    margin-top: 12px !important;
    font-size: 14px !important;
    border-bottom: 0 !important;
  }
}

/* v33 softer contact shading and cleaner large dark panels */
.contact-grid {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.72), transparent 18rem),
    radial-gradient(circle at 78% 10%, rgba(240,96,48,.10), transparent 20rem),
    radial-gradient(circle at 86% 86%, rgba(12,24,38,.11), transparent 22rem),
    linear-gradient(145deg, #F7F4EA 0%, #EEEADF 48%, #E4DFD3 100%) !important;
  border: 1px solid rgba(247,244,236,.72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.70),
    0 26px 80px rgba(0,0,0,.18) !important;
}
.contact-grid::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  border-radius: inherit !important;
  background:
    linear-gradient(115deg, rgba(255,255,255,.34), transparent 40%),
    linear-gradient(280deg, rgba(7,11,18,.055), transparent 55%) !important;
  opacity: 1 !important;
}
.contact-copy,
.contact-form,
.natalia-card--contact { position: relative !important; z-index: 1 !important; }
.contact-form {
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(248,246,239,.72)) !important;
  border: 1px solid rgba(7,11,18,.075) !important;
  box-shadow: 0 20px 55px rgba(7,11,18,.10) !important;
}
.natalia-card--contact {
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(246,243,234,.60)) !important;
  border: 1px solid rgba(7,11,18,.07) !important;
  box-shadow: 0 16px 42px rgba(7,11,18,.08) !important;
}

/* Avoid overly dramatic headline breaks in price/contact panels. */
.pricing-box h2,
.subhero-card h2,
.review-panel h2 {
  text-wrap: balance;
}
.pricing-box h2 {
  font-size: clamp(38px, 5.3vw, 74px) !important;
  line-height: .96 !important;
}
.subhero-card h2 {
  font-size: clamp(34px, 4.7vw, 62px) !important;
  line-height: .98 !important;
}

@media (max-width: 620px) {
  .pricing-box h2 { font-size: clamp(34px, 10vw, 46px) !important; }
  .subhero-card h2 { font-size: clamp(30px, 9vw, 42px) !important; }
}


/* v34 header scale and hero lead line break */
.header .brand-logo {
  width: 142px !important;
}
.brand {
  min-width: 132px !important;
}
.nav {
  gap: clamp(12px, 1.25vw, 18px) !important;
  font-size: clamp(12.5px, .9vw, 14.5px) !important;
  font-weight: 750 !important;
}
.nav-cta {
  min-height: 36px !important;
  padding: 8px 14px !important;
  font-size: clamp(12.5px, .9vw, 14px) !important;
}
.hero .lead br {
  display: block;
  content: "";
  margin-top: 6px;
}
@media (max-width: 1240px) {
  .nav-toggle { display: block !important; }
  .nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 12px 20px 20px !important;
    background: rgba(7,11,18,.98) !important;
    border-bottom: 1px solid var(--line) !important;
    font-size: 14px !important;
  }
  .nav.is-open { display: flex !important; }
  .nav a {
    min-height: 46px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .nav-cta {
    justify-content: center !important;
    width: 100% !important;
    min-height: 44px !important;
    margin-top: 12px !important;
    font-size: 14px !important;
    border-bottom: 0 !important;
  }
}
@media (max-width: 760px) {
  .header .brand-logo { width: 124px !important; }
  .brand { min-width: 116px !important; }
}


/* v35 PLDM Brief page */
.brief-hero .hero-copy h1 { max-width: 980px; }
.brief-photo-card { background: linear-gradient(145deg, rgba(14,22,34,.88), rgba(33,18,17,.72)); }
.brief-intro h2 { max-width: 900px; margin-left: auto; margin-right: auto; }
.brief-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(247,244,236,.10);
  background: rgba(247,244,236,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.brief-metrics div {
  min-height: 160px;
  padding: 34px 30px;
  background: linear-gradient(145deg, rgba(18,27,40,.86), rgba(10,15,23,.92));
}
.brief-metrics strong {
  display: block;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.brief-metrics span {
  display: block;
  color: var(--text);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -.04em;
}
.brief-card-strong span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 850;
}
.brief-dark {
  background:
    radial-gradient(circle at 18% 18%, rgba(240,96,48,.16), transparent 22rem),
    radial-gradient(circle at 90% 0%, rgba(20,42,64,.22), transparent 28rem),
    linear-gradient(145deg, rgba(28,18,20,.92), rgba(10,15,23,.94)) !important;
}
.brief-dark p, .brief-dark .price-note { color: rgba(247,244,236,.82) !important; }
@media (max-width: 900px) {
  .brief-metrics { grid-template-columns: 1fr 1fr; border-radius: 26px; }
  .brief-metrics div { min-height: 130px; padding: 26px 22px; }
}
@media (max-width: 560px) {
  .brief-metrics { grid-template-columns: 1fr; }
}


/* v36 PLDM Deck - richer sales deck page */
.deck-page .section-intro {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}
.deck-hero .hero-copy h1 { max-width: 980px; }
.deck-hero-note { max-width: 760px; }
.deck-photo-card {
  background:
    radial-gradient(circle at 35% 20%, rgba(240,96,48,.18), transparent 17rem),
    linear-gradient(145deg, rgba(14,22,34,.92), rgba(36,22,20,.74));
}
.deck-strip-section { padding-top: 0; }
.deck-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(247,244,236,.10);
  background: rgba(247,244,236,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.deck-strip div {
  min-height: 145px;
  padding: 30px 26px;
  background: linear-gradient(145deg, rgba(18,27,40,.82), rgba(10,15,23,.92));
}
.deck-strip span,
.deck-offer-card span {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  margin-bottom: 14px;
}
.deck-strip strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.deck-strip p { color: var(--soft); margin: 0; font-size: 15px; line-height: 1.45; }
.deck-problems { grid-template-columns: repeat(5, 1fr); }
.deck-problems .point p { font-size: 15px; }
.deck-dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(240,96,48,.18), transparent 22rem),
    radial-gradient(circle at 100% 0%, rgba(247,244,236,.07), transparent 26rem),
    linear-gradient(145deg, rgba(32,23,25,.94), rgba(9,13,20,.96)) !important;
}
.deck-dark h2,
.deck-dark p,
.deck-dark strong,
.deck-dark .price-note { color: rgba(247,244,236,.92) !important; }
.deck-dark .eyebrow { color: #F28A63 !important; }
.deck-offer { align-items: stretch; }
.deck-offer-card { display: flex; flex-direction: column; min-height: 100%; }
.deck-offer-card h3 { font-size: clamp(24px, 2vw, 32px); }
.deck-offer-card .check-list { margin: 20px 0 24px; color: var(--muted); }
.deck-price {
  margin-top: auto;
  display: block;
  padding-top: 18px;
  border-top: 1px solid rgba(247,244,236,.10);
  color: var(--text);
  font-size: 17px;
}
.deck-start-steps .step strong { padding-right: 10px; }
.deck-objections .faq-list { max-width: 980px; }
.deck-experience .experience-box {
  background:
    radial-gradient(circle at 18% 18%, rgba(240,96,48,.12), transparent 20rem),
    radial-gradient(circle at 88% 15%, rgba(247,244,236,.06), transparent 26rem),
    linear-gradient(145deg, rgba(18,27,40,.92), rgba(8,12,19,.96)) !important;
}
.deck-experience .experience-box h2,
.deck-experience .experience-box p { color: rgba(247,244,236,.90) !important; }
@media (max-width: 1100px) {
  .deck-problems { grid-template-columns: repeat(2, 1fr); }
  .deck-problems .point:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .deck-strip { grid-template-columns: 1fr 1fr; border-radius: 26px; }
  .deck-strip div { min-height: 125px; padding: 24px 22px; }
}
@media (max-width: 620px) {
  .deck-strip, .deck-problems { grid-template-columns: 1fr; }
  .deck-problems .point:last-child { grid-column: auto; }
  .deck-strip div { min-height: auto; }
}


/* v38 PLDM Brief lead magnet page */
.brief-page .brief-hero .hero-copy { max-width: 720px; }
.brief-strip div { min-height: 132px; }
.brief-dark h2,
.brief-dark p,
.brief-dark li,
.brief-dark strong { color: #F8F2EA !important; }
.brief-dark .eyebrow { color: #F39A72 !important; }
.brief-form textarea[name="profiles"] { min-height: 92px; }
.brief-form input[type="url"] { word-break: break-word; }
@media (max-width: 720px) {
  .brief-strip div { min-height: auto; }
  .brief-page .hero-actions { align-items: stretch; }
  .brief-page .hero-actions .button { width: 100%; justify-content: center; }
}


/* v40 deck and pricing readability fixes */
.deck-dark.pricing-box {
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(42px, 6vw, 74px) !important;
}
.deck-dark.pricing-box h2 {
  font-size: clamp(38px, 4.1vw, 60px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.055em !important;
  max-width: 11ch;
}
.deck-dark.pricing-box p {
  font-size: clamp(17px, 1.28vw, 22px) !important;
  line-height: 1.52 !important;
  color: rgba(247,244,236,.88) !important;
}
.deck-dark .price-note {
  margin-top: 28px;
  color: rgba(247,244,236,.90) !important;
}

.pricing-section .pricing-box h2 {
  font-size: clamp(34px, 3.75vw, 56px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.055em !important;
  max-width: 13ch;
}
.pricing-section .pricing-box p,
.pricing-section .pricing-box li {
  color: rgba(247,244,236,.84) !important;
}
.pricing-section .price-note {
  color: rgba(247,244,236,.88) !important;
}

.subhero-card strong {
  font-size: clamp(23px, 1.85vw, 30px) !important;
  line-height: 1.1 !important;
  letter-spacing: -.04em !important;
}
.subhero-card p {
  font-size: clamp(16px, 1.1vw, 19px) !important;
  line-height: 1.48 !important;
}

.deck-hero .hero-actions {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 30px;
}
.deck-hero .button {
  pointer-events: auto;
}

@media (max-width: 980px) {
  .deck-dark.pricing-box {
    grid-template-columns: 1fr;
    padding: 34px !important;
  }
  .deck-dark.pricing-box h2 {
    max-width: 14ch;
    font-size: clamp(34px, 8vw, 48px) !important;
  }
  .pricing-section .pricing-box h2 {
    max-width: 14ch;
    font-size: clamp(32px, 8vw, 46px) !important;
  }
}

@media (max-width: 620px) {
  .pricing-section .pricing-box,
  .deck-dark.pricing-box {
    padding: 28px !important;
  }
  .pricing-section .pricing-box h2,
  .deck-dark.pricing-box h2 {
    max-width: 13ch;
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.04 !important;
  }
  .subhero-card strong {
    font-size: clamp(22px, 7vw, 28px) !important;
  }
  .deck-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


/* v41 typography refinements: prices and deck panel */
.price-range,
.price-range-inline {
  white-space: nowrap;
}
.price-headline .price-range {
  display: inline-block;
  white-space: nowrap;
}
.pricing-section .pricing-box h2.price-headline {
  font-size: clamp(32px, 3.25vw, 48px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.055em !important;
  max-width: 18ch !important;
  text-wrap: balance;
}
.pricing-section .pricing-box {
  grid-template-columns: .9fr 1.1fr;
}
.subhero-card strong.price-headline {
  font-size: clamp(22px, 1.55vw, 27px) !important;
  line-height: 1.12 !important;
  max-width: 18ch;
  text-wrap: balance;
}
.subhero-card strong.price-headline .price-range {
  display: block;
  margin-top: 4px;
}
.deck-dark.pricing-box h2 {
  font-size: clamp(34px, 3.35vw, 52px) !important;
  line-height: 1.04 !important;
  max-width: 16ch !important;
  text-wrap: balance;
}
.deck-dark.pricing-box {
  grid-template-columns: 1fr 1.08fr;
}
@media (max-width: 980px) {
  .pricing-section .pricing-box,
  .deck-dark.pricing-box {
    grid-template-columns: 1fr;
  }
  .pricing-section .pricing-box h2.price-headline,
  .deck-dark.pricing-box h2 {
    max-width: 100% !important;
  }
}
@media (max-width: 620px) {
  .pricing-section .pricing-box h2.price-headline {
    font-size: clamp(30px, 10vw, 42px) !important;
  }
  .price-headline .price-range {
    display: block;
  }
}

/* v42 mobile navigation and homepage hero refinements */
@media (max-width: 1080px) {
  body.nav-open { overflow: hidden; }

  .header {
    min-height: 82px;
    padding: 18px 24px;
    z-index: 120;
  }

  .header .brand,
  .header .nav-toggle {
    position: relative;
    z-index: 122;
  }

  .header .brand-logo {
    width: 164px !important;
  }

  .nav-toggle {
    width: 52px;
    height: 52px;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(247,244,236,.10);
  }

  .nav-toggle span {
    width: 27px;
    height: 3px;
    border-radius: 999px;
    margin: 4px 0;
    transition: transform .22s ease, opacity .22s ease;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    z-index: 121;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 112px 28px 34px;
    background:
      radial-gradient(circle at 82% 0%, rgba(240,96,48,.22), transparent 22rem),
      linear-gradient(180deg, rgba(7,11,18,.99), rgba(3,5,9,.99));
    border: 0 !important;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    overflow-y: auto;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 18px 8px !important;
    border-bottom: 1px solid rgba(247,244,236,.10) !important;
    color: rgba(247,244,236,.78);
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.035em;
    opacity: 1;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .nav a.is-active:not(.nav-cta) {
    color: var(--accent) !important;
    font-weight: 900;
    padding-left: 24px !important;
  }

  .nav a.is-active:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    height: auto;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(240,96,48,.55);
  }

  .nav-cta {
    min-height: 58px !important;
    margin-top: 24px;
    justify-content: center;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 17px 22px !important;
    color: #170803 !important;
    font-size: 21px !important;
    font-weight: 900 !important;
    letter-spacing: -.02em;
    background: var(--accent) !important;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 42px;
    padding-bottom: 74px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    align-items: start;
  }

  .hero-copy { order: 2; }
  .hero-visual { order: 1 !important; }

  .hero-photo-card {
    height: clamp(250px, 74vw, 360px) !important;
    border-radius: 28px !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
  }

  .hero-photo-card img {
    object-position: 56% 50%;
  }

  .hero .eyebrow {
    margin-top: 4px;
  }
}

@media (max-width: 420px) {
  .header {
    min-height: 76px;
    padding: 14px 18px;
  }

  .header .brand-logo {
    width: 148px !important;
  }

  .nav {
    padding: 98px 22px 28px;
  }

  .nav a {
    min-height: 58px;
    font-size: clamp(23px, 7.2vw, 30px);
  }
}

/* v43 mobile Safari and full-screen menu fix */
html,
body {
  background: #070B12 !important;
  color-scheme: dark;
  min-height: 100%;
}

body {
  overscroll-behavior-y: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% -10%, rgba(240,96,48,.22), transparent 30rem),
    linear-gradient(180deg, #070B12 0%, #05080D 58%, #030509 100%);
}

.page-shell {
  min-height: 100vh;
  background: transparent !important;
}

@media (max-width: 1180px) {
  body.nav-open {
    overflow: hidden !important;
    touch-action: none;
  }

  .header {
    position: sticky !important;
    top: 0 !important;
    z-index: 10000 !important;
    min-height: 96px !important;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 28px 18px !important;
    background:
      radial-gradient(circle at 86% 0%, rgba(240,96,48,.18), transparent 16rem),
      rgba(7,11,18,.98) !important;
    border-bottom: 1px solid rgba(247,244,236,.10) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .header .brand,
  .header .nav-toggle {
    position: relative !important;
    z-index: 10002 !important;
  }

  .header .brand-logo {
    width: 170px !important;
    max-width: 46vw !important;
    height: auto !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 7px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--text) !important;
  }

  .nav-toggle span {
    display: block !important;
    width: 34px !important;
    height: 3px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: #F7F4EC !important;
    transition: transform .2s ease, opacity .2s ease !important;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg) !important;
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg) !important;
    opacity: 1 !important;
  }

  .nav {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    z-index: 9998 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: calc(122px + env(safe-area-inset-top, 0px)) 34px calc(34px + env(safe-area-inset-bottom, 0px)) !important;
    background:
      radial-gradient(circle at 85% 0%, rgba(240,96,48,.24), transparent 18rem),
      linear-gradient(180deg, #070B12 0%, #05080D 48%, #030509 100%) !important;
    border: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-12px) !important;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav a {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    min-height: 0 !important;
    padding: 18px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(247,244,236,.10) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(247,244,236,.82) !important;
    font-size: clamp(30px, 8vw, 44px) !important;
    line-height: 1.04 !important;
    font-weight: 850 !important;
    letter-spacing: -.045em !important;
    opacity: 1 !important;
    white-space: normal !important;
  }

  .nav a.is-active:not(.nav-cta) {
    color: #F06030 !important;
    padding-left: 28px !important;
    font-weight: 900 !important;
  }

  .nav a.is-active:not(.nav-cta)::after {
    display: none !important;
  }

  .nav a.is-active:not(.nav-cta)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    bottom: 17px;
    width: 5px;
    border-radius: 999px;
    background: #F06030;
    box-shadow: 0 0 22px rgba(240,96,48,.55);
  }

  .nav-cta {
    width: 100% !important;
    min-height: 64px !important;
    margin-top: 28px !important;
    padding: 18px 24px !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #F06030 !important;
    color: #150701 !important;
    font-size: clamp(22px, 6vw, 30px) !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -.03em !important;
    box-shadow: 0 24px 70px rgba(240,96,48,.28) !important;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  body.home .hero-copy,
  .home .hero-copy {
    order: 2 !important;
  }

  body.home .hero-visual,
  .home .hero-visual {
    order: 1 !important;
  }
}

@media (max-width: 420px) {
  .header {
    min-height: 92px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .header .brand-logo {
    width: 160px !important;
  }

  .nav {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .nav a {
    font-size: clamp(28px, 8.2vw, 36px) !important;
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }
}


/* v47: płynna skala gradientu etapów w sekcji Ścieżka współpracy */
.timeline .step {
  background:
    radial-gradient(circle at 72% 12%, rgba(240,96,48,.045), transparent 42%),
    linear-gradient(180deg, rgba(15,22,33,.92), rgba(10,15,24,.92));
}
.timeline .step:nth-child(2) {
  background:
    radial-gradient(circle at 72% 12%, rgba(240,96,48,.075), transparent 44%),
    linear-gradient(180deg, rgba(18,23,34,.93), rgba(11,16,25,.93));
}
.timeline .step:nth-child(3) {
  background:
    radial-gradient(circle at 72% 12%, rgba(240,96,48,.11), transparent 46%),
    linear-gradient(180deg, rgba(22,24,34,.94), rgba(12,16,25,.94));
}
.timeline .step:nth-child(4),
.timeline .step.step-strong {
  background:
    radial-gradient(circle at 72% 12%, rgba(240,96,48,.20), transparent 48%),
    linear-gradient(180deg, rgba(45,27,27,.94), rgba(14,18,28,.94));
}
@media (max-width: 760px) {
  .timeline .step {
    background:
      radial-gradient(circle at 86% 10%, rgba(240,96,48,.07), transparent 46%),
      linear-gradient(180deg, rgba(15,22,33,.94), rgba(10,15,24,.94));
  }
  .timeline .step:nth-child(2) {
    background:
      radial-gradient(circle at 86% 10%, rgba(240,96,48,.09), transparent 46%),
      linear-gradient(180deg, rgba(17,22,33,.94), rgba(10,15,24,.94));
  }
  .timeline .step:nth-child(3) {
    background:
      radial-gradient(circle at 86% 10%, rgba(240,96,48,.12), transparent 46%),
      linear-gradient(180deg, rgba(20,23,33,.94), rgba(11,15,24,.94));
  }
  .timeline .step:nth-child(4),
  .timeline .step.step-strong {
    background:
      radial-gradient(circle at 86% 10%, rgba(240,96,48,.20), transparent 48%),
      linear-gradient(180deg, rgba(42,27,27,.95), rgba(12,16,25,.95));
  }
}
