﻿    :root {
      --primary: #1a3a5c;
      --primary-dark: #0f2840;
      --accent: #2563eb;
      --accent-light: #3b82f6;
      --accent-glow: rgba(37, 99, 235, 0.15);
      --bg: #f8fafc;
      --card: #ffffff;
      --text: #1e293b;
      --text-muted: #64748b;
      --border: #e2e8f0;
      --success: #10b981;
      --shadow: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
      --radius: 16px;
      --radius-sm: 8px;
    }
    
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #ffffff; /* BiaĹ‚e tĹ‚o podczas Ĺ‚adowania */
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    /* === NAVBAR === */
    .navbar {
      position: fixed;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(8.5px);
      -webkit-backdrop-filter: blur(8.5px);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      transition: box-shadow 0.3s ease;
    }
    @media (max-width: 768px) {
      .navbar {
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
      }
    }
    .navbar.scrolled { box-shadow: var(--shadow); }
    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
      position: relative;
    }
    @media (min-width: 769px) {
      .nav-container { justify-content: center; }
      .nav-container > .logo,
      .nav-container > .nav-logo {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
      }
      .nav-links > li:last-child {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
      }
    }
    .logo,
    .nav-logo {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: -280px;
    }
    @media (max-width: 768px) {
      .logo,
      .nav-logo {
        margin-left: 0;
      }
    }
    .logo span { color: var(--accent); }
    .logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--accent); }

    .nav-dropdown { position: relative; }
    .nav-dropdown-toggle { cursor: pointer; }
    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
      list-style: none;
      padding: 18px 0 6px;
      min-width: 180px;
      z-index: 200;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu li a {
      display: block;
      padding: 9px 18px;
      white-space: nowrap;
      font-size: 14px;
      color: var(--text);
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown-menu li a:hover {
      background: var(--bg);
      color: var(--accent);
    }

    .nav-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-weight: 700;
      font-size: 16px;
    }
    .nav-phone svg { color: var(--accent); }
    .nav-cta {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      color: white !important;
      padding: 12px 24px;
      border-radius: 5px;
      font-weight: 600 !important;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }
    
    /* Mobile menu */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }
    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: 0.3s;
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.4);
      z-index: 999;
    }
    .nav-overlay.active {
      display: block;
    }

    /* === HERO === */
    .hero {
      min-height: 80vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 72px;
    }
    .hero-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fc 100%);
      z-index: 0;
      /* OpĂłĹşnione pojawianie siÄ™ tĹ‚a */
      opacity: 0;
      animation: fadeInBg 1.5s ease-out 3s forwards;
    }
    /* Animacja pĹ‚ynnego pojawiania siÄ™ */
    @keyframes fadeInBg {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }
    /* Dekoracyjne okrÄ™gi */
    .hero-bg::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -150px;
      width: 500px;
      height: 500px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.05) 100%);
      border-radius: 50%;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: -100px;
      right: 200px;
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.03) 100%);
      border-radius: 50%;
    }
    .hero-circle-small {
      position: absolute;
      top: 40%;
      right: 35%;
      width: 150px;
      height: 150px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, transparent 100%);
      border-radius: 50%;
      z-index: 0;
      /* OpĂłĹşnione pojawianie siÄ™ */
      opacity: 0;
      animation: fadeInBg 1.5s ease-out 3.5s forwards;
    }
    .hero-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 122px 24px 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-content h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      color: var(--primary);
      line-height: 1.5;
      margin-bottom: 24px;
    }
    .hero-content h1 span { color: var(--accent); }

    /* Trust bar - Social Proof */
    .hero-trust-bar {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
      transform: translateY(-70px);
    }
    .hero-trust-item {
      display: flex;
      flex-direction: column;
    }
    .hero-trust-number {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.2;
    }
    .hero-trust-link {
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .hero-trust-link:hover {
      transform: translateY(-2px);
    }
    .hero-trust-link:hover .hero-trust-label {
      color: var(--accent);
    }
    .hero-trust-label {
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .hero-trust-divider {
      width: 1px;
      height: 32px;
      background: var(--border);
    }

    /* Subtitle - Jobs to Be Done */
    .hero-subtitle {
      font-size: 16px;
      font-weight: 400;
      color: #718096;
      margin-bottom: 12px;
      max-width: 500px;
      line-height: 1.6;
    }

    /* Urgency - Loss Aversion */
    .hero-urgency {
      font-size: 14px;
      color: #e53e3e;
      font-weight: 600;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .hero-urgency::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #e53e3e;
      border-radius: 50%;
      animation: urgencyPulse 2s ease-in-out infinite;
    }
    @keyframes urgencyPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .hero-content p {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 32px;
      max-width: 500px;
    }
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 0;
      grid-column: 1 / -1;
      justify-content: center;
      margin-top: 30px;
      margin-bottom: 30px;
    }
    .hero-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: white;
      padding: 10px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      box-shadow: var(--shadow);
    }
    .hero-badge svg { color: var(--accent); width: 18px; height: 18px; }
    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      border-radius: 5px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      color: white;
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    }
    .btn-outline {
      background: white;
      color: var(--primary);
      border: 2px solid var(--border);
    }
    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-image-wrapper {
      position: relative;
      background: white;
      border-radius: 24px;
      padding: 14px 14px 8px 14px;
      box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
      border: 1px solid rgba(37, 99, 235, 0.1);
    }
    .hero-image-wrapper::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      right: -20px;
      bottom: -20px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
      border-radius: 32px;
      z-index: -1;
    }
    .hero-image-wrapper img {
      max-width: 100%;
      height: auto;
      display: block;
      position: relative;
      z-index: 1;
      border-radius: 12px;
    }
    
    /* WewnÄ™trzny kontener dla Ĺ›niegu i zdjÄ™cia */
    .hero-image-inner {
      position: relative;
      overflow: hidden; /* Obcina Ĺ›nieg do obszaru zdjÄ™cia */
      border-radius: 12px;
    }
    
    /* === ĹšNIEG - TYLKO W OBSZARZE ZDJÄCIA BAĹWANKA === */
    .hero-snow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 10;
      overflow: hidden;
    }
    .hero-snowflake {
      position: absolute;
      top: 0;
      opacity: 0;
      animation: heroSnowfall linear infinite;
    }
    @keyframes heroSnowfall {
      0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 0.9;
      }
      5% { opacity: 0.9; }
      95% { opacity: 0.7; }
      100% {
        transform: translateY(350px) rotate(360deg) translateX(15px);
        opacity: 0;
      }
    }
    /* =====================================================
       USTAWIENIA PRÄDKOĹšCI ĹšNIEGU
       =====================================================
       Aby zmieniÄ‡ prÄ™dkoĹ›Ä‡ Ĺ›niegu, edytuj wartoĹ›ci "animation-duration"
       poniĹĽej. WiÄ™ksza liczba = wolniejszy Ĺ›nieg (np. 12s = wolny)
       Mniejsza liczba = szybszy Ĺ›nieg (np. 4s = szybki)
       
       Obecne ustawienia: 8-12 sekund (wolny, spokojny Ĺ›nieg)
       ===================================================== */
    .hero-snowflake:nth-child(1) { left: 5%; animation-duration: 8s; animation-delay: 0s; font-size: 14px; color: #ADD8E6; text-shadow: 0 0 4px #ADD8E6; } /* Light Blue */
    .hero-snowflake:nth-child(2) { left: 12%; animation-duration: 10s; animation-delay: 0.5s; font-size: 12px; color: #87CEEB; text-shadow: 0 0 4px #87CEEB; } /* Sky Blue */
    .hero-snowflake:nth-child(3) { left: 20%; animation-duration: 9s; animation-delay: 1s; font-size: 10px; color: #B0E0E6; text-shadow: 0 0 4px #B0E0E6; } /* Powder Blue */
    .hero-snowflake:nth-child(4) { left: 28%; animation-duration: 11s; animation-delay: 0.3s; font-size: 15px; color: #1E90FF; text-shadow: 0 0 5px #1E90FF; } /* Dodger Blue */
    .hero-snowflake:nth-child(5) { left: 35%; animation-duration: 8s; animation-delay: 1.5s; font-size: 11px; color: #00BFFF; text-shadow: 0 0 4px #00BFFF; } /* Deep Sky Blue */
    .hero-snowflake:nth-child(6) { left: 42%; animation-duration: 10s; animation-delay: 0.8s; font-size: 13px; color: #87CEFA; text-shadow: 0 0 4px #87CEFA; } /* Light Sky Blue */
    .hero-snowflake:nth-child(7) { left: 50%; animation-duration: 8.5s; animation-delay: 1.2s; font-size: 12px; color: #6495ED; text-shadow: 0 0 5px #6495ED; } /* Cornflower Blue */
    .hero-snowflake:nth-child(8) { left: 58%; animation-duration: 10.5s; animation-delay: 0.2s; font-size: 14px; color: #4169E1; text-shadow: 0 0 5px #4169E1; } /* Royal Blue */
    .hero-snowflake:nth-child(9) { left: 65%; animation-duration: 9.5s; animation-delay: 1.8s; font-size: 10px; color: #4682B4; text-shadow: 0 0 5px #4682B4; } /* Steel Blue */
    .hero-snowflake:nth-child(10) { left: 72%; animation-duration: 10s; animation-delay: 0.6s; font-size: 13px; color: #87CEEB; text-shadow: 0 0 4px #87CEEB; } /* Sky Blue */
    .hero-snowflake:nth-child(11) { left: 80%; animation-duration: 8.5s; animation-delay: 2s; font-size: 11px; color: #B0E0E6; text-shadow: 0 0 4px #B0E0E6; } /* Powder Blue */
    .hero-snowflake:nth-child(12) { left: 88%; animation-duration: 11s; animation-delay: 2.5s; font-size: 15px; color: #00BFFF; text-shadow: 0 0 5px #00BFFF; } /* Deep Sky Blue */
    .hero-snowflake:nth-child(13) { left: 95%; animation-duration: 9s; animation-delay: 3s; font-size: 12px; color: #6495ED; text-shadow: 0 0 4px #6495ED; } /* Cornflower Blue */
    .hero-snowflake:nth-child(14) { left: 8%; animation-duration: 10s; animation-delay: 3.5s; font-size: 10px; color: #ADD8E6; text-shadow: 0 0 5px #ADD8E6; } /* Light Blue */
    .hero-snowflake:nth-child(15) { left: 25%; animation-duration: 9s; animation-delay: 4s; font-size: 14px; color: #87CEFA; text-shadow: 0 0 4px #87CEFA; } /* Light Sky Blue */
    .hero-snowflake:nth-child(16) { left: 45%; animation-duration: 11s; animation-delay: 4.5s; font-size: 13px; color: #1E90FF; text-shadow: 0 0 5px #1E90FF; } /* Dodger Blue */
    .hero-snowflake:nth-child(17) { left: 62%; animation-duration: 8s; animation-delay: 5s; font-size: 13px; color: #4169E1; text-shadow: 0 0 5px #4169E1; } /* Royal Blue */
    .hero-snowflake:nth-child(18) { left: 78%; animation-duration: 12s; animation-delay: 5.5s; font-size: 12px; color: #87CEEB; text-shadow: 0 0 4px #87CEEB; } /* Sky Blue */
    .hero-snowflake:nth-child(19) { left: 15%; animation-duration: 9.5s; animation-delay: 6s; font-size: 14px; color: #5F9EA0; text-shadow: 0 0 5px #5F9EA0; } /* Cadet Blue */
    .hero-snowflake:nth-child(20) { left: 55%; animation-duration: 12s; animation-delay: 6.5s; font-size: 12px; color: #00CED1; text-shadow: 0 0 5px #00CED1; } /* Dark Turquoise */
    
    /* === SECTIONS === */
    section { padding: 36px 24px; }
    .container { max-width: 1280px; margin: 0 auto; }
    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 14px auto 48px;
    }
    .section-badge {
      display: inline-block;
      background: var(--accent-glow);
      color: #1e40af;
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 26px;
      margin-bottom: 16px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 16px;
    }
    .section-desc {
      font-size: 17px;
      color: var(--text-muted);
    }
    
    /* === AREA SELECTOR === */
    .area-section {
      background: transparent;
      padding: 108px 24px;
      margin-top: 72px;
      position: relative;
      overflow: visible;
    }
    .area-section::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: calc((100vw - 1250px) / 2);
      right: calc((100vw - 1250px) / 2);
      background: #1e5fc9;
      border-radius: 24px;
      z-index: 0;
    }
    .area-section::after {
      content: none;
    }

    .area-wave {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      max-width: 1250px;
      width: 100%;
    }
    .area-wave svg {
      display: block;
      width: 100%;
      height: 50px;
    }
    .area-wave-top {
      top: 0;
    }
    .area-wave-left,
    .area-wave-right {
      top: -20px;
      bottom: -20px;
      width: 200px;
      max-width: none;
      transform: none;
      left: auto;
      right: auto;
    }
    .area-wave-left {
      left: calc((100vw - 1250px) / 2 - 100px);
    }
    .area-wave-right {
      right: calc((100vw - 1250px) / 2 - 100px);
    }
    .area-wave-left svg,
    .area-wave-right svg {
      width: 100%;
      height: 100%;
    }
    .area-wave-bottom {
      bottom: 0;
    }
    .area-section .section-title { color: white; position: relative; z-index: 2; }
    .area-section .section-desc { color: #ffffff; position: relative; z-index: 2; }
    .area-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 19px;
      margin-top: 63px;
      position: relative;
      z-index: 2;
    }
    .area-btn {
      background: rgba(255,255,255,0.1);
      border: 2px solid rgba(255,255,255,0.2);
      color: white;
      padding: 24px 43px;
      border-radius: 18px;
      font-size: 21px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }
    .area-btn:hover, .area-btn.active {
      background: white;
      color: var(--primary);
      border-color: white;
      transform: translateY(-4px);
      box-shadow: 0 0 16px rgba(255,255,255,0.18);
    }
    
    /* === SNOW ANIMATION === */
    .snowflakes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
      z-index: 1;
    }
    .area-section > .snowflakes {
      left: calc((100vw - 1250px) / 2);
      right: calc((100vw - 1250px) / 2);
      width: auto;
      border-radius: 24px;
      overflow: hidden;
    }
    .area-section .snowflake {
      animation-name: fall-area;
    }
    @keyframes fall-area {
      0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
      10% { opacity: 0.8; }
      90% { opacity: 0.8; }
      100% { transform: translateY(720px) rotate(360deg); opacity: 0; }
    }
    .snowflake {
      position: absolute;
      top: -20px;
      color: white;
      font-size: 1em;
      text-shadow: 0 0 5px rgba(255,255,255,0.5);
      animation: fall linear infinite;
      opacity: 0.8;
    }
    @keyframes fall {
      0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
      10% { opacity: 0.8; }
      90% { opacity: 0.8; }
      100% { transform: translateY(400px) rotate(360deg); opacity: 0; }
    }
    .snowflake:nth-child(1) { left: 5%; animation-duration: 8s; animation-delay: 0s; font-size: 0.8em; }
    .snowflake:nth-child(2) { left: 10%; animation-duration: 12s; animation-delay: 1s; font-size: 1.2em; }
    .snowflake:nth-child(3) { left: 15%; animation-duration: 10s; animation-delay: 2s; font-size: 0.9em; }
    .snowflake:nth-child(4) { left: 20%; animation-duration: 9s; animation-delay: 0.5s; font-size: 1.1em; }
    .snowflake:nth-child(5) { left: 25%; animation-duration: 11s; animation-delay: 3s; font-size: 0.7em; }
    .snowflake:nth-child(6) { left: 30%; animation-duration: 8s; animation-delay: 1.5s; font-size: 1em; }
    .snowflake:nth-child(7) { left: 35%; animation-duration: 13s; animation-delay: 2.5s; font-size: 1.3em; }
    .snowflake:nth-child(8) { left: 40%; animation-duration: 9s; animation-delay: 0.8s; font-size: 0.85em; }
    .snowflake:nth-child(9) { left: 45%; animation-duration: 10s; animation-delay: 4s; font-size: 1.15em; }
    .snowflake:nth-child(10) { left: 50%; animation-duration: 7s; animation-delay: 1.2s; font-size: 0.95em; }
    .snowflake:nth-child(11) { left: 55%; animation-duration: 11s; animation-delay: 3.5s; font-size: 1.05em; }
    .snowflake:nth-child(12) { left: 60%; animation-duration: 8s; animation-delay: 0.3s; font-size: 0.75em; }
    .snowflake:nth-child(13) { left: 65%; animation-duration: 12s; animation-delay: 2.2s; font-size: 1.25em; }
    .snowflake:nth-child(14) { left: 70%; animation-duration: 9s; animation-delay: 1.8s; font-size: 0.9em; }
    .snowflake:nth-child(15) { left: 75%; animation-duration: 10s; animation-delay: 4.5s; font-size: 1.1em; }
    .snowflake:nth-child(16) { left: 80%; animation-duration: 8s; animation-delay: 0.7s; font-size: 0.8em; }
    .snowflake:nth-child(17) { left: 85%; animation-duration: 11s; animation-delay: 2.8s; font-size: 1em; }
    .snowflake:nth-child(18) { left: 90%; animation-duration: 9s; animation-delay: 1.3s; font-size: 1.2em; }
    .snowflake:nth-child(19) { left: 95%; animation-duration: 10s; animation-delay: 3.2s; font-size: 0.85em; }
    .snowflake:nth-child(20) { left: 3%; animation-duration: 12s; animation-delay: 0.2s; font-size: 1.15em; }
    .snowflake:nth-child(21) { left: 8%; animation-duration: 7s; animation-delay: 2.7s; font-size: 0.7em; }
    .snowflake:nth-child(22) { left: 18%; animation-duration: 9s; animation-delay: 4.2s; font-size: 1.3em; }
    .snowflake:nth-child(23) { left: 28%; animation-duration: 11s; animation-delay: 1.7s; font-size: 0.95em; }
    .snowflake:nth-child(24) { left: 38%; animation-duration: 8s; animation-delay: 3.8s; font-size: 1.05em; }
    .snowflake:nth-child(25) { left: 48%; animation-duration: 10s; animation-delay: 0.9s; font-size: 0.75em; }
    .snowflake:nth-child(26) { left: 58%; animation-duration: 9s; animation-delay: 2.3s; font-size: 1.1em; }
    .snowflake:nth-child(27) { left: 68%; animation-duration: 12s; animation-delay: 4.8s; font-size: 0.9em; }
    .snowflake:nth-child(28) { left: 78%; animation-duration: 8s; animation-delay: 1.1s; font-size: 1.2em; }
    .snowflake:nth-child(29) { left: 88%; animation-duration: 10s; animation-delay: 3.3s; font-size: 0.8em; }
    .snowflake:nth-child(30) { left: 98%; animation-duration: 11s; animation-delay: 0.6s; font-size: 1em; }
    
    /* === BRANDS === */
    .brands-section {
      background: transparent;
      padding: 90px 24px;
      position: relative;
      overflow: visible;
    }
    .brands-section > .snowflakes {
      left: calc((100vw - 1250px) / 2);
      right: calc((100vw - 1250px) / 2);
      width: auto;
      border-radius: 24px;
      overflow: hidden;
    }
    .brands-section .snowflake {
      color: #2563eb;
      text-shadow: 0 0 5px rgba(37, 99, 235, 0.35);
      opacity: 0.5;
      animation-name: fall-brands;
    }
    @keyframes fall-brands {
      0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
      10% { opacity: 0.5; }
      90% { opacity: 0.5; }
      100% { transform: translateY(720px) rotate(360deg); opacity: 0; }
    }
    .brands-section::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: calc((100vw - 1250px) / 2);
      right: calc((100vw - 1250px) / 2);
      background: #eff6ff;
      border-radius: 24px;
      z-index: 0;
    }
    .brands-section .container {
      position: relative;
      z-index: 2;
    }
    .brands-wave {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      max-width: 1250px;
      width: 100%;
    }
    .brands-wave svg {
      display: block;
      width: 100%;
      height: 50px;
    }
    .brands-wave-top { top: 0; }
    .brands-wave-bottom { bottom: 0; }
    .brands-wave-left,
    .brands-wave-right {
      top: -20px;
      bottom: -20px;
      width: 200px;
      max-width: none;
      transform: none;
      left: auto;
      right: auto;
    }
    .brands-wave-left { left: calc((100vw - 1250px) / 2 - 100px); }
    .brands-wave-right { right: calc((100vw - 1250px) / 2 - 100px); }
    .brands-wave-left svg,
    .brands-wave-right svg {
      width: 100%;
      height: 100%;
    }
    .brands-section .section-title {
      color: #1a3a52;
      text-shadow:
        4px 4px 6px rgba(0,0,0,0.15),
        2px 2px 3px rgba(0,0,0,0.1),
        -1px -1px 2px rgba(255,255,255,0.9);
    }
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 900px;
      margin: 0 auto;
      background: transparent;
      border: none;
      border-radius: 10px;
      padding: 0;
      box-shadow: none;
    }
    .brand-card {
      background-color: #ffffff;
      background-image: none;
      border: 1px solid var(--border);
      color: var(--primary);
      border-radius: 12px;
      padding: 24px 28px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: block;
      box-shadow: 0 16px 40px rgba(100, 120, 200, 0.30);
    }
    .brand-card:hover, .brand-card.active {
      background: #1e5fc9;
      border-color: #1e5fc9;
      color: white;
      transform: translateY(-4px);
      box-shadow:
        0 6px 14px rgba(30,95,201,0.15),
        0 0 14px rgba(30,95,201,0.18);
    }
    .brand-card:hover .brand-name,
    .brand-card.active .brand-name,
    .brand-card:hover .brand-country,
    .brand-card.active .brand-country {
      color: rgba(255,255,255,0.85);
    }
    .brand-card:hover .brand-logo,
    .brand-card.active .brand-logo {
      color: white !important;
    }
    .brand-logo {
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 24px;
      font-weight: 800;
      color: var(--primary);
      white-space: nowrap;
    }
    .brand-card[data-brand="gree"] .brand-logo { color: #00a651; }
    .brand-card[data-brand="lg"] .brand-logo { color: #a50034; }
    .brand-card[data-brand="kaisai"] .brand-logo { color: #e31e24; }
    .brand-card[data-brand="mitsubishi"] .brand-logo { color: #ed1c24; }
    .brand-card[data-brand="daikin"] .brand-logo { color: #006080; }
    .brand-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 14px;
    }
    .brand-country {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 10px;
    }
    
    .products-section .section-badge { margin-top: 0; margin-bottom: 10px; }
    .products-section .section-header { margin-top: 0; margin-bottom: 24px; }
    .products-section .container { padding-top: 24px; }

    /* === PRODUCTS === */
    .products-section {
      background: transparent;
      padding-top: 40px;
      padding-bottom: 50px;
    }

    .products-section .container {
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 12px 50px rgba(100, 120, 200, 0.25);
      padding: 40px 36px;
      margin-bottom: 20px;
    }

    .products-section .product-card {
      box-shadow: 0 6px 24px rgba(100, 120, 200, 0.18);
    }

    .products-section .product-card:hover {
      box-shadow: 0 16px 48px rgba(100, 120, 200, 0.32);
    }



    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    
    /* === KARTA PRODUKTU (styl z katalogu Gree) === */
    .product-card {
      background: var(--card);
      border-radius: 5px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.4s ease;
      border: 1px solid var(--border);
    }
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
    }
    .card-image {
      position: relative;
      height: 200px;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .card-image img {
      max-width: 85%;
      max-height: 85%;
      object-fit: contain;
      transition: transform 0.4s ease;
    }
    .product-card:hover .card-image img {
      transform: scale(1.05);
    }
    .energy-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: #fff;
      padding: 3px 8px;
      border-radius: 5px;
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    .energy-badge.a-plus-plus-plus {
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
    .card-body {
      padding: 0 20px 18px 20px;
    }
    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--primary);
      margin: 0 0 10px 0;
    }
    .card-features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 8px;
      justify-content: center;
    }
    .card-features-row {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      margin-bottom: 9px;
      justify-content: center;
    }
    .feature-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: var(--primary);
      font-weight: 600;
      background: #f8fafc;
      padding: 5px 10px;
      border-radius: 6px;
      border: 1px solid var(--border);
      box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    }
    .feature-item .icon {
      font-size: 13px;
    }
    .card-specs {
      border-top: 1px solid var(--border);
      padding-top: 12px;
      margin-bottom: 12px;
    }
    .spec-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4px 0;
      font-size: 13px;
    }
    .spec-label { color: var(--text-muted); }
    .spec-value { font-weight: 700; color: var(--primary); }
    
    /* PiguĹ‚ki klas energetycznych */
    .energy-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
      background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
      border: 1.5px solid #0ea5e9;
      color: #0369a1;
    }
    .energy-pill-heating {
      background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
      border: 1.5px solid #f59e0b;
      color: #92400e;
    }
    
    .card-colors {
      margin-bottom: 14px;
    }
    .colors-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }
    .color-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .color-tag {
      font-size: 11px;
      padding: 4px 10px;
      background: #f1f5f9;
      border: 1px solid var(--border);
      border-radius: 5px;
      color: var(--primary);
      font-weight: 500;
    }
    
    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }
    .card-price {
      font-size: 12px;
      color: var(--text-muted);
    }
    .card-price span {
      display: block;
      font-size: 22px;
      font-weight: 800;
      color: var(--accent);
    }
    .btn-details {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: var(--primary);
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      font-size: 13px;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .btn-details:hover {
      background: var(--accent);
      transform: translateX(3px);
    }
    .btn-details svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
    }
    .btn-details:hover svg {
      transform: translateX(3px);
    }
    
    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .products-grid { grid-template-columns: 1fr; }
    }
    
    
    /* === WHY US === */
    .why-section {
      background: var(--bg);
      position: relative;
      overflow: hidden;
      margin-top: 80px;
      padding: 90px 24px 120px;
    }
    .why-section .section-title { color: var(--primary); }
    .why-section .section-desc { color: var(--text-muted); }
    .why-section .section-header .section-badge {
      background: rgba(37,99,235,0.10);
      color: var(--accent);
      border: 1px solid rgba(37,99,235,0.20);
    }

    /* === WHY US — karty === */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1100px;
      margin: 60px auto 0;
    }
    .why-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px 32px;
      text-align: center;
      transition: all 0.3s;
    }
    .why-card:hover {
      background: white;
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }
    .why-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: rgba(0, 168, 157, 0.12);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .why-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 12px;
    }
    .why-card p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-muted);
      margin: 0;
    }

    /* === STEPS === */
    .steps-section {
      background: white;
      position: relative;
      overflow: hidden;
    }
    .steps-section::before {
      content: '';
      position: absolute;
      inset: 0;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .step-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 56px 32px 40px;
      text-align: center;
      position: relative;
      transition: all 0.3s;
    }
    .step-card:hover {
      background: white;
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }
    .step-number {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 44px;
      height: 44px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
      color: white;
    }
    .step-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: rgba(26, 58, 82, 0.10);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .step-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 12px;
    }
    .step-card p {
      font-size: 15px;
      color: var(--text-muted);
    }
    
    /* === CONTACT === */
    .contact-section { background: var(--bg); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .contact-info h3 {
      font-size: 28px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 16px;
    }
    .contact-info p {
      color: var(--text-muted);
      margin-bottom: 32px;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px;
      background: white;
      border-radius: var(--radius-sm);
      margin-bottom: 16px;
      transition: box-shadow 0.2s;
    }
    .contact-item:hover { box-shadow: var(--shadow); }
    .contact-icon {
      width: 52px;
      height: 52px;
      background: var(--accent-glow);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--accent);
    }
    .contact-item strong {
      display: block;
      font-size: 16px;
      color: var(--primary);
      margin-bottom: 4px;
    }
    .contact-item span {
      font-size: 14px;
      color: var(--text-muted);
    }
    .contact-form {
      background: white;
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow);
    }
    .contact-form h3 {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 24px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-family: inherit;
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--accent);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      color: white;
      border: none;
      border-radius: var(--radius-sm);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
    }
    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }
    
    /* === FOOTER === */
    footer {
      background: var(--primary-dark);
      color: white;
      padding: 60px 24px 24px;
    }
    footer .logo span { color: #60a5fa; } /* JaĹ›niejszy niebieski dla lepszego kontrastu */
    .footer-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand p {
      color: rgba(255,255,255,0.8);
      margin: 16px 0 24px;
      max-width: 300px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: background 0.2s;
    }
    .footer-social a:hover { background: var(--accent); }
    .footer-col h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .footer-col ul {
      list-style: none;
    }
    .footer-col li { margin-bottom: 12px; }
    .footer-col a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: white; }
    .footer-bottom {
      max-width: 1280px;
      margin: 0 auto;
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: rgba(255,255,255,0.8);
    }
    
    /* === MOBILE === */
    @media (max-width: 1300px) {
      .area-wave-left, .area-wave-right,
      .brands-wave-left, .brands-wave-right {
        display: none;
      }
    }

    @media (max-width: 1024px) {
      .hero-container { grid-template-columns: 1fr; text-align: center; }
      .hero-content p { margin: 0 auto 32px; }
      .hero-trust-bar { justify-content: center; }
      .hero-subtitle { margin: 0 auto 12px; }
      .hero-urgency { justify-content: center; }
      .hero-badges { justify-content: center; }
      .hero-buttons { justify-content: center; }
      .hero-visual { margin-top: 40px; }
      .hero-bg { width: 100%; clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%); }
      .brands-grid { grid-template-columns: repeat(3, 1fr); }
      .why-grid { grid-template-columns: 1fr; max-width: 400px; margin: 60px auto 0; }
      .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    
    /* Ukrycie tekstu logo w zakresie 769-865px */
    @media (min-width: 769px) and (max-width: 865px) {
      .logo-text {
        display: none;
      }
    }
    
    @media (max-width: 768px) {
      .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--card); padding: 16px 0 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.10); gap: 0; }
      .nav-links.active { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; padding: 12px 24px; font-size: 16px; }
      .nav-dropdown-menu { display: none; position: static; transform: none; box-shadow: none; border: none; border-radius: 0; padding: 0; background: var(--bg); }
      .nav-dropdown.open .nav-dropdown-menu { display: block; }
      .nav-dropdown-menu li a { padding: 10px 36px; font-size: 15px; color: var(--muted); }
      .hamburger { display: flex; }
      .nav-phone { display: none; }
      .hero { min-height: auto; padding: 72px 0 0; }
      .hero-container { padding: 0 24px; }
      .hero-badges { margin-bottom: 32px; }
      .hero-image-wrapper { margin-top: -45px; }
      .brands-grid { grid-template-columns: repeat(2, 1fr); }
      .brand-card { padding: 24px 16px; }
      .brand-card:nth-child(3) { grid-column: 1 / -1; }
      .why-card { padding: 1.4rem 1.2rem; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; text-align: center; }
      .footer-brand p { margin: 16px auto 24px; }
      .footer-social { justify-content: center; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .area-section::before,
      .brands-section::before { border-radius: 0; left: 0; right: 0; }
      .area-section > .snowflakes,
      .brands-section > .snowflakes { left: 0; right: 0; border-radius: 0; }
      .area-section { padding: 72px 16px; margin-top: 48px; }
      .brands-section { padding: 60px 16px; }
      .area-wave-top, .area-wave-bottom { max-width: 100vw; }
      .brands-wave-top, .brands-wave-bottom { max-width: 100vw; }
    }
    
    @media (max-width: 480px) {
      .brands-grid { grid-template-columns: 1fr; }
      .area-btn { width: 100%; justify-content: center; }
      .brand-card:nth-child(3) { grid-column: auto; }
    }
    
    /* Obrazek hero na peĹ‚nÄ… szerokoĹ›Ä‡ od 677px w dĂłĹ‚ */
    @media (max-width: 677px) {
      .hero-image-wrapper {
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: transparent;
      }
      .hero-image-wrapper::before {
        display: none;
      }
      .hero-image-inner {
        border-radius: 0;
        overflow: visible;
      }
      .hero-image-inner img {
        border-radius: 0;
        width: 100%;
        box-shadow: 0 -15px 25px rgba(0,0,0,0.1), 0 15px 25px rgba(0,0,0,0.1);
      }
      .hero-visual {
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
      }
      .hero-container {
        gap: 0 !important;
      }
      .hero-content h1 {
        margin-bottom: 58px;
      }
    }

    /* === NOWE LOGO Z EMOJI ĹšNIEĹ»YNKI === */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo-snowflake {
      font-size: 34px;
    }
    .logo-text-new {
      font-size: 22px;
      font-weight: 800;
    }
    .logo-text-black {
      color: #1a3a52;
    }
    .logo-text-blue {
      color: #2563eb;
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: end;
      }
      .contact-info a {
        text-decoration: none;
        color: inherit;
      }
      .contact-info a:hover {
        color: #1a73e8;
      }
      .contact-map iframe {
        width: 100%;
        height: 420px;
        border: 0;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
      }
      @media (max-width: 768px) {
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .contact-map iframe {
          height: 300px;
        }
      }





      /* Dodatkowe style kaĹĽdej z podstron pod spodem */

            /* Breadcrumb + CTA - unikalne dla podstrony */
      .breadcrumb {
        font-size: 0.9rem;
        color: #64748b;
        margin-bottom: 1.0rem;
      }
      .breadcrumb a {
        color: #1a73e8;
        text-decoration: none;
      }
      .breadcrumb a:hover {
        text-decoration: underline;
      }
      .hero-cta-row {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
        flex-wrap: nowrap;
      }
      .hero-cta-row a {
        text-decoration: none;
      }
      .hero-cta-row .cta-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: #1a73e8;
        color: #fff;
        padding: 0.9rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        transition: background 0.2s;
      }
      .hero-cta-row .cta-primary:hover {
        background: #1557b0;
      }
      .hero-cta-row .cta-outline {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: #fff;
        color: #1a73e8;
        padding: 0.9rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        border: 2px solid #1a73e8;
        transition: all 0.2s;
      }
      .hero-cta-row .cta-outline:hover {
        background: #1a73e8;
        color: #fff;
      }

      /* Content sections */
      .content-section {
        padding: 4rem 0;
        background: #f8fafc;
      }
      .content-section .container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }
      .content-section h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: #1a3a52;
        margin-bottom: 1rem;
      }
      .content-section h3 {
        font-size: 1.3rem;
        color: #1a3a52;
        margin: 2rem 0 0.8rem;
      }
      .content-section p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 1rem;
        font-size: 1.05rem;
      }
      .content-alt {
        background: #eff6ff;
      }

      /* Info boxes */
      .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
      }
      .info-box {
        background: #fff;
        border-radius: 16px;
        padding: 1.8rem;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        border: 1px solid #e2e8f0;
      }
      .info-box .icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
      }
      .info-box h3 {
        margin: 0 0 0.5rem;
        font-size: 1.15rem;
      }
      .info-box p {
        font-size: 0.95rem;
        margin: 0;
      }

      /* Price table */
      .price-table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0 2rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      }
      .price-table th {
        background: #2563eb;
        color: #fff;
        padding: 1rem 1.2rem;
        text-align: left;
        font-weight: 600;
      }
      .price-table td {
        padding: 0.9rem 1.2rem;
        border-bottom: 1px solid #e2e8f0;
        color: #334155;
      }
      .price-table tr:nth-child(even) {
        background: #eff6ff;
      }
      .price-table tr:last-child td {
        border-bottom: none;
      }

      /* FAQ */
      .faq-section {
        padding: 4rem 0;
        background: #eff6ff;
      }
      .faq-section .container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }
      .faq-section h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: #1a3a52;
        margin-bottom: 2rem;
        text-align: center;
      }
      .faq-item {
        background: #fff;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        box-shadow: 0 1px 6px rgba(0,0,0,0.04);
        border: 1px solid #e2e8f0;
      }
      .faq-item h3 {
        font-size: 1.1rem;
        color: #1a3a52;
        margin: 0 0 0.6rem;
      }
      .faq-item p {
        color: #475569;
        line-height: 1.7;
        margin: 0;
        font-size: 0.98rem;
      }

      /* CTA bottom */
      .cta-bottom {
        background: linear-gradient(135deg, #2563eb 0%, #1a3a52 100%);
        padding: 4rem 0;
        text-align: center;
        color: #fff;
      }
      .cta-bottom .container {
        max-width: 700px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }
      .cta-bottom h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #fff;
      }
      .cta-bottom p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 2rem;
        color: #fff;
      }
      .cta-bottom .btn-white {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: #fff;
        color: #2563eb;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        transition: transform 0.2s, box-shadow 0.2s;
      }
      .cta-bottom .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      }

      /* Districts grid */
      .districts-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin: 1.5rem 0;
      }
      .districts-grid span {
        background: #eff6ff;
        color: #2563eb;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
      }

      @media (max-width: 768px) {
        .hero-cta-row {
          flex-wrap: wrap;
        }
        .info-grid {
          grid-template-columns: 1fr;
        }
        .price-table {
          font-size: 0.9rem;
        }
      }

      /* =============================================
       REALIZACJE
       ============================================= */
    .realizacje-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #2563eb 0%, #1e5fc9 100%);
    }
    .realizacje-section .section-badge {
      background: rgba(255,255,255,0.15);
      color: white;
    }
    .realizacje-section .section-title {
      color: white;
    }
    .realizacje-section .section-desc {
      color: rgba(255,255,255,0.85);
    }
    .realizacje-section .btn-outline {
      background: transparent;
      border-color: white;
      color: white;
    }
    .realizacje-section .btn-outline:hover {
      background: white;
      color: #2563eb;
    }
    .realizacje-section .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .realizacje-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .realizacja-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      border: 1px solid #e2e8f0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .realizacja-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    }
    .realizacja-img {
      width: 100%;
      height: 280px;
      overflow: hidden;
    }
    .realizacja-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .realizacja-info {
      padding: 20px;
    }
    .realizacja-dzielnica {
      display: inline-block;
      background: #e8f4fd;
      color: #1a73e8;
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .realizacja-info p {
      font-size: 14px;
      color: #475569;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 992px) {
      .realizacje-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 576px) {
      .realizacje-grid {
        grid-template-columns: 1fr;
      }
      .realizacja-img {
        height: 240px;
      }
    }

