:root {
  --bg: #080a0f;
  --bg-2: #0b0f19;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f5f7fa;
  --muted: #a7b0c0;
  --line: rgba(255, 255, 255, 0.14);
  --teal: #20e3b2;
  --lime: #b6f500;
  --violet: #7c5cff;
  --blue: #4b8dff;
  --light: #f6f7f2;
  --ink: #12151c;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(32, 227, 178, 0.16), transparent 28rem),
    radial-gradient(circle at 84% 22%, rgba(124, 92, 255, 0.15), transparent 26rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 48%, var(--bg));
  color: var(--text);
  font-family: Inter, Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--lime);
  color: #07100c;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 78px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(8, 10, 15, 0.68);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 10, 15, 0.88);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 850;
  letter-spacing: 0;
}

.nav-links {
  display: none;
  position: absolute;
  inset: 72px 16px auto;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 15, 25, 0.96);
  box-shadow: var(--shadow);
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  color: #06110e !important;
  background: var(--teal) !important;
  font-weight: 800;
  text-align: center;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 62px;
}

.hero-bg {
  position: absolute;
  inset: -15% -10% auto;
  height: 70%;
  background:
    radial-gradient(circle at 20% 35%, rgba(32, 227, 178, 0.18), transparent 32rem),
    radial-gradient(circle at 76% 20%, rgba(75, 141, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 54% 58%, rgba(182, 245, 0, 0.09), transparent 22rem);
  filter: blur(10px);
  animation: aurora 12s ease-in-out infinite alternate;
}

@keyframes aurora {
  from {
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(2%, -3%, 0) scale(1.04);
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 9vw, 6.9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 6vw, 4.4rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.hero-lead,
.section-copy,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-lead {
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.76rem 1rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--teal), var(--lime));
  color: #06110e;
  border-color: transparent;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.055);
}

.btn.text {
  border-color: transparent;
  color: var(--teal);
}

.btn.dark {
  color: var(--ink);
  border-color: rgba(18, 21, 28, 0.18);
}

.tag-row,
.tool-cloud,
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-row li,
.tool-cloud span,
.audience-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.48rem 0.72rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.profile-card,
.info-card,
.bento-card,
.timeline-item,
.project-card,
.process-step,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.profile-card {
  position: relative;
  padding: 1rem;
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -18% 20%;
  height: 48%;
  background: radial-gradient(circle, rgba(32, 227, 178, 0.3), transparent 65%);
}

.profile-image {
  position: relative;
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
  border-radius: var(--radius);
  background: #05070b;
}

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

.initials {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: rgba(245, 247, 250, 0.86);
  font-size: clamp(2rem, 9vw, 4.5rem);
  font-weight: 900;
}

.profile-meta {
  position: relative;
  padding: 1.2rem 0 1rem;
}

.profile-meta p {
  margin-bottom: 0.15rem;
  font-size: 1.28rem;
  font-weight: 850;
}

.profile-meta span,
.metric-grid span,
.timeline-item span,
.role {
  color: var(--muted);
}

.metric-grid {
  position: relative;
  display: grid;
  gap: 0.7rem;
}

.metric-grid div {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.metric-grid strong {
  display: block;
  color: var(--teal);
  font-size: 1.25rem;
}

.split {
  display: grid;
  gap: 1.5rem;
}

.card-row {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.info-card {
  padding: 1.2rem;
}

.info-card span,
.bento-card span,
.process-step span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--lime);
  font-weight: 900;
}

.info-card p,
.bento-card p,
.project-card p,
.process-step p,
.timeline-item p {
  color: var(--muted);
}

.accent-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005)),
    radial-gradient(circle at 75% 15%, rgba(32, 227, 178, 0.12), transparent 26rem);
}

.bento-grid {
  display: grid;
  gap: 1rem;
}

.bento-card,
.project-card,
.process-step {
  min-height: 220px;
  padding: 1.25rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.bento-card:hover,
.project-card:hover,
.process-step:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 227, 178, 0.42);
  background: var(--panel-strong);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.timeline-item time {
  color: var(--teal);
  font-weight: 900;
}

.timeline-item h3,
.timeline-item .role {
  margin-bottom: 0.25rem;
}

.light-section {
  background: var(--light);
  color: var(--ink);
}

.light-section .eyebrow,
.light-section .result-card strong {
  color: #007d66;
}

.results-grid,
.project-grid,
.process-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.result-card {
  min-height: 156px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(18, 21, 28, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.result-card strong {
  font-size: clamp(1.45rem, 5vw, 2.45rem);
  line-height: 1;
}

.result-card span {
  color: #4a5361;
}

.result-card.highlight {
  color: #07100c;
  background: linear-gradient(135deg, var(--teal), var(--lime));
}

.result-card.highlight strong {
  color: #07100c;
}

.audience-grid {
  margin-top: 1.6rem;
}

.tools-section {
  padding-top: 40px;
}

.tool-cloud span {
  font-weight: 760;
}

.final-cta {
  padding-top: 40px;
}

.cta-box {
  padding: clamp(1.3rem, 5vw, 3rem);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5), transparent 20rem),
    linear-gradient(135deg, var(--teal), var(--lime) 55%, #d8ff8b);
}

.cta-box h2 {
  max-width: 850px;
}

.cta-box p {
  max-width: 680px;
  color: rgba(18, 21, 28, 0.72);
  font-size: 1.15rem;
}

.contact-copy address {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  font-style: normal;
}

.contact-copy address a {
  color: var(--teal);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
}

.contact-form label {
  color: var(--muted);
  font-weight: 780;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.85rem 0.9rem;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-grid strong {
  color: var(--text);
}

.footer-grid p {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 760px) {
  .wrap {
    width: min(1120px, calc(100% - 56px));
  }

  .section {
    padding: 104px 0;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

  .card-row,
  .results-grid,
  .project-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bento-card {
    grid-column: span 2;
  }

  .bento-card.large,
  .bento-card.wide {
    grid-column: span 4;
  }

  .timeline-item {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-left: 0.45rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  }

  .card-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .results-grid,
  .project-grid,
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .result-card:nth-child(1),
  .result-card:nth-child(3) {
    grid-column: span 2;
  }

  .bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-card.tall {
    grid-row: span 2;
  }

  .bento-card.wide {
    grid-column: span 2;
  }
}

.problem-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.problem-card {
  min-height: 190px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 227, 178, 0.42);
  background: var(--panel-strong);
}

.problem-card p,
.form-note {
  color: var(--muted);
}

.form-note {
  margin: 0.2rem 0 0.4rem;
  font-size: 0.9rem;
}

.form-note a {
  color: var(--teal);
  font-weight: 800;
}

@media (min-width: 760px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* === Terminal boost 2026-06-30: readability, CTA, contact, mobile === */

:root {
  --readable-muted: rgba(236, 241, 247, 0.78);
  --readable-soft: rgba(236, 241, 247, 0.88);
}

/* Większa czytelność tekstów w kartach */
.info-card p,
.bento-card p,
.project-card p,
.problem-card p,
.result-card span,
.section-copy,
.hero-lead {
  color: var(--readable-muted);
  line-height: 1.65;
}

.info-card p,
.bento-card p,
.project-card p,
.problem-card p {
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}

.info-card span,
.bento-card span,
.project-card span,
.problem-card span {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* Mocniejsze nagłówki kart */
.info-card h3,
.bento-card h3,
.project-card h3,
.problem-card h3 {
  line-height: 1.18;
}

/* Hero: więcej oddechu i czytelniejszy opis */
.hero-lead {
  max-width: 680px;
  font-size: clamp(1.12rem, 2vw, 1.34rem);
}

.hero-actions {
  gap: 0.85rem;
  margin-top: 1.45rem;
}

/* CTA ma wyglądać jak główna akcja, nie ozdobnik */
.btn.primary,
.nav-cta,
.contact-form button {
  box-shadow: 0 0 0 1px rgba(169, 255, 0, 0.28), 0 14px 34px rgba(169, 255, 0, 0.16);
}

.btn.primary:hover,
.nav-cta:hover,
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(169, 255, 0, 0.42), 0 18px 44px rgba(169, 255, 0, 0.22);
}

/* Jasna sekcja bardziej premium, mniej "wklejona z innej strony" */
.light-section {
  background:
    radial-gradient(circle at 25% 15%, rgba(169, 255, 0, 0.16), transparent 34%),
    linear-gradient(180deg, #f7f8f1 0%, #eef1e8 100%);
}

.result-card {
  border: 1px solid rgba(7, 15, 24, 0.08);
  box-shadow: 0 18px 45px rgba(7, 15, 24, 0.08);
}

/* Kontakt: bardziej czytelny formularz */
.contact-form {
  border-color: rgba(169, 255, 0, 0.18);
}

.contact-form label {
  color: var(--readable-soft);
  font-size: 0.96rem;
}

.contact-form input,
.contact-form textarea {
  font-size: 1rem;
  line-height: 1.45;
  border-color: rgba(236, 241, 247, 0.14);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(169, 255, 0, 0.55);
  outline-offset: 2px;
  border-color: rgba(169, 255, 0, 0.55);
}

.form-note {
  color: rgba(236, 241, 247, 0.68);
  line-height: 1.55;
}

/* Mobile: mniej mikrotekstu, więcej oddechu */
@media (max-width: 760px) {
  .section {
    padding-block: 4.5rem;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.7rem);
    letter-spacing: -0.065em;
  }

  .hero-lead,
  .section-copy {
    font-size: 1.08rem;
    line-height: 1.62;
  }

  .tag-row {
    gap: 0.45rem;
  }

  .tag-row li {
    font-size: 0.82rem;
    padding: 0.42rem 0.62rem;
  }

  .info-card p,
  .bento-card p,
  .project-card p,
  .problem-card p,
  .result-card span {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-form {
    padding: 1.15rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 3.65rem);
  }

  .btn,
  .nav-cta,
  .contact-form button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* === Fix light results section: contrast, spacing, layout === */

.light-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(169, 255, 0, 0.18), transparent 32%),
    linear-gradient(180deg, #f5f7ef 0%, #eef1e8 100%);
  color: #10151f;
}

.light-section h2 {
  max-width: 820px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #10151f;
}

.light-section .eyebrow {
  color: #00866f;
}

.light-section .result-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 21, 31, 0.08);
  box-shadow: 0 18px 45px rgba(16, 21, 31, 0.08);
  color: #10151f;
}

.light-section .result-card strong {
  color: #007f6a;
  line-height: 1;
}

.light-section .result-card span {
  color: rgba(16, 21, 31, 0.72);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.light-section .result-card.highlight {
  background: linear-gradient(135deg, #2fe1a0 0%, #a9ff00 100%);
  border-color: rgba(16, 21, 31, 0.12);
}

.light-section .result-card.highlight strong,
.light-section .result-card.highlight span {
  color: #071018;
}

.light-section .results-grid {
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .light-section h2 {
    font-size: clamp(2.3rem, 9vw, 4rem);
  }
}

@media (max-width: 640px) {
  .light-section h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .light-section .result-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .light-section .result-card strong {
    font-size: clamp(1.6rem, 9vw, 2.35rem);
  }
}

/* === Fix bottom dark sections: alignment, spacing, chips === */

/* Tagi/chipy mają trzymać się szerokości treści, a nie uciekać do krawędzi ekranu */
.section .tag-row,
.tools-section .tag-row {
  max-width: 980px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  justify-content: flex-start;
}

/* Jeśli tagi są poza wrapem, ograniczamy ich szerokość i centrujemy względem layoutu */
body > .tag-row,
main > .tag-row {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

/* Dolne sekcje: mniej pustki, bardziej zwarte bloki */
.tools-section,
.section:has(.tag-row) {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

/* Nagłówki w dolnych sekcjach trochę mniejsze, żeby nie dominowały całego ekranu */
.tools-section h2,
.section:has(.tag-row) h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5.6vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

/* Opis obok nagłówka ma być czytelny, ale nie wisieć za wysoko */
.section-copy {
  max-width: 620px;
}

/* Chipy: czytelniejsze i bardziej premium */
.tag-row li {
  color: rgba(236, 241, 247, 0.86);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(236, 241, 247, 0.16);
  line-height: 1.2;
}

.tag-row li:hover {
  color: #10151f;
  background: #a9ff00;
  border-color: #a9ff00;
}

/* Sekcja narzędzi nie powinna wyglądać jak rozwalona lista */
.tools-section .tag-row {
  max-width: 860px;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

/* Mobile/tablet: tagi nie mogą wystawać poza ekran */
@media (max-width: 900px) {
  .section .tag-row,
  .tools-section .tag-row {
    width: 100%;
    max-width: 100%;
    gap: 0.55rem;
  }

  .tools-section,
  .section:has(.tag-row) {
    padding-block: 4.25rem;
  }

  .tools-section h2,
  .section:has(.tag-row) h2 {
    font-size: clamp(2.25rem, 10vw, 3.8rem);
  }
}

@media (max-width: 560px) {
  .tag-row li {
    font-size: 0.78rem;
    padding: 0.42rem 0.58rem;
  }

  .tools-section h2,
  .section:has(.tag-row) h2 {
    font-size: clamp(2.05rem, 12vw, 3.1rem);
  }
}

/* === Fix bottom dark sections: alignment, spacing, chips === */

/* Tagi/chipy mają trzymać się szerokości treści, a nie uciekać do krawędzi ekranu */
.section .tag-row,
.tools-section .tag-row {
  max-width: 980px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  justify-content: flex-start;
}

/* Jeśli tagi są poza wrapem, ograniczamy ich szerokość i centrujemy względem layoutu */
body > .tag-row,
main > .tag-row {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

/* Dolne sekcje: mniej pustki, bardziej zwarte bloki */
.tools-section,
.section:has(.tag-row) {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

/* Nagłówki w dolnych sekcjach trochę mniejsze, żeby nie dominowały całego ekranu */
.tools-section h2,
.section:has(.tag-row) h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5.6vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

/* Opis obok nagłówka ma być czytelny, ale nie wisieć za wysoko */
.section-copy {
  max-width: 620px;
}

/* Chipy: czytelniejsze i bardziej premium */
.tag-row li {
  color: rgba(236, 241, 247, 0.86);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(236, 241, 247, 0.16);
  line-height: 1.2;
}

.tag-row li:hover {
  color: #10151f;
  background: #a9ff00;
  border-color: #a9ff00;
}

/* Sekcja narzędzi nie powinna wyglądać jak rozwalona lista */
.tools-section .tag-row {
  max-width: 860px;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

/* Mobile/tablet: tagi nie mogą wystawać poza ekran */
@media (max-width: 900px) {
  .section .tag-row,
  .tools-section .tag-row {
    width: 100%;
    max-width: 100%;
    gap: 0.55rem;
  }

  .tools-section,
  .section:has(.tag-row) {
    padding-block: 4.25rem;
  }

  .tools-section h2,
  .section:has(.tag-row) h2 {
    font-size: clamp(2.25rem, 10vw, 3.8rem);
  }
}

@media (max-width: 560px) {
  .tag-row li {
    font-size: 0.78rem;
    padding: 0.42rem 0.58rem;
  }

  .tools-section h2,
  .section:has(.tag-row) h2 {
    font-size: clamp(2.05rem, 12vw, 3.1rem);
  }
}

/* === HARD FIX: tag rows alignment === */

.tag-row {
  width: min(100% - 2rem, 1180px) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

/* Węższe tagi w sekcji narzędzi, żeby nie rozwalały szerokości */
.tools-section .tag-row {
  width: min(100% - 2rem, 860px) !important;
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Jeżeli tag-row jest w środku wrapa, niech nie robi podwójnego centrowania */
.wrap .tag-row {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Sekcje z tagami: mniej dziwnej pustki */
section:has(.tag-row) {
  overflow-x: hidden;
}

/* Dla dolnych sekcji ograniczamy nagłówki i treść */
section:has(.tag-row) .wrap {
  max-width: 1180px;
}

.tools-section .wrap {
  max-width: 860px;
}

/* Mobile */
@media (max-width: 760px) {
  .tag-row,
  .tools-section .tag-row {
    width: min(100% - 1.25rem, 100%) !important;
    max-width: 100% !important;
  }
}

/* === FIX: audience + tools alignment and spacing === */

.audience-grid,
.tool-cloud {
  width: min(100% - 2rem, 1180px) !important;
  margin-inline: auto !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 0.72rem !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.audience-grid span,
.tool-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(236, 241, 247, 0.16);
  border-radius: 0.42rem;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(236, 241, 247, 0.86);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 650;
  line-height: 1.2;
}

.audience-grid span:hover,
.tool-cloud span:hover {
  background: #a9ff00;
  border-color: #a9ff00;
  color: #081018;
}

section:has(.audience-grid),
.tools-section {
  padding-block: clamp(4.25rem, 7vw, 6.5rem) !important;
  overflow-x: hidden;
}

section:has(.audience-grid) .split {
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 1.4rem;
}

section:has(.audience-grid) h2,
.tools-section h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.tools-section .section-head {
  max-width: 860px !important;
  margin-inline: auto !important;
}

.tool-cloud {
  max-width: 860px !important;
  margin-top: 1.3rem !important;
}

@media (max-width: 760px) {
  .audience-grid,
  .tool-cloud {
    width: min(100% - 1.25rem, 100%) !important;
    gap: 0.52rem !important;
  }

  .audience-grid span,
  .tool-cloud span {
    min-height: 2.25rem;
    padding: 0.48rem 0.64rem;
    font-size: 0.82rem;
  }

  section:has(.audience-grid),
  .tools-section {
    padding-block: 4rem !important;
  }

  section:has(.audience-grid) h2,
  .tools-section h2 {
    font-size: clamp(2.1rem, 11vw, 3.3rem);
  }
}

/* === Calendly contact embed === */

.calendly-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(236, 241, 247, 0.14);
  border-radius: 1rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.calendly-card-head {
  margin-bottom: 1rem;
}

.calendly-card-head h3 {
  margin: 0.25rem 0 0.55rem;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.calendly-card-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(236, 241, 247, 0.74);
  line-height: 1.55;
}

.calendly-inline-widget {
  width: 100%;
  min-width: 0 !important;
  height: 700px;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #ffffff;
}

@media (max-width: 760px) {
  .calendly-inline-widget {
    height: 760px;
  }
}

/* === Calendly popup integration: cohesive dark card === */

.calendly-popup-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 85% 0%, rgba(169, 255, 0, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  border: 1px solid rgba(169, 255, 0, 0.18);
}

.calendly-popup-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(169,255,0,0.16), transparent 42%);
  opacity: 0.7;
}

.calendly-popup-card > * {
  position: relative;
  z-index: 1;
}

.calendly-popup-card .calendly-card-head h3 {
  max-width: 520px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.calendly-popup-card .calendly-card-head p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(236, 241, 247, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.consultation-points {
  display: grid;
  gap: 0.65rem;
  margin: 1.35rem 0 1.55rem;
}

.consultation-points span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(236, 241, 247, 0.88);
  font-weight: 700;
}

.consultation-points span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #a9ff00;
  box-shadow: 0 0 20px rgba(169, 255, 0, 0.45);
  flex: 0 0 auto;
}

.calendly-popup-button {
  width: 100%;
  justify-content: center;
  margin-top: 0.3rem;
  min-height: 3.25rem;
  font-size: 1rem;
}

.calendly-fallback {
  margin: 1rem 0 0;
  color: rgba(236, 241, 247, 0.64);
  font-size: 0.95rem;
  line-height: 1.5;
}

.calendly-fallback a {
  color: #19f2b1;
  font-weight: 800;
}

.contact-section .contact-copy h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
}

@media (max-width: 900px) {
  .contact-section .contact-copy h2 {
    font-size: clamp(2.55rem, 11vw, 4.2rem);
  }
}

/* === Contact section cleanup after Calendly popup === */

.contact-section {
  overflow-x: hidden;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr) !important;
  gap: clamp(2.5rem, 6vw, 5rem) !important;
  align-items: start !important;
}

.contact-copy {
  min-width: 0;
}

.contact-section .contact-copy h2 {
  max-width: 650px;
  font-size: clamp(3.2rem, 5.2vw, 5.4rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.06em;
}

.contact-copy > p {
  max-width: 620px;
}

.calendly-popup-card {
  max-width: 520px;
  width: 100%;
  justify-self: end;
}

.calendly-popup-card .calendly-card-head h3 {
  font-size: clamp(2rem, 3vw, 3rem) !important;
  max-width: 420px;
}

.calendly-inline-widget {
  display: none !important;
}

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

  .calendly-popup-card {
    max-width: 100%;
    justify-self: stretch;
  }

  .contact-section .contact-copy h2 {
    max-width: 760px;
    font-size: clamp(2.75rem, 10vw, 4.4rem) !important;
  }
}

/* === Final polish: hierarchy, hero card, light section, contact === */

/* Hero: karta bardziej osobista, mniej dashboardowa */
.profile-card {
  padding: clamp(0.9rem, 1.7vw, 1.15rem);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 0.7rem;
}

.profile-card h3 {
  margin-top: 0.85rem;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.profile-card .role,
.profile-card p {
  line-height: 1.5;
}

.profile-stats {
  gap: 0.55rem;
}

.profile-stats li {
  padding: 0.7rem 0.8rem;
}

/* Mniej gęstości w kartach, więcej czytelności */
.bento-card,
.info-card,
.project-card,
.problem-card {
  padding: clamp(1rem, 1.5vw, 1.25rem);
}

.bento-card p,
.info-card p,
.project-card p,
.problem-card p {
  color: rgba(236, 241, 247, 0.78);
}

/* Sekcja problemu ma być mocniejsza, bo to sprzedaje lepiej niż sama lista kompetencji */
.problem-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.072), rgba(255,255,255,0.04));
  border-color: rgba(169, 255, 0, 0.12);
}

.problem-card h3 {
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

/* Jasna sekcja: bardziej premium i spójna */
.light-section {
  padding-block: clamp(5rem, 8vw, 7rem) !important;
}

.light-section h2 {
  font-size: clamp(2.35rem, 5.2vw, 4.6rem) !important;
  max-width: 760px;
}

.light-section .results-grid {
  align-items: stretch;
}

.light-section .result-card {
  min-height: 145px;
  padding: clamp(1rem, 1.7vw, 1.35rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.light-section .result-card strong {
  font-size: clamp(1.6rem, 3.6vw, 2.35rem);
}

.light-section .result-card span {
  margin-top: 0.85rem;
  color: rgba(16, 21, 31, 0.72) !important;
}

/* Dolne nagłówki trochę mniej krzyczą */
section:has(.audience-grid) h2,
.tools-section h2,
.contact-section .contact-copy h2 {
  font-size: clamp(2.7rem, 4.9vw, 4.85rem) !important;
}

/* Kontakt: karta i tekst mają ze sobą współpracować, nie walczyć */
.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr) !important;
}

.contact-section .contact-copy h2 {
  max-width: 620px;
}

.contact-copy address {
  margin-top: 1.35rem;
}

.calendly-popup-card {
  min-height: auto;
  align-self: start;
}

.calendly-popup-card .calendly-card-head h3 {
  font-size: clamp(1.9rem, 2.7vw, 2.7rem) !important;
}

.calendly-popup-button {
  margin-top: 1.1rem;
}

/* CTA zielone: trochę bardziej premium, mniej neonowy klocek */
.cta-box {
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.36), transparent 34%),
    linear-gradient(135deg, #2ee8a4 0%, #a9ff00 88%);
  border: 1px solid rgba(255,255,255,0.26);
}

.cta-box h2 {
  max-width: 660px;
}

/* Mobile */
@media (max-width: 760px) {
  .profile-card img {
    aspect-ratio: 1 / 1;
    object-position: center 24%;
  }

  .light-section .result-card {
    min-height: auto;
  }

  section:has(.audience-grid) h2,
  .tools-section h2,
  .contact-section .contact-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.5rem) !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* === Why section === */

.why-section {
  background:
    radial-gradient(circle at 82% 15%, rgba(25, 242, 177, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.035));
}

.why-section .info-card {
  border-color: rgba(25, 242, 177, 0.13);
}

.why-section .info-card span {
  color: #19f2b1;
}

/* === Compact polish: mniej przewijania, lepszy rytm === */

.section {
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
}

.hero.section {
  padding-block: clamp(6.5rem, 9vw, 8rem) clamp(4.5rem, 7vw, 6rem);
}

.accent-section,
.why-section,
.tools-section,
.contact-section {
  padding-block: clamp(4.5rem, 7vw, 6.25rem) !important;
}

/* Środkowe nagłówki mniej agresywne */
.section-head h2,
.accent-section h2,
.why-section h2,
.tools-section h2,
.contact-section .contact-copy h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.35rem) !important;
  line-height: 1.02 !important;
}

/* Hero zostaje mocne */
.hero h1 {
  font-size: clamp(3rem, 7.6vw, 6.3rem);
}

/* Obszary kompetencji mniej ciężkie */
.bento-grid {
  gap: 0.85rem;
}

.bento-card {
  min-height: auto;
}

.bento-card.large,
.bento-card.tall,
.bento-card.wide {
  min-height: 150px;
}

/* Portfolio bardziej zwarte */
.project-card {
  padding-block: 0.95rem;
}

/* Jasna sekcja trochę niższa */
.light-section {
  padding-block: clamp(4.25rem, 6.5vw, 6rem) !important;
}

.light-section .result-card {
  min-height: 126px;
}

/* Dolny CTA mniej klocek, bardziej sekcja sprzedażowa */
.cta-box {
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 860px;
}

.cta-box h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
}

/* Kontakt: mniej billboardu */
.contact-section .contact-copy h2 {
  font-size: clamp(2.65rem, 4.5vw, 4.45rem) !important;
}

@media (max-width: 760px) {
  .section,
  .accent-section,
  .why-section,
  .tools-section,
  .contact-section {
    padding-block: 3.75rem !important;
  }

  .hero.section {
    padding-top: 6.5rem !important;
  }

  .section-head h2,
  .accent-section h2,
  .why-section h2,
  .tools-section h2,
  .contact-section .contact-copy h2 {
    font-size: clamp(2.05rem, 9.5vw, 3.2rem) !important;
  }
}

/* === Last visual polish: stronger hero, calmer CTA === */

/* Hero ma znowu mieć większy efekt pierwszego ekranu */
.hero.section {
  padding-top: clamp(7.25rem, 10vw, 9rem) !important;
  padding-bottom: clamp(5rem, 8vw, 7rem) !important;
}

.hero h1 {
  font-size: clamp(3.35rem, 8.4vw, 6.8rem) !important;
  line-height: 0.92 !important;
}

.hero-lead {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem) !important;
}

/* Karta profilu niech wygląda bardziej jak element premium */
.profile-card {
  transform: translateY(0);
  border-color: rgba(169, 255, 0, 0.16);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255,255,255,0.035);
}

.profile-card img {
  aspect-ratio: 4 / 3.25;
  object-position: center 22%;
}

/* Zielony CTA mniej "baner reklamowy", bardziej premium */
.cta-box {
  max-width: 840px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,255,255,0.42), transparent 30%),
    linear-gradient(135deg, #35e7a5 0%, #8dfb24 62%, #b8ff1f 100%) !important;
  box-shadow:
    0 28px 90px rgba(124, 255, 26, 0.12),
    0 0 0 1px rgba(255,255,255,0.22);
}

.cta-box h2 {
  font-size: clamp(2.15rem, 4vw, 3.55rem) !important;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.cta-box p {
  max-width: 620px;
  color: rgba(7, 16, 24, 0.78);
}

/* Sekcja kontaktu odrobinę więcej oddechu po mocnym CTA */
.contact-section {
  padding-top: clamp(5rem, 8vw, 7rem) !important;
}

/* Mobile */
@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.3rem) !important;
  }

  .hero.section {
    padding-top: 6.8rem !important;
  }

  .cta-box {
    max-width: 100%;
  }
}

/* === Long-term cooperation section === */

.fit-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(25, 242, 177, 0.10), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(169, 255, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.035));
}

.fit-section .section-head h2 {
  max-width: 780px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.fit-card {
  min-height: 178px;
  padding: clamp(1rem, 1.6vw, 1.3rem);
  border: 1px solid rgba(236, 241, 247, 0.12);
  border-radius: 0.72rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  box-shadow: 0 18px 55px rgba(0,0,0,0.18);
}

.fit-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #a9ff00;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-card h3 {
  margin: 0 0 0.55rem;
  color: #f7f9fc;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.16;
}

.fit-card p {
  margin: 0;
  color: rgba(236, 241, 247, 0.74);
  font-size: clamp(0.94rem, 1.1vw, 1.02rem);
  line-height: 1.56;
}

.fit-card.highlight {
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,0.22), transparent 36%),
    linear-gradient(135deg, rgba(47,225,160,0.92), rgba(169,255,0,0.92));
  border-color: rgba(169,255,0,0.36);
}

.fit-card.highlight span,
.fit-card.highlight h3,
.fit-card.highlight p {
  color: #071018;
}

@media (max-width: 980px) {
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-card {
    min-height: auto;
  }
}

/* === Final CTA copy/layout polish === */

.cta-box {
  max-width: 820px !important;
  padding: clamp(2.1rem, 4vw, 3.1rem) !important;
}

.cta-box h2 {
  max-width: 690px;
  font-size: clamp(2rem, 3.6vw, 3.25rem) !important;
  line-height: 1.02 !important;
}

.cta-box p {
  max-width: 650px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .cta-box h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem) !important;
  }
}

/* === Heading scale down: calmer, more premium typography === */

/* Hero nadal mocne, ale mniej agresywne */
.hero h1 {
  font-size: clamp(2.85rem, 6.8vw, 5.75rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.058em !important;
}

/* Główne nagłówki sekcji */
.section-head h2,
.accent-section h2,
.why-section h2,
.fit-section h2,
.tools-section h2,
.contact-section .contact-copy h2 {
  font-size: clamp(2rem, 3.65vw, 3.65rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.052em !important;
}

/* Jasna sekcja też spokojniej */
.light-section h2 {
  font-size: clamp(2rem, 3.8vw, 3.6rem) !important;
  line-height: 1.04 !important;
}

/* Zielony CTA */
.cta-box h2 {
  font-size: clamp(1.85rem, 3vw, 2.9rem) !important;
  line-height: 1.06 !important;
}

/* Karta Calendly */
.calendly-popup-card .calendly-card-head h3 {
  font-size: clamp(1.65rem, 2.25vw, 2.35rem) !important;
  line-height: 1.04 !important;
}

/* Nagłówki kart */
.info-card h3,
.bento-card h3,
.project-card h3,
.problem-card h3,
.fit-card h3 {
  font-size: clamp(0.98rem, 1.15vw, 1.12rem) !important;
  line-height: 1.2 !important;
}

/* Mobile: mocno pilnujemy, żeby nie było billboardów */
@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.65rem) !important;
    line-height: 0.98 !important;
  }

  .section-head h2,
  .accent-section h2,
  .why-section h2,
  .fit-section h2,
  .tools-section h2,
  .contact-section .contact-copy h2,
  .light-section h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.85rem) !important;
    line-height: 1.07 !important;
  }

  .cta-box h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem) !important;
  }
}

/* === Final CTA readability fix === */

.final-cta .cta-box {
  max-width: 900px !important;
  padding: clamp(2.4rem, 5vw, 3.8rem) !important;
}

.final-cta .cta-box h2 {
  max-width: 760px !important;
  font-size: clamp(2.15rem, 4.2vw, 3.65rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
}

.final-cta .cta-box p {
  max-width: 680px !important;
  font-size: clamp(1rem, 1.35vw, 1.16rem) !important;
  line-height: 1.55 !important;
  color: rgba(7, 16, 24, 0.8) !important;
}

.final-cta .hero-actions {
  margin-top: 1.4rem !important;
}

@media (max-width: 760px) {
  .final-cta .cta-box {
    padding: 1.6rem !important;
  }

  .final-cta .cta-box h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem) !important;
  }
}
