:root {
      --yellow: #FEE10E;
      --yellow-soft: #fff2b9;
      --navy: #162c4a;
      --blue: #3b65b3;
      --cream: #fffaf0;
      --paper: #fffefb;
      --coral: #ef785c;
      --ink: #1d2d3f;
      --muted: #67717c;
      --line: rgba(22, 44, 74, .13);
      --shadow: 0 24px 70px rgba(35, 48, 65, .12);
      --radius: 28px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "Segoe UI", Arial, sans-serif;
      line-height: 1.55;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }
    .container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 14px;
      color: var(--blue);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 22px; height: 4px; border-radius: 99px; background: var(--yellow); }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { color: var(--navy); line-height: 1.06; letter-spacing: -.035em; }
    h1 { margin-bottom: 22px; font-size: clamp(3.25rem, 6.2vw, 6.2rem); font-weight: 850; }
    h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4vw, 4rem); }
    h3 { font-size: 1.42rem; }
    .lead { max-width: 620px; color: #4d5a67; font-size: clamp(1.05rem, 1.5vw, 1.22rem); }
    .highlight { position: relative; z-index: 0; white-space: nowrap; }
    .highlight::after {
      content: "";
      position: absolute;
      z-index: -1;
      left: -.04em;
      right: -.05em;
      bottom: .08em;
      height: .31em;
      background: var(--yellow);
      border-radius: 99px;
      transform: rotate(-1.2deg);
    }

    .topbar {
      padding: 8px 20px;
      color: #fff;
      background: var(--navy);
      text-align: center;
      font-size: .82rem;
      font-weight: 650;
      letter-spacing: .01em;
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid transparent;
      background: rgba(255, 254, 251, .92);
      backdrop-filter: blur(16px);
      transition: .25s ease;
    }
    .site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(22,44,74,.06); }
    .nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
    .brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); font-size: 1.18rem; font-weight: 850; line-height: 1; }
    .brand-mark {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 15px 15px 15px 4px;
      background: var(--yellow);
      font-size: 1.25rem;
      transform: rotate(-3deg);
    }
    .brand small { display: block; margin-top: 4px; color: var(--muted); font-size: .59rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .menu { display: flex; align-items: center; gap: clamp(15px, 2vw, 28px); list-style: none; padding: 0; margin: 0; }
    .menu a { position: relative; padding: 30px 0; color: #34455a; font-size: .91rem; font-weight: 700; }
    .menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 3px; background: var(--yellow); border-radius: 99px; transition: .2s ease; }
    .menu a:hover::after, .menu a:focus-visible::after { right: 0; }
    .menu .nav-cta { padding: 11px 17px; color: var(--navy); background: var(--yellow); border-radius: 99px; }
    .menu .nav-cta::after { display: none; }
    .menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); font: inherit; font-weight: 800; cursor: pointer; }

    .hero { position: relative; padding: clamp(70px, 9vw, 128px) 0 70px; background: linear-gradient(180deg, #fffdf7 0%, var(--cream) 100%); }
    .hero::before {
      content: "hello · hallo · cześć";
      position: absolute;
      top: 58px;
      left: -52px;
      color: rgba(22, 44, 74, .035);
      font-size: 9vw;
      font-weight: 900;
      white-space: nowrap;
      transform: rotate(-4deg);
    }
    .hero-grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(34px, 5vw, 78px); }
    .hero-copy { position: relative; z-index: 2; }
    .hero-slogan {
      margin: -5px 0 18px;
      color: var(--navy);
      font-size: clamp(1.45rem, 2.4vw, 2.15rem);
      font-weight: 850;
      line-height: 1.16;
      letter-spacing: -.035em;
    }
    .hero-language-grid { display: grid; gap: 10px; margin: 30px 0 22px; }
    .hero-language {
      display: grid;
      grid-template-columns: 52px 1fr auto;
      align-items: center;
      gap: 15px;
      min-height: 72px;
      padding: 10px 17px 10px 10px;
      border: 1px solid var(--line);
      border-radius: 19px;
      background: rgba(255, 255, 255, .86);
      box-shadow: 0 8px 24px rgba(22, 44, 74, .05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .hero-language:hover {
      transform: translateX(5px);
      border-color: rgba(22, 44, 74, .28);
      box-shadow: 0 12px 28px rgba(22, 44, 74, .1);
    }
    .hero-language-code {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 15px;
      color: var(--navy);
      background: var(--yellow);
      font-weight: 900;
    }
    .hero-language:nth-child(2) .hero-language-code { background: #dce7ff; }
    .hero-language:nth-child(3) .hero-language-code { background: #ffe0d7; }
    .hero-language strong { display: block; color: var(--navy); font-size: 1.02rem; }
    .hero-language small { display: block; margin-top: 2px; color: var(--muted); font-size: .79rem; }
    .hero-language-arrow { color: var(--coral); font-size: 1.25rem; font-weight: 900; }
    .hero-choice-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      transform: rotate(1deg);
    }
    .hero-choice {
      position: relative;
      isolation: isolate;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      aspect-ratio: 1;
      min-height: 240px;
      padding: clamp(22px, 3vw, 34px);
      overflow: hidden;
      border: 7px solid #fff;
      border-radius: 30px 30px 30px 10px;
      box-shadow: 0 18px 48px rgba(22, 44, 74, .11);
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .hero-choice:nth-child(1) { background: #2F65B5; }
    .hero-choice:nth-child(2) { background: var(--yellow); transform: translateY(18px); }
    .hero-choice:nth-child(3) { background: #ffe1d8; }
    .hero-choice:nth-child(4) { background: #dff2eb; transform: translateY(18px); }
    .hero-choice:nth-child(1) h2 { color: #fff; }
    .hero-choice:nth-child(1) p { color: #eaf2ff; }
    .hero-choice:nth-child(1) .choice-action { color: #fff; }
    .hero-choice:nth-child(1) .choice-code { color: var(--navy); background: var(--yellow); }
    .hero-choice:nth-child(1)::after { color: rgba(255,255,255,.1); }
    .hero-choice::after {
      content: attr(data-word);
      position: absolute;
      z-index: -1;
      right: -12px;
      bottom: -18px;
      color: rgba(22, 44, 74, .08);
      font-size: clamp(3.2rem, 5vw, 5.4rem);
      font-weight: 900;
      letter-spacing: -.08em;
      transform: rotate(-8deg);
    }
    .hero-choice:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 24px 60px rgba(22, 44, 74, .17); }
    .hero-choice:nth-child(2):hover, .hero-choice:nth-child(4):hover { transform: translateY(10px) rotate(-1deg); }
    .choice-code {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 17px;
      color: #fff;
      background: var(--navy);
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(22, 44, 74, .14);
    }
    .hero-choice h2 { max-width: 220px; margin: auto 0 9px; font-size: clamp(1.45rem, 2.5vw, 2.35rem); }
    .hero-choice p { margin: 0; color: #445266; font-size: .86rem; font-weight: 650; }
    .choice-action { display: inline-flex; align-items: center; gap: 8px; margin-top: 19px; color: var(--navy); font-size: .82rem; font-weight: 900; }
    .choice-action::after { content: "→"; color: var(--coral); font-size: 1.1rem; }
    .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; margin: 32px 0 28px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border: 2px solid var(--navy); border-radius: 99px; font-size: .94rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(22,44,74,.12); }
    .btn-primary { background: var(--yellow); }
    .btn-secondary { border-color: var(--line); background: rgba(255,255,255,.75); }
    .micro-proof { display: flex; flex-wrap: wrap; gap: 12px 20px; color: #506074; font-size: .87rem; font-weight: 650; }
    .micro-proof span { display: inline-flex; align-items: center; gap: 7px; }
    .micro-proof span::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; color: var(--navy); background: var(--yellow-soft); border-radius: 50%; font-weight: 900; }
    .hero-visual { position: relative; }
    .hero-frame { position: relative; overflow: hidden; border: 10px solid #fff; border-radius: 44px 44px 44px 12px; box-shadow: var(--shadow); transform: rotate(1.2deg); }
    .hero-frame img { width: 100%; min-height: 520px; object-fit: cover; object-position: 61% center; }
    .hero-sticker { position: absolute; right: -24px; bottom: 36px; display: grid; place-items: center; width: 128px; height: 128px; padding: 18px; color: var(--navy); background: var(--yellow); border: 7px solid #fff; border-radius: 50%; box-shadow: 0 15px 35px rgba(22,44,74,.17); text-align: center; font-size: .82rem; font-weight: 900; line-height: 1.15; transform: rotate(8deg); }
    .hero-note { position: absolute; top: 38px; left: -30px; padding: 13px 18px; color: #fff; background: var(--navy); border-radius: 14px 14px 4px 14px; box-shadow: 0 14px 30px rgba(22,44,74,.18); font-weight: 800; transform: rotate(-5deg); }

    .ticker { overflow: hidden; padding: 17px 0; color: var(--navy); background: var(--yellow); border-block: 1px solid rgba(22,44,74,.15); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
    .ticker-track { display: flex; width: max-content; gap: 34px; animation: ticker 26s linear infinite; }
    .ticker span::after { content: "✦"; margin-left: 34px; }
    @keyframes ticker { to { transform: translateX(-50%); } }

    section { padding: clamp(82px, 10vw, 140px) 0; }
    .section-head { max-width: 760px; margin-bottom: 48px; }
    .offers { background: var(--paper); }
    .offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .offer-card { position: relative; min-height: 350px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .22s ease, box-shadow .22s ease; }
    .offer-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(22,44,74,.1); }
    .offer-card::before { content: attr(data-word); position: absolute; right: -8px; bottom: 22px; color: rgba(22,44,74,.045); font-size: 4rem; font-weight: 900; transform: rotate(-8deg); }
    .offer-card:nth-child(1) { background: #fff8d9; }
    .offer-card:nth-child(2) { background: #eef3ff; }
    .offer-card:nth-child(3) { background: #fff0eb; }
    .offer-card:nth-child(4) { background: #eef8f4; }
    .offer-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 42px; border-radius: 20px; background: #fff; box-shadow: 0 10px 24px rgba(22,44,74,.08); font-size: 1.45rem; font-weight: 900; transform: rotate(-4deg); }
    .offer-card p { color: #596777; font-size: .94rem; }
    .text-link { position: absolute; bottom: 27px; left: 30px; color: var(--navy); font-size: .9rem; font-weight: 850; }
    .text-link::after { content: " →"; color: var(--coral); }

    .about { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
    .about::after { content: "natürlich!"; position: absolute; right: -30px; bottom: -60px; color: rgba(255,255,255,.035); font-size: 12vw; font-weight: 900; transform: rotate(-7deg); }
    .about h2, .about h3 { color: #fff; }
    .about .eyebrow { color: var(--yellow); }
    .about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
    .portrait-placeholder { position: relative; min-height: 480px; border-radius: 220px 220px 30px 30px; background: linear-gradient(145deg, var(--yellow) 0 62%, #ffd960 62%); box-shadow: inset 0 0 0 10px rgba(255,255,255,.09); }
    .portrait-placeholder::before { content: "Tu może pojawić się zdjęcie właścicielki"; position: absolute; inset: 50% 12% auto; color: var(--navy); text-align: center; font-weight: 900; transform: translateY(-50%); }
    .portrait-placeholder::after { content: "aber"; position: absolute; right: -28px; top: 72px; display: grid; place-items: center; width: 92px; height: 92px; color: var(--navy); background: #fff; border-radius: 50%; font-size: 1.25rem; font-weight: 900; transform: rotate(10deg); }
    .about-copy > p { color: #dce5ee; font-size: 1.08rem; }
    .benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 35px; }
    .benefit { padding: 21px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.06); }
    .benefit strong { display: block; margin-bottom: 5px; color: var(--yellow); }
    .benefit span { color: #cfdae6; font-size: .9rem; }

    .process { background: var(--cream); }
    .steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .steps::before { content: ""; position: absolute; top: 35px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--yellow) 0 10px, transparent 10px 18px); }
    .step { position: relative; padding: 0 28px 28px; text-align: center; }
    .step-number { position: relative; z-index: 1; display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 24px; border: 6px solid var(--cream); border-radius: 50%; color: var(--navy); background: var(--yellow); box-shadow: 0 0 0 1px var(--line); font-size: 1.2rem; font-weight: 900; }
    .step p { color: var(--muted); }

    .audiences-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
    .audience-main, .audience-side { border-radius: var(--radius); }
    .audience-main { padding: clamp(35px, 5vw, 65px); background: var(--yellow); }
    .audience-main .big-word { margin: 34px 0 0; color: var(--navy); font-size: clamp(3.2rem, 7vw, 7rem); font-weight: 900; letter-spacing: -.07em; line-height: .75; opacity: .14; }
    .audience-side { display: grid; gap: 16px; }
    .audience-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
    .audience-card p { margin: 0; color: var(--muted); }

    .contact { padding-top: 30px; }
    .contact-box { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 34px; padding: clamp(40px, 6vw, 78px); color: #fff; background: var(--blue); border-radius: 40px; }
    .contact-box::after { content: "?"; position: absolute; right: 5%; top: -42%; color: rgba(255,255,255,.08); font-size: 24rem; font-weight: 900; transform: rotate(12deg); }
    .contact-box h2 { color: #fff; }
    .contact-box p { max-width: 650px; color: #e7efff; }
    .contact-actions { position: relative; z-index: 1; display: grid; gap: 12px; }
    .contact-actions .btn { color: var(--navy); border-color: #fff; background: #fff; }
    .contact-actions .btn:first-child { border-color: var(--yellow); background: var(--yellow); }
    footer { padding: 70px 0 28px; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 45px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
    .footer-copy { max-width: 390px; margin-top: 20px; color: var(--muted); font-size: .92rem; }
    .footer-title { margin-bottom: 16px; color: var(--navy); font-weight: 850; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li + li { margin-top: 10px; }
    .footer-links a { color: #536171; font-size: .92rem; }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: #7b8590; font-size: .8rem; }

    .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 1020px) {
      .menu-toggle { display: block; }
      .menu { position: absolute; top: 76px; left: 20px; right: 20px; display: none; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
      .menu.open { display: grid; }
      .menu a { display: block; padding: 10px 12px; }
      .menu a::after { display: none; }
      .hero-grid, .about-grid { grid-template-columns: 1fr; }
      .hero-copy { max-width: 760px; }
      .hero-visual { width: min(760px, 100%); margin-inline: auto; }
      .offer-grid { grid-template-columns: 1fr 1fr; }
      .about-grid { max-width: 780px; }
      .portrait-placeholder { min-height: 420px; }
    }

    @media (max-width: 700px) {
      .container { width: min(100% - 28px, 1180px); }
      .topbar { font-size: .74rem; }
      .brand small { display: none; }
      .nav { min-height: 72px; }
      .hero { padding-top: 58px; }
      h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
      .highlight { white-space: normal; }
      .hero-frame { border-width: 6px; border-radius: 28px 28px 28px 9px; transform: none; }
      .hero-frame img { min-height: 390px; object-position: 65% center; }
      .hero-note { left: 8px; top: 18px; font-size: .78rem; }
      .hero-sticker { right: -8px; bottom: 14px; width: 105px; height: 105px; font-size: .71rem; }
      .hero-choice-grid { gap: 9px; transform: none; }
      .hero-choice { min-height: 0; padding: 18px; border-width: 4px; border-radius: 22px 22px 22px 8px; }
      .hero-choice:nth-child(2), .hero-choice:nth-child(4) { transform: translateY(9px); }
      .choice-code { width: 42px; height: 42px; border-radius: 13px; }
      .hero-choice h2 { margin-top: 34px; font-size: clamp(1.15rem, 6vw, 1.5rem); }
      .hero-choice p { display: none; }
      .offer-grid, .benefits, .steps, .audiences-grid, .contact-box, .footer-grid { grid-template-columns: 1fr; }
      .offer-card { min-height: 310px; }
      .steps::before { display: none; }
      .step { text-align: left; padding: 0; display: grid; grid-template-columns: 62px 1fr; column-gap: 16px; }
      .step-number { width: 58px; height: 58px; margin: 0; grid-row: 1 / span 2; }
      .contact-box { border-radius: 28px; }
      .footer-bottom { flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
      .reveal { opacity: 1; transform: none; }
    }
    /* Właściwe logo marki. */
    .brand-logo { display: block; width: 190px; height: auto; object-fit: contain; }
    @media (max-width: 700px) { .brand-logo { width: 155px; } }
