
  :root {
    --navy: #0A1628;
    --navy-mid: #132040;
    --blue: #1A5CCC;
    --blue-bright: #2E7DE9;
    --blue-light: #E8F1FD;
    --gold: #F5A623;
    --gold-light: #FEF3DC;
    --white: #FFFFFF;
    --gray-soft: #F4F6FA;
    --gray-mid: #8A9BB5;
    --text-dark: #0A1628;
    --text-body: #2C3E5A;
    --radius: 16px;
    --radius-sm: 8px;
    --green: #3DB87A;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(10,22,40,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--white);
    text-decoration: none;
    line-height: 1;
  }
  .nav-logo span { color: var(--gold); }
  .nav-logo small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 1px;
  }
  .nav-cta {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,166,35,0.45); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 4rem 4rem;
    position: relative;
    overflow: hidden;
    gap: 3rem;
  }
  .hero::before { display: none; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(245,166,35,0.12);
    border: 1px solid rgba(245,166,35,0.35);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }
  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }
  .hero h1 .accent { color: var(--gold); }
  .hero h1 .blue { color: #6BAEFF; }
  .hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 460px;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.45); }
  .btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-weight: 400;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.13); }

  /* HERO VISUAL */
  .hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .machine-card {
    background: linear-gradient(135deg, rgba(26,92,204,0.25) 0%, rgba(10,22,40,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
  }
  .machine-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(46,125,233,0.25) 0%, transparent 70%);
    border-radius: 50%;
  }
  .machine-icon { font-size: 5rem; margin-bottom: 1.5rem; display: block; filter: drop-shadow(0 0 20px rgba(46,125,233,0.5)); }
  .machine-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 0.25rem;
  }
  .machine-model {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .spec-list { list-style: none; }
  .spec-list li {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .spec-list li:last-child { border-bottom: none; }
  .spec-list li .dot { width: 7px; height: 7px; background: var(--blue-bright); border-radius: 50%; flex-shrink: 0; }
  .price-badge-hero {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    line-height: 1;
    text-align: center;
  }
  .price-badge-hero small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.1rem;
  }

  /* TRUST STRIP */
  .trust-strip {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 4rem;
    display: flex; align-items: center; justify-content: center; gap: 2.5rem;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
  }
  .trust-item .icon { font-size: 1.15rem; }

  /* SECTIONS */
  .section { padding: 5rem 4rem; }
  .section-label {
    font-size: 0.73rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .section-sub {
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-size: 0.97rem;
  }

  /* USES GRID */
  .uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  .use-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
    cursor: default;
  }
  .use-card:hover { transform: translateY(-3px); border-color: rgba(46,125,233,0.4); }
  .use-card.highlight {
    background: linear-gradient(135deg, rgba(26,92,204,0.2), rgba(10,22,40,0.7));
    border-color: rgba(46,125,233,0.4);
  }
  .use-icon { font-size: 2.4rem; margin-bottom: 0.9rem; }
  .use-title { font-weight: 500; font-size: 1rem; margin-bottom: 0.4rem; }
  .use-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
  .use-tag {
    display: inline-block;
    margin-top: 0.75rem;
    background: rgba(46,125,233,0.15);
    color: #6BAEFF;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
  }

  /* PRICING */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  .price-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: transform 0.25s, border-color 0.25s;
  }
  .price-card:hover { transform: translateY(-4px); border-color: rgba(46,125,233,0.4); }
  .price-card.featured {
    background: linear-gradient(135deg, rgba(26,92,204,0.22), rgba(46,125,233,0.12));
    border-color: rgba(46,125,233,0.5);
  }
  .price-card.featured::before {
    content: 'W cenie wynajmu';
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--blue-bright);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    white-space: nowrap;
  }
  .price-icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .price-name { font-weight: 500; font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 0.4rem; }
  .price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--white);
  }
  .price-amount span { font-size: 1.2rem; font-family: 'DM Sans', sans-serif; color: rgba(255,255,255,0.5); }
  .price-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; line-height: 1.5; }
  .price-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 1.25rem 0; }
  .price-feature { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 0.6rem; }
  .price-feature .check { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
  .extra-capsule {
    margin-top: 1rem;
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.25);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
  }
  .extra-capsule strong { color: var(--gold); }

  /* STEPS */
  .steps-section { background: rgba(255,255,255,0.02); }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  .step-card {
    padding: 1.75rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s;
  }
  .step-card:hover { transform: translateY(-3px); }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 0.25rem; right: 1rem;
    pointer-events: none;
  }
  .step-emoji { font-size: 2rem; margin-bottom: 1rem; }
  .step-title { font-weight: 500; font-size: 1rem; margin-bottom: 0.5rem; }
  .step-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

  /* WHY */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .why-visual {
    background: linear-gradient(135deg, rgba(26,92,204,0.2), rgba(10,22,40,0.9));
    border: 1px solid rgba(46,125,233,0.25);
    border-radius: var(--radius);
    padding: 2.5rem;
  }
  .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
  .stat-box {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3rem;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }
  .benefit-list { list-style: none; }
  .benefit-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.91rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
  }
  .benefit-list li:last-child { border-bottom: none; }
  .benefit-list li .ico { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }

  /* AREA */
  .area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.7rem;
    max-width: 650px;
  }
  .area-chip {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 0.55rem 1rem;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
  }
  .area-chip:hover { background: rgba(46,125,233,0.12); border-color: rgba(46,125,233,0.4); color: var(--white); }
  .area-chip.main {
    background: rgba(46,125,233,0.15);
    border-color: rgba(46,125,233,0.5);
    color: var(--white);
    font-weight: 500;
  }

  /* FAQ */
  .faq-list { max-width: 760px; }
  details { border-bottom: 1px solid rgba(255,255,255,0.07); }
  summary {
    padding: 1.2rem 0;
    font-size: 0.96rem;
    font-weight: 500;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    list-style: none;
    color: var(--white);
    transition: color 0.2s;
  }
  summary:hover { color: var(--gold); }
  summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.25s; }
  details[open] summary::after { transform: rotate(45deg); }
  details p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.7; padding-bottom: 1.2rem; padding-right: 2rem; }

  /* CTA BANNER */
  .cta-banner {
    margin: 0 4rem;
    background: linear-gradient(135deg, #1A5CCC 0%, #0F3E8A 100%);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute; right: -80px; top: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
  }
  .cta-sub { font-size: 0.94rem; color: rgba(255,255,255,0.75); font-weight: 300; max-width: 480px; }
  .cta-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; flex-shrink: 0; }
  .phone-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .phone-big:hover { opacity: 0.8; }

  /* FOOTER */
  footer {
    padding: 3rem 4rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 4rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
  }
  .footer-brand .logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--white); margin-bottom: 0.75rem; }
  .footer-brand .logo span { color: var(--gold); }
  .footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.42); line-height: 1.7; }
  .footer-col h4 { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { font-size: 0.85rem; color: rgba(255,255,255,0.62); margin-bottom: 0.5rem; line-height: 1.5; }
  .footer-col ul li a { color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.76rem;
    color: rgba(255,255,255,0.22);
    display: flex; justify-content: space-between; align-items: center;
  }

  /* STICKY PHONE */
  .sticky-phone {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(245,166,35,0.5);
    display: flex; align-items: center; gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 5rem 1.5rem 3rem; }
    .hero-visual { order: -1; }
    .section { padding: 3rem 1.5rem; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-banner { margin: 0 1.5rem; grid-template-columns: 1fr; padding: 2.5rem; }
    .cta-contact { align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .trust-strip { padding: 1.5rem 1.5rem; gap: 1.2rem; }
    footer { padding: 3rem 1.5rem 2rem; }
  }

  .hero-carpet {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
  }
  .hero-carpet img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
    opacity: 1.0;
    filter: brightness(1.4) saturate(1.1) contrast(1.05);
  }
  .hero-carpet::after { display: none !important; }
  .hero-carpet::before { display: none !important; }
  .hero > * { position: relative; z-index: 2; }
