    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; height: 100%; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #08080d;
      color: #e0e0e0;
      min-height: 100%;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    :root {
      --accent: #f59e0b;
      --accent-light: #fbbf24;
      --accent-dark: #d97706;
      --accent-glow: rgba(245, 158, 11, 0.4);
      --bg-primary: #08080d;
      --bg-secondary: #0d0d14;
      --bg-card: rgba(18, 18, 28, 0.7);
      --bg-navbar: rgba(8, 8, 13, 0.75);
      --text-primary: #f5f5fa;
      --text-secondary: #a1a1b5;
      --text-muted: #6b7280;
      --border: rgba(255, 255, 255, 0.06);
      --glass-border: rgba(255, 255, 255, 0.08);
      --max-width: 1200px;
      --nav-height: 72px;
    }

    /* Custom Dialog Styles */
    #custom-dialog-overlay {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 20000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    #custom-dialog-overlay.visible {
      opacity: 1;
      pointer-events: auto;
    }

    /* Standard / Material Style */
    .custom-dialog-standard {
      background: #1e1e24;
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 24px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
      color: var(--text-primary);
      text-align: center;
      transform: scale(0.95);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    #custom-dialog-overlay.visible .custom-dialog-standard {
      transform: scale(1);
    }
    .custom-dialog-standard h3 {
      margin-bottom: 12px;
      font-size: 1.25rem;
      font-weight: 700;
    }
    .custom-dialog-standard p {
      margin-bottom: 24px;
      color: var(--text-secondary);
      line-height: 1.5;
      font-size: 0.95rem;
    }
    .custom-dialog-standard .dialog-actions {
      display: flex;
      gap: 12px;
      justify-content: flex-end;
    }
    .custom-dialog-standard button {
      padding: 10px 20px;
      border-radius: 8px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      font-size: 0.9rem;
      transition: background 0.2s;
    }
    .custom-dialog-standard .btn-cancel {
      background: transparent;
      color: var(--text-secondary);
    }
    .custom-dialog-standard .btn-cancel:hover {
      background: rgba(255,255,255,0.05);
      color: var(--text-primary);
    }
    .custom-dialog-standard .btn-confirm {
      background: var(--accent);
      color: #000;
    }
    .custom-dialog-standard .btn-confirm:hover {
      background: var(--accent-light);
    }

    /* iOS Style */
    .custom-dialog-ios {
      background: rgba(30,30,30,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 14px;
      width: 270px;
      text-align: center;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 20px 40px rgba(0,0,0,0.6);
      transform: scale(1.1); 
      transition: transform 0.2s ease;
      color: #fff;
      overflow: hidden;
    }
    #custom-dialog-overlay.visible .custom-dialog-ios {
      transform: scale(1);
    }
    .custom-dialog-ios .dialog-content {
      padding: 20px 16px 20px;
    }
    .custom-dialog-ios h3 {
      margin-bottom: 6px;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: -0.4px;
    }
    .custom-dialog-ios p {
      font-size: 13px;
      line-height: 1.4;
      color: rgba(255,255,255,0.8);
    }
    .custom-dialog-ios .dialog-actions-ios {
      display: flex;
      border-top: 1px solid rgba(84, 84, 88, 0.65);
    }
    .custom-dialog-ios button {
      flex: 1;
      background: transparent;
      border: none;
      font-size: 17px;
      padding: 12px 0;
      color: #0A84FF;
      cursor: pointer;
      border-right: 1px solid rgba(84, 84, 88, 0.65);
      font-weight: 400;
       /* iOS blue color */
    }
    .custom-dialog-ios button:last-child {
      border-right: none;
      font-weight: 600; 
    }
    .custom-dialog-ios button:active {
      background: rgba(255,255,255,0.1);
    }

    #landing-page {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 10000;
      overflow-y: auto;
      overflow-x: hidden;
      background: var(--bg-primary);
      transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #landing-page.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-height);
      background: var(--bg-navbar);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      z-index: 10001;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .navbar.scrolled {
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
      background: rgba(8, 8, 13, 0.92);
      border-bottom-color: rgba(255, 255, 255, 0.06);
    }
    .navbar-inner {
      width: 100%;
      max-width: var(--max-width);
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .navbar-logo img {
      width: 40px;
      height: 40px;
      border-radius: 10px;
    }
    .navbar-logo span {
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: 3px;
      color: var(--text-primary);
      text-transform: uppercase;
    }
    .navbar-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
      
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .navbar-links a {
      text-decoration: none;
      color: var(--text-secondary);
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: color 0.25s ease;
      position: relative;
    }
    .navbar-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }
    .navbar-links a:hover {
      color: var(--accent-light);
    }
    .navbar-links a:hover::after {
      width: 100%;
    }

    .navbar-links a:hover::after {
      width: 100%;
    }

    .unified-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 28px;
      border-radius: 12px;
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.1);
      cursor: not-allowed;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      white-space: nowrap;
      font-family: inherit;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      
    }

    #nav-cta-btn {
      margin-left: auto;
      margin-right: 20px;
    }

    @media (max-width: 900px) {
      .unified-cta {
        padding: 8px 12px;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        gap: 6px;
      }

      #nav-cta-btn {
        margin-right: 12px;
      }

      .unified-cta .spinner {
        width: 14px;
        height: 14px;
        border-width: 1.5px;
      }
      .unified-cta svg {
        width: 14px !important;
        height: 14px !important;
      }
    }

    @media (max-width: 400px) {
      .navbar-logo span {
        display: block;
        font-size: 1rem;
        letter-spacing: 1px;
      }
      .navbar-logo img {
         width: 32px; height: 32px;
      }
      #nav-cta-btn {
        margin-right: 8px;
        padding: 6px 10px;
      }
    }

    .unified-cta .spinner {
      display: inline-block;
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    .unified-cta.ready {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: #000;
      border-color: transparent;
      cursor: pointer;
      pointer-events: auto;
      box-shadow: 0 0 20px var(--accent-glow), 0 4px 10px rgba(0,0,0,0.3);
      animation: pulse-glow 2s infinite;
    }

    .unified-cta.ready:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 0 30px var(--accent-glow), 0 8px 20px rgba(0,0,0,0.4);
      filter: brightness(1.1);
    }
    
    .unified-cta.ready:active {
      transform: translateY(1px);
    }

    .unified-cta.ready::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255,255,255,0.4), 
        transparent
      );
      transform: skewX(-20deg);
      animation: shimmer 3s infinite;
    }

    @keyframes pulse-glow {
      0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
      70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
      100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
    }

    @keyframes shimmer {
      0% { left: -100%; }
      20% { left: 200%; }
      100% { left: 200%; }
    }
    /* === END UNIFIED CTA === */

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 10002;
    }
    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text-primary);
      margin: 6px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: calc(var(--nav-height) + 40px) 24px 60px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -20%;
      width: 70vw;
      height: 70vw;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, rgba(239, 68, 68, 0.02) 40%, transparent 70%);
      pointer-events: none;
      animation: heroOrbDrift 20s ease-in-out infinite alternate;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -20%;
      width: 60vw;
      height: 60vw;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, rgba(168, 85, 247, 0.02) 40%, transparent 70%);
      pointer-events: none;
      animation: heroOrbDrift 25s ease-in-out infinite alternate-reverse;
    }
    @keyframes heroOrbDrift {
      0% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-3%, 5%) scale(1.05); }
      100% { transform: translate(3%, -3%) scale(0.95); }
    }
    .hero-text {
      animation: fadeInUp 0.8s ease-out both;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .hero-inner {
      max-width: var(--max-width);
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
    }

    @media (min-width: 901px) {
      .hero-inner {
        display: grid; 
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        text-align: center;
      }
      
      .hero-title {
        text-align: center;
      }
      
      .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }
      
      .hero-text {
        align-items: center;
        text-align: center;
      }
      
      .hero-actions {
         justify-content: center;
         width: 100%;
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 100px;
      background: rgba(245, 158, 11, 0.08);
      border: 1px solid rgba(245, 158, 11, 0.15);
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--accent-light);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 28px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 0 20px rgba(245, 158, 11, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
      animation: fadeInUp 0.6s ease-out both;
    }
    .hero-badge svg {
      width: 14px;
      height: 14px;
      fill: var(--accent);
      filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.5));
    }
    .hero-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      color: var(--text-primary);
      line-height: 1.15;
      margin-bottom: 20px;
      text-align: center;
      letter-spacing: -0.02em;
    }
    .highlight {
      background: linear-gradient(135deg, var(--accent-light), var(--accent), #e67e22);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .hero-subtitle {
       font-size: 1.1rem;
       color: var(--text-secondary);
       line-height: 1.8;
       margin-bottom: 44px;
       max-width: 520px;
       margin-left: auto; margin-right: auto;
       text-align: center;
       letter-spacing: 0.01em;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    
    @media (min-width: 901px) {
      .hero-actions {
         justify-content: center;
      }
      .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      border-radius: 14px;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
    }
    .btn-primary.disabled {
      background: #1e1e28;
      color: #555;
      cursor: not-allowed;
    }
    .btn-primary.disabled .spinner {
      display: inline-block;
      width: 16px;
      height: 16px;
      border: 2px solid #333;
      border-top-color: #666;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    .btn-primary.ready {
      background: #ea8a11;
      color: #fff;
      box-shadow: 0 4px 12px rgba(234, 138, 17, 0.2);
      animation: none;
    }
    .btn-primary.ready:hover {
      background: #f59e0b;
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(245, 158, 11, 0.25);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      border-radius: 14px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      color: var(--text-secondary);
      border: 1px solid var(--border);
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-secondary:hover {
      border-color: var(--accent);
      color: var(--accent-light);
      background: rgba(245, 158, 11, 0.05);
    }
    .btn-secondary svg {
      width: 18px;
      height: 18px;
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeInUp 1s ease-out 0.2s both;
    }
    .hero-image-container {
      position: relative;
      width: 280px;
      border-radius: 28px;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      animation: phoneFloat 6s ease-in-out infinite;
    }
    .hero-image-container:hover {
      transform: translateY(-8px);
      box-shadow: 0 35px 100px rgba(0, 0, 0, 0.7), 0 0 50px rgba(245, 158, 11, 0.08);
    }
    .hero-image-container img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 28px;
    }
    .hero-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 140%;
      height: 140%;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(239, 68, 68, 0.03) 40%, transparent 70%);
      pointer-events: none;
      z-index: -1;
      animation: glowPulse 4s ease-in-out infinite alternate;
    }
    @keyframes phoneFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    @keyframes glowPulse {
      0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
      100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    }

    .section {
      padding: 100px 24px;
      position: relative;
    }
    .section-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .section-label::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 2px;
      background: var(--accent);
      border-radius: 1px;
    }
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .section-desc {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 560px;
    }

    #funkcje {
      background: var(--bg-secondary);
      position: relative;
    }
    #funkcje::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
    }
    .features-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .features-header .section-desc {
      margin: 0 auto;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .feature-card {
      background: var(--bg-card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 36px 30px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .feature-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.04), transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .feature-card:hover {
      border-color: rgba(245, 158, 11, 0.12);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 158, 11, 0.06);
    }
    .feature-card:hover::before {
      opacity: 1;
    }
    .feature-card:hover::after {
      opacity: 1;
    }
    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
      border: 1px solid rgba(245, 158, 11, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.06);
      transition: all 0.3s ease;
    }
    .feature-card:hover .feature-icon {
      box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
      transform: scale(1.05);
    }
    .feature-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.3));
    }
    .feature-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }
    .feature-card p {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .gallery-header .section-desc {
      margin: 0 auto;
    }
    .carousel-wrapper {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
      padding: 40px 0 60px;
    }
    .carousel-track {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      height: 520px;
      perspective: 1200px;
    }
    .carousel-slide {
      position: absolute;
      width: 260px;
      transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
      cursor: pointer;
      border-radius: 20px;
      overflow: hidden;
    }
    .carousel-slide img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
    }
    .carousel-slide.active {
      z-index: 10;
      transform: scale(1) translateX(0);
      opacity: 1;
      box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.06), 0 0 60px rgba(245, 158, 11, 0.05);
    }
    .carousel-slide.prev {
      z-index: 5;
      transform: translateX(-110%) scale(0.8) rotateY(8deg);
      opacity: 0.5;
      filter: brightness(0.6);
    }
    .carousel-slide.next {
      z-index: 5;
      transform: translateX(110%) scale(0.8) rotateY(-8deg);
      opacity: 0.5;
      filter: brightness(0.6);
    }
    .carousel-slide.far-prev {
      z-index: 2;
      transform: translateX(-190%) scale(0.6) rotateY(12deg);
      opacity: 0.2;
      filter: brightness(0.4);
    }
    .carousel-slide.far-next {
      z-index: 2;
      transform: translateX(190%) scale(0.6) rotateY(-12deg);
      opacity: 0.2;
      filter: brightness(0.4);
    }
    .carousel-slide.hidden-slide {
      opacity: 0;
      transform: scale(0.4);
      pointer-events: none;
    }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text-primary);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0;
    }
    .carousel-btn:hover {
      background: rgba(245, 158, 11, 0.2);
      border-color: var(--accent);
    }
    .carousel-btn svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .carousel-btn.prev-btn { left: 8px; }
    .carousel-btn.next-btn { right: 8px; }
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 16px;
    }
    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }
    .carousel-dot.active {
      background: var(--accent);
      box-shadow: 0 0 10px var(--accent-glow);
      transform: scale(1.2);
    }
    @media (max-width: 600px) {
      .carousel-track { height: 420px; }
      .carousel-slide { width: 200px; }
      .carousel-slide.prev { transform: translateX(-85%) scale(0.75) rotateY(8deg); }
      .carousel-slide.next { transform: translateX(85%) scale(0.75) rotateY(-8deg); }
      .carousel-slide.far-prev,
      .carousel-slide.far-next { opacity: 0; pointer-events: none; }
      .carousel-btn { width: 40px; height: 40px; }
    }

    #pobierz {
      background: var(--bg-secondary);
      position: relative;
    }
    #pobierz::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
    }
    .download-inner {
      text-align: center;
    }
    .download-inner .section-desc {
      margin: 0 auto 40px;
    }
    .download-badges {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .store-badge {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 16px 32px;
      border-radius: 16px;
      background: rgba(26, 26, 36, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      text-decoration: none;
      color: var(--text-primary);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-family: inherit;
      font-size: inherit;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    .store-badge:hover {
      border-color: var(--accent);
      background: rgba(30, 30, 42, 0.9);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.08);
    }
    .store-badge svg {
      width: 28px;
      height: 28px;
      fill: var(--text-primary);
    }
    .store-badge .store-text {
      text-align: left;
    }
    .store-badge .store-text small {
      display: block;
      font-size: 0.65rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .store-badge .store-text strong {
      font-size: 1rem;
      font-weight: 700;
    }
    .download-qr {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      margin-top: 32px;
    }
    .download-qr img {
      width: 160px;
      height: 160px;
      border-radius: 16px;
      background: #fff;
      padding: 10px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
    .download-qr span {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer {
      padding: 48px 24px;
      border-top: none;
      background: var(--bg-primary);
      position: relative;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    }
    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-copy {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .footer-links {
      display: flex;
      gap: 24px;
    }
    .footer-links a {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.25s ease;
    }
    .footer-links a:hover {
      color: var(--accent-light);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes ctaPulse {
      0%, 100% { box-shadow: 0 0 20px var(--accent-glow), 0 4px 15px rgba(245, 158, 11, 0.3); }
      50% { box-shadow: 0 0 35px var(--accent-glow), 0 4px 25px rgba(245, 158, 11, 0.5); }
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
      }
      .hero-subtitle { margin-left: auto; margin-right: auto; }
      .hero-actions { justify-content: center; }
      .hero-visual { display: none; }
      .phone-mockup { width: 220px; }
      .navbar-links { display: none; }
      .navbar-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: var(--nav-height);
      left: 0; right: 0;
      height: auto;
      max-height: calc(100vh - var(--nav-height));
      bottom: auto;
      background: rgba(10, 10, 15, 0.98);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 30px 24px;
      gap: 16px;
      z-index: 10001;
      animation: slideDown 0.3s ease-out both;
      transform: none;
      left: 0;
      width: 100%;
    }
    .navbar-links.open li {
      width: 100%;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .navbar-links.open a {
        display: block;
        padding: 16px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        text-align: center;
        font-size: 1.1rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
      }
      .navbar-links.open a:active {
        background: rgba(255, 255, 255, 0.1);
      }
      .menu-toggle { display: block; }
      .hero { padding-top: calc(var(--nav-height) + 24px); min-height: auto; }
    }
    @media (max-width: 600px) {
      .hero-title { font-size: 1.7rem; }
      .section { padding: 64px 16px; }
      .features-grid { grid-template-columns: 1fr; }
      .gallery-item { width: 200px; }
      .footer-inner { flex-direction: column; text-align: center; }
      
      .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: 10px;
        width: auto;
        min-width: 160px;
        justify-content: center;
        max-width: none;
        text-transform: none;
        letter-spacing: normal;
        font-weight: 600;
        background: #2563eb;
        color: #fff;
        box-shadow: none;
      }
      .btn-primary.ready {
        background: #374151;
        color: #f9fafb;
        box-shadow: none;
      }
      .btn-primary.ready:hover {
        background: #4b5563;
        transform: translateY(-1px);
        box-shadow: none;
      }
      .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 16px;
      }
    }

    .seo-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }