
    :root {
      --bg: #05070b;
      --bg-soft: #0b1018;
      --text: #f5f7fb;
      --muted: #9aa4b2;
      --line: rgba(255,255,255,.12);
      --blue: #1f6fff;
      --blue-soft: rgba(31,111,255,.16);
      --card: rgba(255,255,255,.045);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(5,7,11,.72);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .logo {
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: 18px;
    }
    .logo span { color: var(--blue); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--muted);
      font-size: 14px;
    }
    .nav-links a:hover { color: var(--text); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid transparent;
      transition: .2s ease;
      cursor: pointer;
    }
    .btn-primary {
      background: var(--blue);
      color: white;
      box-shadow: 0 18px 45px rgba(31,111,255,.28);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 60px rgba(31,111,255,.36); }
    .btn-ghost {
      border-color: var(--line);
      color: var(--text);
      background: rgba(255,255,255,.03);
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); }

    .hero {
      min-height: 80vh;
      padding: 138px 0 80px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero:before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 74% 34%, rgba(31,111,255,.34), transparent 28%),
        linear-gradient(90deg, rgba(5,7,11,.98) 0%, rgba(5,7,11,.88) 46%, rgba(5,7,11,.46) 100%),
        url('../img/hero.jpg') center/cover;
      opacity: .96;
    }
    .hero:after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 220px;
      background: linear-gradient(transparent, var(--bg));
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr .75fr;
      gap: 70px;
      align-items: center;
    }
    .eyebrow {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 24px;
    }
    .eyebrow:before {
      content: "";
      width: 42px;
      height: 2px;
      background: var(--blue);
    }
    h1 {
      margin: 0;
      font-size: clamp(46px, 6vw, 84px);
      line-height: .94;
      letter-spacing: -.055em;
      max-width: 860px;
    }
    .hero p {
      margin: 28px 0 0;
      color: #d7dde8;
      font-size: clamp(18px, 2vw, 22px);
      max-width: 690px;
    }
    .hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
    .trust-row {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 42px;
      color: var(--muted);
      font-size: 14px;
    }
    .trust-row strong { color: var(--text); }

    .hero-card {
      align-self: end;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(18px);
      box-shadow: 0 30px 100px rgba(0,0,0,.36);
    }
    .hero-card h3 { margin: 0 0 18px; font-size: 18px; }
    .hero-card ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 14px; color: #d9dfeb; }
    .hero-card li:before { content: "✓"; color: var(--blue); margin-right: 10px; font-weight: 900; }

    section { padding: 105px 0; }
    .section-head { max-width: 760px; margin-bottom: 42px; }
    .section-head.center { margin-inline: auto; text-align: center; }
    h2 {
      font-size: clamp(34px, 4.2vw, 58px);
      line-height: 1;
      letter-spacing: -.045em;
      margin: 0;
    }
    .lead { color: var(--muted); font-size: 18px; margin: 20px 0 0; }

    .stats {
      border-block: 1px solid var(--line);
      padding: 34px 0;
      background: var(--bg-soft);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .stat { padding: 10px 0; }
    .stat strong { display: block; font-size: 34px; letter-spacing: -.04em; }
    .stat span { color: var(--muted); font-size: 14px; }

    .cards-3, .services-grid {
      display: grid;
      gap: 18px;
    }
    .cards-3 { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .card, .service-card, .review {
      border: 1px solid var(--line);
      background: var(--card);
      border-radius: 28px;
      padding: 30px;
      min-height: 230px;
    }
    .card h3, .service-card h3 { margin: 0; font-size: 24px; letter-spacing: -.025em; }
    .card p, .service-card p, .review p { color: var(--muted); margin: 18px 0 0; }
    .card a, .service-card a { display: inline-block; margin-top: 24px; color: var(--blue); font-weight: 800; }

    .split {
      background: #070b12;
      border-block: 1px solid var(--line);
    }
    .split-grid {
      display: grid;
      grid-template-columns: .9fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .photo-block {
      min-height: 560px;
      border-radius: 34px;
      background: url('../img/photo-block.jpg') center/cover;
      box-shadow: 0 30px 80px rgba(0,0,0,.32);
    }
    .reasons { margin-top: 28px; display: grid; gap: 12px; }
    .reason {
      display: flex; align-items: center; gap: 12px;
      color: #dce2ee;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }
    .dot { width: 10px; height: 10px; border-radius: 99px; background: var(--blue); box-shadow: 0 0 0 8px var(--blue-soft); }

    .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .gallery-card {
      min-height: 360px;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid var(--line);
      position: relative;
      background: #111;
    }
    .gallery-card:nth-child(1) { background: url('../img/wnetrze-auto.jpg') center/cover; }
    .gallery-card:nth-child(2) { background: url('../img/lakier.jpg') center/cover; }
    .gallery-card:nth-child(3) { background: url('../img/detal-pracy.jpg') center/cover; }
    .gallery-card span {
      position: absolute; left: 22px; bottom: 22px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(0,0,0,.62);
      border: 1px solid var(--line);
      font-weight: 800;
      font-size: 13px;
    }

    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .stars { color: var(--blue); letter-spacing: .12em; }

    .faq { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
    details { border-bottom: 1px solid var(--line); padding: 24px 0; }
    summary { cursor: pointer; font-size: 20px; font-weight: 800; list-style: none; }
    summary::-webkit-details-marker { display: none; }
    details p { color: var(--muted); max-width: 720px; }

    .location-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 30px;
      align-items: stretch;
    }
    .location-card {
      border: 1px solid var(--line);
      border-radius: 30px;
      padding: 34px;
      background: var(--card);
    }
    .map-wrap {
      width: 100%;
      min-width: 0;
      height: 420px;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #0b1018;
    }
    .map-wrap iframe {
      display: block;
      width: 100% !important;
      max-width: 100%;
      height: 100% !important;
      border: 0;
    }
   
    .final-cta {
      padding: 120px 0;
      background:
        radial-gradient(circle at center, rgba(31,111,255,.18), transparent 34%),
        #020305;
      text-align: center;
      border-top: 1px solid var(--line);
    }
    .final-cta h2 { max-width: 820px; margin: 0 auto; }
    .final-cta .btn { margin-top: 32px; }

    footer {
      border-top: 1px solid var(--line);
      padding: 46px 0;
      color: var(--muted);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      align-items: start;
    }
    footer strong { color: var(--text); }



    .service-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 24px;
    }
    .service-actions a,
    .service-actions button {
      margin-top: 0;
      color: var(--blue);
      font-weight: 800;
      font: inherit;
    }
    .service-quote {
      border: 0;
      background: transparent;
      cursor: pointer;
      padding: 0;
	  appearance: none;
	  -webkit-appearance: none;
	  border-radius: 0;
    }
    .service-quote:hover,
    .service-actions a:hover {
      color: #6ea0ff;
    }

    .contact-actions {
      display: grid;
      gap: 22px;
      margin-top: 34px;
    }
    .contact-action-label {
      color: var(--muted);
      font-size: 14px;
      margin: 0 0 10px;
    }
    .booksy-note {
      display: block;
      color: var(--muted);
      font-size: 12px;
      margin-top: 8px;
      opacity: .78;
    }

    body.modal-open { overflow: hidden; }
    .lead-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 22px;
    }
    .lead-modal.is-open { display: flex; }
    .lead-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.72);
      backdrop-filter: blur(12px);
    }
    .lead-modal__dialog {
      position: relative;
      z-index: 1;
      width: min(620px, 100%);
      max-height: calc(100vh - 44px);
      overflow: auto;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: #070b12;
      box-shadow: 0 40px 120px rgba(0,0,0,.55);
      padding: 34px;
    }
    .lead-modal__close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.04);
      color: var(--text);
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
    }
    .lead-modal__dialog h2 {
      font-size: clamp(30px, 4vw, 46px);
      padding-right: 42px;
    }
    .lead-modal__intro {
      color: var(--muted);
      font-size: 16px;
      margin: 16px 0 26px;
    }
    .lead-form {
      display: grid;
      gap: 16px;
    }
    .lead-form label {
      display: grid;
      gap: 8px;
      color: var(--text);
      font-weight: 700;
      font-size: 14px;
    }
    .lead-form label em {
      color: var(--muted);
      font-style: normal;
      font-weight: 500;
    }
    .lead-form input,
    .lead-form select,
    .lead-form textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255,255,255,.045);
      color: var(--text);
      font: inherit;
      padding: 14px 16px;
      outline: none;
    }
    .lead-form select option { color: #05070b; }
    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
      border-color: rgba(31,111,255,.75);
      box-shadow: 0 0 0 4px var(--blue-soft);
    }
    .lead-form__submit {
      width: 100%;
      margin-top: 8px;
    }
    .lead-form__submit:disabled {
      opacity: .68;
      cursor: not-allowed;
      transform: none;
    }
    .lead-form__message {
      min-height: 22px;
      color: #d7dde8;
      margin: 0;
      font-size: 14px;
    }
    .lead-form__trap {
      position: absolute !important;
      left: -9999px !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    @media (max-width: 900px) {
      .service-actions { align-items: flex-start; }
      .lead-modal__dialog { padding: 28px 22px; border-radius: 24px; }
      .nav-links { display: none; }
      .hero-grid, .split-grid, .location-grid { grid-template-columns: 1fr; }
      .hero-card { max-width: 520px; }
      .stats-grid, .cards-3, .services-grid, .gallery, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
      section { padding: 76px 0; }
      .hero { padding-top: 126px; }
      .photo-block { min-height: 360px; }
    }
	.booksy-wrap {
		position: relative;
		width: 180px;
		height: 44px;
	}

	.nova-booksy-btn {
		position: absolute;
		inset: 0;
		z-index: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 9px;
		background: var(--blue);
		color: #fff;
		font-weight: 700;
		letter-spacing: .03em;
		pointer-events: none;
	}

	.booksy-wrap .booksy-widget-container {
		position: absolute !important;
		inset: 0 !important;
		z-index: 2 !important;
		width: 100% !important;
		height: 100% !important;
	}

	.booksy-wrap .booksy-widget-button {
		opacity: 0 !important;
		width: 100% !important;
		height: 100% !important;
	}

	.booksy-wrap .booksy-business-link {
		display: none !important;
	}
	
	button:disabled,
		.btn:disabled {
		opacity: .65;
		cursor: not-allowed;
		pointer-events: none;
	}

	.lead-price-hint {
	  margin: 8px 0 0;
	  color: var(--muted);
	  font-size: 13px;
	  line-height: 1.4;
	}

  