﻿:root {
      --page: #edf7ff;
      --page-2: #fff5fb;
      --ink: #0b1020;
      --muted: #526074;
      --white: #ffffff;
      --glass: rgba(255, 255, 255, 0.72);
      --glass-strong: rgba(255, 255, 255, 0.9);
      --line: rgba(17, 24, 39, 0.12);
      --dark: #071020;
      --cyan: #09bdf5;
      --blue: #285bff;
      --pink: #ff1494;
      --violet: #8d5cff;
      --lime: #dfff32;
      --shadow: 0 24px 80px rgba(34, 54, 93, 0.16);
      --shadow-dark: 0 28px 90px rgba(4, 10, 26, 0.28);
      --radius: 28px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 8% 12%, rgba(9, 189, 245, 0.25), transparent 26%),
        radial-gradient(circle at 92% 18%, rgba(255, 20, 148, 0.18), transparent 28%),
        radial-gradient(circle at 50% 72%, rgba(141, 92, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #f4fbff 0%, #eef7ff 38%, #fff6fb 72%, #f3f7ff 100%);
      color: var(--ink);
      overflow-x: hidden;
    }
    body.no-scroll { overflow: hidden; }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      opacity: 0.45;
      background-image:
        linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px);
      background-size: 76px 76px;
      mask-image: linear-gradient(to bottom, black, transparent 86%);
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font: inherit; }

    .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
    .section { position: relative; padding: 96px 0; }
    .gradient-text {
      background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet), var(--pink));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .navbar-wrap {
      position: relative;
      z-index: 80;
      padding-top: 22px;
      transition: padding 0.32s ease, transform 0.32s ease;
    }

    body.nav-morphed .navbar-wrap {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 8px 0;
      animation: navDrop 0.28s ease both;
    }

    @keyframes navDrop {
      from { transform: translateY(-12px); opacity: 0.7; }
      to { transform: translateY(0); opacity: 1; }
    }

    .navbar {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 12px 18px;
      border: 1px solid rgba(17, 24, 39, 0.12);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.74);
      box-shadow: var(--shadow);
      backdrop-filter: blur(20px);
      transition: min-height 0.32s ease, border-radius 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
    }

    body.nav-morphed .navbar {
      min-height: 70px;
      border-radius: 0 0 26px 26px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 16px 50px rgba(25, 40, 75, 0.16);
    }

    .brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
    .brand-logo {
      width: auto;
      height: 78px;
      object-fit: contain;
      filter: drop-shadow(0 0 16px rgba(9, 189, 245, 0.14));
      transition: height 0.32s ease;
    }
    body.nav-morphed .brand-logo { height: 54px; }
    .footer-logo { width: auto; height: 74px; object-fit: contain; filter: drop-shadow(0 0 18px rgba(255, 20, 148, 0.14)); }

    .nav-links { display: flex; align-items: center; gap: 26px; color: #1f2937; font-size: 14px; font-weight: 900; }
    .nav-links a { position: relative; padding: 10px 0; }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 3px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--cyan), var(--pink));
      transition: width 0.24s ease;
    }
    .nav-links a:hover::after { width: 100%; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      cursor: pointer;
      border-radius: 18px;
      padding: 15px 22px;
      color: #fff;
      font-weight: 900;
      white-space: nowrap;
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    }
    .btn-primary { background: linear-gradient(90deg, var(--cyan), var(--blue), var(--pink)); box-shadow: 0 14px 34px rgba(9, 189, 245, 0.22), 0 16px 40px rgba(255, 20, 148, 0.14); }
    .btn-primary:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 18px 44px rgba(9, 189, 245, 0.32), 0 18px 50px rgba(255, 20, 148, 0.2); }
    .btn-secondary { border: 1px solid rgba(17, 24, 39, 0.12); background: rgba(255, 255, 255, 0.72); color: var(--ink); backdrop-filter: blur(12px); }
    .btn-secondary:hover { transform: translateY(-2px); border-color: rgba(9, 189, 245, 0.42); background: #fff; }
    .nav-contact { padding: 14px 20px; }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(17, 24, 39, 0.12);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--ink);
      cursor: pointer;
      position: relative;
      z-index: 90;
    }
    .menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 999px; background: var(--ink); transition: 0.24s ease; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-panel {
      position: fixed;
      inset: 0;
      z-index: 70;
      display: none;
      padding: 24px;
      background: radial-gradient(circle at 18% 20%, rgba(9,189,245,.22), transparent 34%), radial-gradient(circle at 90% 80%, rgba(255,20,148,.18), transparent 34%), rgba(246, 251, 255, 0.96);
      backdrop-filter: blur(20px);
    }
    .mobile-panel.open { 
      display: flex; 
      flex-direction: column;
      justify-content: center;
      animation: panelFade 0.24s ease both; 
    }
    @keyframes panelFade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
    .mobile-menu-card { width: min(100%, 460px); margin: 0 auto; padding: 24px; border: 1px solid rgba(17,24,39,.12); border-radius: 28px; background: rgba(255,255,255,.72); box-shadow: var(--shadow); }
    .mobile-menu-card a { display: flex; align-items: center; justify-content: space-between; padding: 18px 4px; border-bottom: 1px solid rgba(17,24,39,.1); color: var(--ink); font-size: 22px; font-weight: 900; letter-spacing: -0.04em; }
    .mobile-menu-card a:last-of-type { border-bottom: 0; }
    .mobile-cta { margin-top: 24px; width: 100%; color: #fff !important; }

    .hero { position: relative; overflow: hidden; padding: 84px 0 110px; }
    body.nav-morphed .hero { padding-top: 176px; }
    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      pointer-events: none;
      z-index: -1;
    }
    .hero::before { display: none; }
    .hero::after { right: -200px; top: 70px; width: 640px; height: 360px; border-top: 1px solid rgba(255,20,148,.28); transform: rotate(-13deg); box-shadow: 0 -30px 80px rgba(255,20,148,.14); }
    .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 56px; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 20px;
      padding: 10px 15px;
      border: 1px solid rgba(17, 24, 39, 0.1);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.66);
      color: #263247;
      font-size: 14px;
      font-weight: 900;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 28px rgba(35, 52, 88, 0.08);
    }
    .eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 20px rgba(157, 184, 0, 0.45); }
    h1 { font-size: clamp(44px, 6vw, 78px); line-height: 0.98; letter-spacing: -0.07em; font-weight: 950; }
    .lead { max-width: 690px; margin-top: 26px; color: #445268; font-size: 19px; line-height: 1.75; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
    .trust-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .trust-item { display: inline-flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid rgba(17,24,39,.1); border-radius: 999px; background: rgba(255,255,255,.68); color: #334155; font-size: 14px; font-weight: 900; }

    .hero-card-wrap { position: relative; }
    .hero-card-wrap::before { content: ""; position: absolute; inset: -28px; border-radius: 42px; background: linear-gradient(135deg, rgba(9,189,245,.28), transparent, rgba(255,20,148,.22)); filter: blur(18px); z-index: -1; }
    .hero-card, .browser, .service-card, .package-card, .portfolio-card, .process-card, .contact-card, .interactive-box, .faq-item, .growth-board {
      border: 1px solid rgba(17, 24, 39, 0.1);
      background: var(--glass);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }
    .hero-card { border-radius: 36px; padding: 18px; }
    .browser { border-radius: 28px; background: rgba(255,255,255,.58); padding: 22px; }
    .browser-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; color: #64748b; font-size: 12px; }
    .dots { display: flex; gap: 8px; }
    .dot { width: 11px; height: 11px; border-radius: 50%; }
    .dot.cyan { background: var(--cyan); } .dot.pink { background: var(--pink); } .dot.lime { background: var(--lime); }
    .preview-main { padding: 30px; border-radius: 28px; color: #fff; background: linear-gradient(135deg, #081227 0%, #0c2858 44%, #641044 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
    .preview-icon { margin-bottom: 28px; font-size: 44px; }
    .preview-main h2 { font-size: 34px; line-height: 1.08; letter-spacing: -0.055em; }
    .preview-main p { margin-top: 16px; color: #d9e7f7; line-height: 1.65; }

    .growth-board { margin-top: 14px; padding: 18px; border-radius: 26px; background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.5)); }
    .growth-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
    .growth-top strong { font-size: 17px; letter-spacing: -0.03em; }
    .growth-pill { padding: 7px 11px; border-radius: 999px; background: #071020; color: #fff; font-size: 12px; font-weight: 900; }
    .growth-path { position: relative; min-height: 160px; border-radius: 22px; overflow: hidden; background: radial-gradient(circle at 18% 26%, rgba(9,189,245,.18), transparent 30%), radial-gradient(circle at 80% 62%, rgba(255,20,148,.16), transparent 34%), #f8fbff; }
    .growth-line { position: absolute; left: 10%; right: 10%; top: 50%; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--cyan), var(--blue), var(--pink)); transform: translateY(-50%); }
    .orbit-node {
      --x: 20%; --y: 50%; --tx: 0px; --ty: 0px;
      position: absolute;
      left: var(--x);
      top: var(--y);
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      border-radius: 22px;
      color: #fff;
      font-weight: 950;
      font-size: 28px;
      transform: translate(-50%, -50%) translate(var(--tx), var(--ty));
      transition: transform 0.18s ease, box-shadow 0.18s ease;
      box-shadow: 0 16px 34px rgba(35, 52, 88, 0.18);
      cursor: default;
    }
    .orbit-node:hover { box-shadow: 0 22px 46px rgba(35, 52, 88, 0.24); }
    .orbit-node.google { --x: 27%; --y: 48%; background: conic-gradient(from 90deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4); }
    .orbit-node.facebook { --x: 73%; --y: 48%; background: linear-gradient(135deg, #1877f2, #16c8ff); font-family: Arial, sans-serif; font-size: 38px; }
    .growth-labels { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
    .growth-label { padding: 14px; border-radius: 18px; background: rgba(255,255,255,.72); border: 1px solid rgba(17,24,39,.08); }
    .growth-label strong { display: block; margin-bottom: 5px; font-size: 15px; }
    .growth-label p { color: var(--muted); font-size: 13px; line-height: 1.45; }

    .section-head { max-width: 790px; margin-bottom: 46px; }
    .section-head h2 { font-size: clamp(34px, 4.5vw, 56px); line-height: 1; letter-spacing: -0.06em; font-weight: 950; }
    .section-head p { margin-top: 20px; color: #526074; line-height: 1.8; font-size: 18px; }
    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .service-card, .package-card, .portfolio-card, .process-card, .contact-card, .interactive-box, .faq-item { border-radius: var(--radius); }
    .service-card { padding: 28px; transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease; }
    .service-card:hover { transform: translateY(-7px); border-color: rgba(9,189,245,.34); background: var(--glass-strong); }
    .icon-box { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 22px; border: 1px solid rgba(17,24,39,.1); border-radius: 18px; background: linear-gradient(135deg, rgba(9,189,245,.2), rgba(255,20,148,.16)); font-size: 28px; }
    .service-card h3 { margin-bottom: 14px; font-size: 20px; letter-spacing: -0.035em; }
    .service-card p { color: #526074; line-height: 1.7; }

    .interactive-box { display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: center; gap: 36px; padding: 40px; }
    .goal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .goal-card { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-height: 132px; padding: 18px 12px; border: 1px solid rgba(17,24,39,.1); border-radius: 20px; background: rgba(255,255,255,.62); color: #334155; cursor: pointer; transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
    .goal-card::before { content: ""; position: absolute; inset: 0; opacity: 0; background: linear-gradient(135deg, rgba(9,189,245,.22), rgba(38,103,255,.08), rgba(255,20,148,.18)); transition: opacity 0.35s ease; }
    .goal-card > * { position: relative; z-index: 1; }
    .goal-icon { font-size: 30px; transition: transform 0.35s ease; }
    .goal-title { font-size: 14px; font-weight: 950; line-height: 1.25; text-align: center; }
    .goal-card.active { transform: translateY(-5px); border-color: rgba(9,189,245,.42); color: var(--ink); box-shadow: 0 18px 40px rgba(9,189,245,.16), 0 16px 42px rgba(255,20,148,.1); }
    .goal-card.active::before { opacity: 1; }
    .goal-card.active .goal-icon { transform: scale(1.16) rotate(-4deg); }
    .goal-output { position: relative; overflow: hidden; min-height: 164px; margin-top: 20px; padding: 26px; border: 1px solid rgba(17,24,39,.1); border-radius: 24px; background: rgba(255,255,255,.62); }
    .goal-output-inner { opacity: 1; transform: translateY(0) scale(1); transition: opacity 0.44s ease, transform 0.44s ease; }
    .goal-output-inner.fade-out { opacity: 0; transform: translateY(12px) scale(0.985); }
    .goal-output-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
    .goal-output-icon { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(17,24,39,.1); border-radius: 18px; background: linear-gradient(135deg, rgba(9,189,245,.22), rgba(255,20,148,.16)); font-size: 28px; }
    .goal-output h3 { font-size: 24px; letter-spacing: -0.04em; }
    .goal-output p { color: #526074; line-height: 1.75; font-size: 18px; }

    .portfolio-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 22px; }
    .portfolio-card { padding: 32px; }
    .badge { display: inline-flex; margin-bottom: 22px; padding: 9px 14px; border: 1px solid rgba(9,189,245,.2); border-radius: 999px; background: rgba(9,189,245,.12); color: #075d86; font-size: 13px; font-weight: 900; }
    .portfolio-card h3 { font-size: 34px; letter-spacing: -0.05em; }
    .portfolio-card p { max-width: 680px; margin-top: 16px; color: #526074; line-height: 1.75; }
    .text-link { display: inline-flex; margin-top: 24px; color: #075d86; font-weight: 900; }
    .text-link:hover { color: var(--pink); }
    .highlight-card { background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,20,148,.1), rgba(9,189,245,.12)); }

    .process-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 48px; }
    .process-list { display: grid; gap: 15px; }
    .process-card { display: flex; gap: 18px; padding: 20px; }
    .number { flex: 0 0 auto; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 17px; background: linear-gradient(135deg, var(--cyan), var(--pink)); color: #fff; font-weight: 950; box-shadow: 0 14px 26px rgba(9,189,245,.2); }
    .process-card h3 { margin-bottom: 6px; font-size: 18px; }
    .process-card p { color: var(--muted); line-height: 1.55; }

    .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .package-card { padding: 30px; }
    .package-card.featured { border-color: rgba(255,20,148,.22); background: linear-gradient(135deg, rgba(9,189,245,.16), rgba(255,255,255,.84), rgba(255,20,148,.14)); }
    .package-top { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
    .package-card h3 { font-size: 24px; letter-spacing: -0.04em; }
    .mini-badge { padding: 7px 10px; border-radius: 999px; background: rgba(7,16,32,.08); color: #334155; font-size: 11px; font-weight: 900; white-space: nowrap; }
    .price { margin-bottom: 22px; color: #075d86; font-size: 18px; font-weight: 900; }
    .feature-list { display: grid; gap: 13px; color: #526074; list-style: none; }
    .feature-list li::before { content: "✓"; margin-right: 10px; color: #8aa100; font-weight: 950; }

    .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .faq-item { padding: 28px; }
    .faq-item h3 { font-size: 19px; letter-spacing: -0.03em; margin-bottom: 12px; }
    .faq-item p { color: #526074; line-height: 1.75; }

    .contact-section { padding-bottom: 100px; }
    .contact-box { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 0.82fr; align-items: center; gap: 42px; padding: 48px; border-radius: 40px; background: linear-gradient(135deg, #071020, #0d2859 52%, #641044); color: #fff; box-shadow: var(--shadow-dark); }
    .contact-box::after { content: ""; position: absolute; right: -140px; bottom: -170px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,20,148,.24), transparent 62%); pointer-events: none; }
    .contact-box > * { position: relative; z-index: 1; }
    .contact-box .section-head p { color: #d9e7f7; }
    .contact-box .eyebrow { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.16); }
    .contact-card { padding: 30px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
    
    .contact-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .contact-row:last-child { border-bottom: 0; }
    .contact-row > div { min-width: 0; flex: 1; } /* Zapobiega rozpychaniu kontenera przez długi tekst wewnątrz flexa */
    .contact-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; background: rgba(255,255,255,.12); font-size: 24px; flex-shrink: 0; }
    .contact-row small { display: block; margin-bottom: 4px; color: #c8d8eb; font-weight: 800; }
    .contact-row strong, .contact-row a { font-size: 19px; font-weight: 950; overflow-wrap: anywhere; word-break: break-word; } /* Pozwala łamać bardzo długie e-maile i słowa */
    .message-template { margin-top: 20px; padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.08); color: #e8f1ff; line-height: 1.6; }

    footer { border-top: 1px solid rgba(17,24,39,.1); padding: 30px 0; color: #64748b; font-size: 14px; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

    .js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; will-change: opacity, transform; }
    .js .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal.delay-1 { transition-delay: 0.08s; }
    .reveal.delay-2 { transition-delay: 0.16s; }
    .reveal.delay-3 { transition-delay: 0.24s; }

    @media (max-width: 1060px) {
      .nav-links, .navbar > .btn { display: none; }
      .menu-toggle { display: block; }
      .hero-grid, .interactive-box, .portfolio-layout, .process-layout, .contact-box { grid-template-columns: 1fr; }
      .services-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
      .packages-grid { grid-template-columns: 1fr; }
      .goal-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 700px) {
      .container { width: min(100% - 28px, 1180px); }
      .navbar-wrap { padding-top: 10px; }
      body.nav-morphed .navbar-wrap { padding: 6px 0; }
      
      /* Mniejsze i bardziej zwarte menu na urządzeniach mobilnych zamykające puste pola */
      .navbar { min-height: 64px; padding: 8px 12px; border-radius: 20px; }
      body.nav-morphed .navbar { min-height: 56px; border-radius: 0 0 20px 20px; }
      .brand-logo { height: 44px; }
      body.nav-morphed .brand-logo { height: 38px; }
      
      .footer-logo { height: 58px; }
      .hero { padding: 54px 0 76px; }
      body.nav-morphed .hero { padding-top: 130px; }
      h1 { font-size: 42px; line-height: 1.02; letter-spacing: -0.062em; }
      .lead { font-size: 16.5px; line-height: 1.72; }
      .eyebrow { align-items: flex-start; max-width: 100%; padding: 9px 13px; font-size: 12.5px; line-height: 1.35; }
      .hero-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
      .btn { width: 100%; padding: 16px 18px; }
      .trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
      .trust-item { justify-content: center; text-align: center; font-size: 12.5px; }
      .hero-card, .browser { border-radius: 26px; }
      .hero-card { padding: 14px; }
      .browser { padding: 16px; }
      .preview-main { padding: 22px; border-radius: 22px; }
      .preview-main h2 { font-size: 28px; }
      .growth-labels, .services-grid, .goal-grid, .faq-grid { grid-template-columns: 1fr; }
      .orbit-node { width: 56px; height: 56px; border-radius: 18px; }
      .section { padding: 70px 0; }
      .section-head { margin-bottom: 32px; }
      .section-head h2 { font-size: 36px; line-height: 1.04; }
      .section-head p, .goal-output p { font-size: 16px; }
      .interactive-box, .contact-box { padding: 22px; border-radius: 30px; }
      .goal-card { min-height: 104px; flex-direction: row; justify-content: flex-start; padding: 18px; text-align: left; }
      .goal-title { text-align: left; font-size: 16px; }
      .goal-output { padding: 22px; }
      .process-card, .contact-row { align-items: flex-start; }
      
      /* Gwarantowane zmniejszenie tekstu w kontakcie, żeby na małych ekranach wszystko się mieściło */
      .contact-row a, .contact-row strong { font-size: 16px; } 

      .package-top { flex-direction: column; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 430px) {
      .brand-logo { height: 40px; }
      body.nav-morphed .brand-logo { height: 34px; }
      .menu-toggle { width: 44px; height: 44px; border-radius: 14px; }
      h1 { font-size: 36px; }
      .trust-list { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
      .js .reveal { opacity: 1; transform: none; }
    }
