/* ============================================================
   CUKIER CENTRUM USŁUG — Main Stylesheet v1.0
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
    --navy:         #192252;
    --navy-dark:    #0F1535;
    --navy-mid:     #1E2A6A;
    --navy-light:   #243578;
    --blue:         #4169AE;
    --blue-light:   #5B82C8;
    --orange:       #F07820;
    --orange-dark:  #D86510;
    --orange-light: #FF9A40;
    --white:        #FFFFFF;
    --off-white:    #F5F7FA;
    --gray-100:     #F1F3F8;
    --gray-200:     #E5E7EB;
    --gray-400:     #9CA3AF;
    --gray-500:     #6B7280;
    --gray-700:     #374151;
    --dark:         #111827;

    --shadow-sm:  0 1px 4px rgba(0, 0, 0, .08);
    --shadow-md:  0 4px 18px rgba(0, 0, 0, .12);
    --shadow-lg:  0 10px 40px rgba(0, 0, 0, .16);
    --shadow-xl:  0 20px 60px rgba(0, 0, 0, .20);

    --radius:     8px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    --transition: .25s ease;
    --container:  1200px;

    --font-head:  'Montserrat', system-ui, sans-serif;
    --font-body:  'Inter', system-ui, sans-serif;
}

/* ── Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }
address { font-style: normal; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utilities ──────────────────────────────────────────── */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
    position: fixed; top: 1rem; left: 1rem;
    padding: .5rem 1rem; background: var(--orange);
    color: white; z-index: 9999; border-radius: var(--radius);
}
.text-center   { text-align: center; }
.text-white    { color: var(--white) !important; }
.text-accent   { color: var(--orange); }
.bg-light      { background: var(--off-white); }
.bg-navy       { background: var(--navy); }

/* ── Container ──────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.5rem;
}
.container--narrow { max-width: 800px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 600;
    padding: .65rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: .02em;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255,255,255,.7);
    color: var(--white);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}
.btn-white:hover {
    background: var(--off-white);
    color: var(--navy);
}

.btn-ghost {
    background: transparent;
    border-color: transparent;
    color: var(--gray-700);
    padding-inline: .75rem;
}
.btn-ghost:hover { color: var(--navy); background: var(--gray-100); }

.btn-lg  { font-size: 1rem; padding: .85rem 2rem; }
.btn-sm  { font-size: .8rem; padding: .4rem 1rem; }

/* ── Section base ───────────────────────────────────────── */
.section {
    padding-block: 5rem;
}
.section-header {
    margin-bottom: 3.5rem;
}
.section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .75rem;
}
.section-label--light { color: rgba(255,255,255,.6); }
.section-header h2 { margin-bottom: .75rem; }
.section-desc {
    max-width: 640px;
    margin-inline: auto;
    color: var(--gray-500);
    font-size: 1.05rem;
}

/* ── Reveal animation ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy-dark);
    color: var(--white);
    z-index: 9000;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    border-top: 3px solid var(--orange);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    max-width: var(--container);
    margin-inline: auto;
    flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.85); }
.cookie-inner a { color: var(--orange-light); }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 8000;
    background: rgba(25, 34, 82, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-lg);
    background: var(--navy);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    gap: 1.5rem;
}

.header-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: .25rem;
}
.nav-link {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    padding: .4rem .65rem;
    border-radius: var(--radius);
    letter-spacing: .02em;
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,.08);
}
.nav-cta { margin-left: .5rem; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100vh;
    background-image: url('../images/hero-bg.jpg');
    background-image: image-set(
        url('../images/hero-bg.webp') type('image/webp'),
        url('../images/hero-bg.jpg')  type('image/jpeg')
    );
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

/* Cinematic overlay: heavy navy on left for text legibility, exposed center-right for person */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(10,15,45,.60) 0%,
            rgba(10,15,45,.00) 20%,
            rgba(10,15,45,.00) 72%,
            rgba(10,15,45,.70) 100%
        ),
        linear-gradient(
            to right,
            rgba(9,13,42,.92) 0%,
            rgba(9,13,42,.78) 22%,
            rgba(9,13,42,.42) 42%,
            rgba(9,13,42,.10) 58%,
            rgba(9,13,42,.38) 78%,
            rgba(9,13,42,.68) 100%
        );
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(auto, 620px) 1fr;
    align-items: center;
    gap: 3rem;
    padding-block: 4.5rem 5.5rem;
    position: relative;
    z-index: 1;
}

.hero-content { z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(240,120,32,.15);
    border: 1px solid rgba(240,120,32,.35);
    color: var(--orange-light);
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem .85rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.3); }
}

.hero-heading {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}

.hero-description {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    font-family: var(--font-head);
}
.trust-check { color: var(--orange); font-size: 1rem; }

/* Hero visual — empty column; photo shows through overlay */
.hero-visual { display: none; }

/* Scroll mouse indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: rgba(255,255,255,.6);
    border-radius: 2px;
    animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   DLA KOGO SECTION
   ============================================================ */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.audience-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.audience-card--investors { border-top-color: var(--orange); }
.audience-card--individual { border-top-color: var(--blue); }

.audience-icon {
    width: 72px; height: 72px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}
.audience-card--investors .audience-icon { background: rgba(240,120,32,.1); color: var(--orange); }
.audience-card--individual .audience-icon { background: rgba(65,105,174,.1); color: var(--blue); }

.audience-card h3 { color: var(--navy); font-size: 1.35rem; }
.audience-card p  { color: var(--gray-500); }

.audience-features {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: auto;
    margin-bottom: .25rem;
}
.audience-features li {
    font-size: .9rem;
    color: var(--gray-700);
    padding-left: 1.25rem;
    position: relative;
}
.audience-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* ============================================================
   SERVICES / USŁUGI SECTION
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.service-icon {
    width: 60px; height: 60px;
    background: rgba(240,120,32,.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: background var(--transition);
}
.service-card:hover .service-icon {
    background: var(--orange);
    color: var(--white);
}

.service-card h3 { font-size: 1.1rem; color: var(--navy); }
.service-card > p { font-size: .9rem; color: var(--gray-500); }

.service-list {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-top: auto;
}
.service-list li {
    font-size: .85rem;
    color: var(--gray-700);
    padding-left: 1.1rem;
    position: relative;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 5px;
    background: var(--orange);
    border-radius: 50%;
}

/* ============================================================
   DLACZEGO MY SECTION
   ============================================================ */
.dlaczego-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.dlaczego-content h2 { margin-bottom: 1rem; }
.dlaczego-intro {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.benefit-check {
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
}
.benefit-check::after {
    content: '';
    width: 10px; height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg) translateY(-1px);
    display: block;
}
.benefits-list strong { display: block; color: var(--navy); font-size: .95rem; margin-bottom: .1rem; }
.benefits-list span   { font-size: .88rem; color: var(--gray-500); }

/* Stat cards (right column) */
.dlaczego-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: .85rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.stat-icon {
    width: 48px; height: 48px;
    background: rgba(240,120,32,.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}
.stat-title { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: .25rem; }
.stat-desc  { font-size: .82rem; color: var(--gray-500); margin: 0; }

/* ============================================================
   PROCES SECTION
   ============================================================ */
.proces-section h2 { color: var(--white); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-bottom: 3rem;
}


.step-item {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background var(--transition), border-color var(--transition);
    position: relative;
}
.step-item:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(240,120,32,.4);
}

.step-number {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(240,120,32,.25);
    line-height: 1;
    margin-bottom: .5rem;
    letter-spacing: -.04em;
}
.step-icon {
    width: 48px; height: 48px;
    background: rgba(240,120,32,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-inline: auto;
    margin-bottom: 1rem;
}
.step-item h3 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.step-item p  { color: rgba(255,255,255,.6); font-size: .88rem; margin: 0; }

.proces-note {
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    max-width: 500px;
    margin-inline: auto;
}
.proces-note strong { color: var(--white); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding-block: 4rem;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   KONTAKT SECTION
   ============================================================ */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.kontakt-info h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(240,120,32,.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}
.contact-detail-label {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray-400);
    margin-bottom: .2rem;
}
.contact-detail-value {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
}
a.contact-detail-value:hover { color: var(--orange); }

.contact-hours { display: flex; gap: 1rem; align-items: flex-start; margin-top: .5rem; }
.contact-hours .contact-detail-icon { color: var(--blue); background: rgba(65,105,174,.1); }

.kontakt-nip {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ── Contact Form ─────────────────────────────────────── */
.kontakt-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .02em;
}
.form-group label span { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--dark);
    background: var(--off-white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: .7rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(65,105,174,.15);
    background: var(--white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-checkbox { flex-direction: row; align-items: flex-start; gap: .75rem; }
.form-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px; height: 18px;
    margin-top: .15rem;
    accent-color: var(--orange);
    cursor: pointer;
    background: var(--off-white);
    border: 1.5px solid var(--gray-200);
    padding: 0;
}
.form-checkbox label {
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 400;
    color: var(--gray-500);
    cursor: pointer;
    line-height: 1.55;
}
.form-checkbox label a { color: var(--orange); text-decoration: underline; }

.form-actions { margin-top: .5rem; }
.btn-submit { width: 100%; justify-content: center; }

.spinner { animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-messages {
    padding: .85rem 1rem;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 500;
    display: none;
}
.form-messages.success {
    display: block;
    background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.3);
    color: #065F46;
}
.form-messages.error {
    display: block;
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.3);
    color: #7F1D1D;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.7);
    padding-top: 4rem;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-tagline { font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.5); }

.footer-heading {
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .88rem;
    color: rgba(255,255,255,.65);
}
.footer-contact-list svg { flex-shrink: 0; margin-top: .1rem; color: var(--orange); }
.footer-contact-list a { color: rgba(255,255,255,.65); }
.footer-contact-list a:hover { color: var(--orange-light); }
.footer-contact-list address { line-height: 1.5; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-block: 1.5rem;
    font-size: .82rem;
}
.footer-copy  { color: rgba(255,255,255,.4); }
.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: rgba(255,255,255,.35);
}
.footer-legal a { color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: var(--orange-light); }

/* ============================================================
   PAGE / PRIVACY POLICY
   ============================================================ */
.page-section { padding-block: 5rem; }
.page-section .section-header { margin-bottom: 0; }

.page-article { padding-top: 2rem; }
.page-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}
.page-content-body { font-size: 1rem; line-height: 1.75; }

/* Privacy policy specifics */
.privacy-policy h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .5rem; }
.policy-date { font-size: .85rem; color: var(--gray-400); margin-bottom: 2.5rem; }

.privacy-policy h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--gray-200);
}
.privacy-policy h3 {
    font-size: 1.05rem;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    color: var(--navy-light);
}
.privacy-policy ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.privacy-policy ul li { margin-bottom: .35rem; }
.privacy-policy p { color: var(--gray-700); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid    { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .dlaczego-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
    .section { padding-block: 3.5rem; }

    /* Header / Nav */
    .nav-toggle { display: flex; }
    .primary-nav {
        display: none;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--navy-dark);
        border-top: 1px solid rgba(255,255,255,.08);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem;
        box-shadow: var(--shadow-xl);
    }
    .primary-nav.open { display: flex; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-link {
        display: block;
        padding: .75rem 1rem;
        font-size: .95rem;
    }
    .nav-cta { margin: .5rem 0 0; text-align: center; justify-content: center; }

    /* Hero */
    .hero-section { background-position: 72% center; }
    .hero-section::before {
        background:
            linear-gradient(to bottom, rgba(9,13,42,.65) 0%, rgba(9,13,42,.0) 25%, rgba(9,13,42,.0) 70%, rgba(9,13,42,.75) 100%),
            linear-gradient(to right, rgba(9,13,42,.90) 0%, rgba(9,13,42,.60) 40%, rgba(9,13,42,.30) 70%, rgba(9,13,42,.55) 100%);
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-block: 3rem 4rem;
    }
    .hero-description { margin-inline: auto; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-badge { margin-inline: auto; }

    /* Sections */
    .audience-grid  { grid-template-columns: 1fr; }
    .services-grid  { grid-template-columns: 1fr; }
    .dlaczego-grid  { grid-template-columns: 1fr; }
    .dlaczego-stats { grid-template-columns: 1fr; }
    .steps-grid     { grid-template-columns: 1fr; gap: 1rem; }
    .kontakt-grid   { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }
    .kontakt-form-wrapper { padding: 1.5rem; }

    /* Footer */
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal  { flex-direction: column; gap: .5rem; }
}

@media (max-width: 480px) {
    :root { --container: 100%; }
    .hero-heading { font-size: 1.9rem; }
    .btn-lg { padding: .75rem 1.5rem; font-size: .95rem; }
    .audience-card { padding: 1.75rem; }
    .cta-band-btns { flex-direction: column; align-items: stretch; }
    .cta-band-btns .btn { justify-content: center; }
    .hero-scroll { display: none; }
}

/* ── Focus visible (accessibility) ──────────────────────── */
:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

/* ── WhatsApp float ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 2rem;
    z-index: 9990;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,.6);
}
@media print { .whatsapp-float { display: none; } }

/* ── Print ──────────────────────────────────────────────── */
@media print {
    .site-header, .cookie-banner, .hero-scroll, .hero-visual { display: none; }
    .hero-section { min-height: auto; padding-top: 2rem; }
    body { color: #000; }
}
