:root {
    --navy: #0f172a;
    --blue: #2563eb;
    --white: #ffffff;
    --bg-soft: #f8fafc;
    --text: #475569;
    --light-blue: #eff6ff;
}

/* ======================================
RESET I BAZA
====================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 1.1rem;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-fluid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

img {
    max-width: 100%;
    display: block;
}

section {
    overflow: hidden;
}

/* ======================================
NAVBAR
====================================== */

.navbar {
    padding: 20px 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -.5px;
    color: var(--navy);
}

.blue {
    color: var(--blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
    transition: .3s;
}

.nav-links a:hover {
    color: var(--blue);
}

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue) !important;
    padding: 10px 22px;
    border-radius: 50px;
    transition: .3s ease;
}

.btn-outline:hover {
    background: var(--blue);
    color: white !important;
    transform: translateY(-2px);
}

/* ======================================
HERO
====================================== */

.hero {
    padding: 90px 0 110px;

    background:
    radial-gradient(circle at 90% 10%, #eff6ff 0%, #ffffff 60%);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.welcome-box {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 10px;
}

.greeting {
    font-size: 2rem;
    font-weight: 400;
    color: black;
}

.name-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 4.1rem;
    font-weight: 800;
    letter-spacing: -2px;

    color: var(--navy);

    transform: translateY(-6px);
}

.black-text {
    color: #000 !important;
}

.blue-text {
    color: var(--blue) !important;
}

.hero-text h1 {
    font-size: 3.7rem;
    font-weight: 800;
    line-height: 1.1;

    color: var(--navy);

    margin-bottom: 28px;

    letter-spacing: -1.5px;
}

.hero-desc {
    font-size: 1.4rem;
    color: var(--text);

    margin-bottom: 38px;

    max-width: 650px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-solid {
    text-decoration: none;

    background: var(--navy);
    color: white;

    padding: 20px 42px;

    border-radius: 50px;

    font-weight: 700;
    font-size: 1.3rem;

    transition: .4s;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    min-height: 54px;

    box-shadow:
    0 15px 30px rgba(15,23,42,.2);
}

.btn-solid:hover {
    background: var(--blue);
    transform: translateY(-5px);
}

.stats {
    border-left: 3px solid var(--blue);
    padding-left: 18px;
}

.stats span {
    display: block;

    font-size: .95rem;
    font-weight: 600;

    text-transform: uppercase;

    color: var(--text);

    max-width: 200px;
}

.image-frame img {
    width: 560px;
    height: 680px;

    object-fit: cover;

    border-radius: 40px;

    box-shadow:
    30px 30px 0 var(--light-blue);
}

/* ======================================
SEKCJE
====================================== */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;

    color: var(--navy);

    margin-top: 12px;
}

.subtitle {
    color: var(--blue);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 1.3rem;
}

.divider {
    width: 80px;
    height: 6px;

    background: var(--blue);

    margin: 20px auto;

    border-radius: 10px;
}

/* ======================================
PROCESS
====================================== */

.process {
    padding: 90px 0;
    background: var(--bg-soft);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 72px;
    height: 72px;

    background: var(--blue);
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 24px;

    font-weight: 800;
    font-size: 1.4rem;
}

.process-step h3 {
    font-size: 1.2rem;

    margin-bottom: 12px;

    color: var(--navy);
}

/* ======================================
USŁUGI
====================================== */

.services {
    padding: 90px 0;
}

.services-grid.no-images {
    grid-template-columns: 1fr;

    gap: 18px;

    max-width: 950px;

    margin: 0 auto;
}

.service-card {
    padding: 28px 32px;

    border-radius: 20px;

    background: white;

    border: 1px solid rgba(37,99,235,.15);

    display: flex;
    align-items: center;

    transition: .3s;
}

.service-card:hover {
    transform: translateX(10px);

    border-color: var(--blue);

    box-shadow:
    0 10px 30px rgba(37,99,235,.1);
}

.service-card h3 {
    font-size: 1.3rem;

    color: var(--navy);

    margin-bottom: 5px;
}

/* ======================================
ZAUFANIE
====================================== */

.trust-section {
    padding: 90px 0;

    background:
    linear-gradient(180deg,#f8fafc 0%,#ffffff 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 22px;

    margin-top: 50px;
}

.trust-card {
    background: white;

    padding: 34px 26px;

    border-radius: 24px;

    text-align: center;

    transition: .35s ease;

    border: 1px solid rgba(37,99,235,.08);

    box-shadow:
    0 10px 30px rgba(15,23,42,.04);
}

.trust-card:hover {
    transform: translateY(-10px);

    box-shadow:
    0 25px 50px rgba(37,99,235,.12);
}

.trust-card i {
    font-size: 2rem;

    color: var(--blue);

    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 1.2rem;

    color: var(--navy);

    margin-bottom: 10px;
}

/* ======================================
OPINIE
====================================== */

.reviews-premium {
    margin-top: 70px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 32px;
}

.reviews-header h3 {
    font-size: 2.2rem;
    color: var(--navy);

    margin-bottom: 10px;
}

.reviews-wrapper {
    background: white;

    padding: 24px;

    border-radius: 30px;

    border: 1px solid rgba(37,99,235,.06);

    box-shadow:
    0 20px 50px rgba(15,23,42,.06);
}

/* ======================================
KONTAKT
====================================== */

.contact {
    padding: 90px 0;
    background: #ffffff;
}

.contact-box {
    background: #111827;

    border-radius: 24px;

    padding: 55px 35px;

    max-width: 950px;

    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 35px;
}

.contact-header h2 {
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -2px;

    color: white;

    margin-bottom: 18px;
}

.white-divider {
    width: 70px;
    height: 3px;

    background: #1e3a8a;

    margin: 0 auto 24px;

    border-radius: 999px;
}

.contact-header p {
    color: rgba(255,255,255,.72);

    max-width: 650px;

    margin: 0 auto;

    line-height: 1.7;
}

.contact-form {
    max-width: 720px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 18px;

    margin-bottom: 18px;
}

.form-row input,
.contact-form textarea {
    width: 100%;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 10px;

    padding: 18px 20px;

    color: white;

    font-size: 1rem;
    font-family: inherit;

    transition: .2s ease;
}

.form-row input {
    min-height: 54px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,.45);
}

.form-row input:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: rgba(255,255,255,.18);

    background: rgba(255,255,255,.06);
}

.single-row {
    display: block;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: rgba(255,255,255,.65);

    font-size: .92rem;
    line-height: 1.5;

    margin-bottom: 16px;
}

.checkbox input {
    margin-top: 4px;
}

.checkbox a {
    color: white;
    text-decoration: underline;
}

.form-info {
    margin-bottom: 24px;

    font-size: .82rem;
    line-height: 1.7;

    color: rgba(255,255,255,.72);
}

.btn-submit {
    width: 100%;

    background: white;
    color: #111827;

    border: none;

    border-radius: 10px;

    padding: 18px;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: .2s ease;

    min-height: 54px;
}

.btn-submit:hover {
    opacity: .92;
}

/* ======================================
DANE KONTAKTOWE
====================================== */

.contact-info {
    margin-top: 50px;
}

.contact-info-box {
    background: #fff;

    border-radius: 24px;

    padding: 45px 35px;

    border: 1px solid #e5e7eb;

    box-shadow:
    0 20px 50px rgba(15,23,42,.05);
}

.contact-header-center {
    text-align: center;

    margin-bottom: 40px;
}

.contact-header-center h3 {
    font-size: 2.2rem;

    color: #0f172a;

    margin-bottom: 10px;
}

.contact-header-center p {
    color: #475569;

    max-width: 600px;

    margin: 0 auto;

    line-height: 1.7;
}

.contact-row-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    max-width: 900px;

    margin: 0 auto;
}

.contact-item-minimal {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    color: #0f172a;

    font-size: 1.05rem;
    font-weight: 500;

    transition: .2s ease;
}

.contact-item-minimal i {
    font-size: 2rem;
    color: var(--blue);
}

.contact-item-minimal:hover {
    color: var(--blue);
}

/* ======================================
FOOTER
====================================== */

.footer {
    padding: 50px 0;

    text-align: center;

    border-top: 1px solid #f1f5f9;
}

.legal-info {
    font-size: .8rem;

    margin-top: 10px;

    opacity: .6;
}

.footer-links {
    margin-top: 14px;
}

.footer-links a {
    color: #64748b;

    text-decoration: none;

    font-size: .9rem;

    transition: .2s ease;
}

.footer-links a:hover {
    color: var(--blue);
}

/* ======================================
FLOATING PHONE
====================================== */

.floating-phone {
    position: fixed;

    right: 20px;
    bottom: 50px;

    z-index: 2000;

    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;

    animation: floatPhone 3s ease-in-out infinite;
}

.floating-phone i {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--blue);
    color: white;

    font-size: 1.3rem;

    box-shadow:
    0 15px 35px rgba(37,99,235,.35);

    transition: .3s ease;
}

.phone-tooltip {
    background: white;

    padding: 12px 18px;

    border-radius: 16px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    display: flex;
    flex-direction: column;

    transition: .3s ease;
}

.phone-tooltip span {
    font-size: .8rem;

    color: #64748b;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.phone-tooltip strong {
    font-size: 1rem;
    color: var(--navy);
}

.floating-phone:hover i {
    transform: scale(1.08);
    background: var(--navy);
}

.floating-phone:hover .phone-tooltip {
    transform: translateX(-5px);
}

@keyframes floatPhone {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }

}

/* ======================================
COOKIES
====================================== */

.cookie-box {
    position: fixed;

    left: 20px;
    right: 20px;
    bottom: 20px;

    width: 100%;
    max-width: 430px;

    background: rgba(15,23,42,.97);

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 24px;

    padding: 24px;

    z-index: 9999;

    box-shadow:
    0 25px 60px rgba(0,0,0,.22);

    opacity: 0;
    visibility: hidden;

    transform: translateY(30px);

    transition:
    opacity .35s ease,
    visibility .35s ease,
    transform .35s ease;
}

.cookie-box.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.cookie-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 32px;

    padding: 0 14px;

    border-radius: 999px;

    background: rgba(37,99,235,.12);

    color: #60a5fa;

    font-size: .78rem;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 16px;
}

.cookie-text h4 {
    color: white;

    font-size: 1.35rem;
    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 14px;
}

.cookie-text p {
    color: rgba(255,255,255,.72);

    font-size: .95rem;

    line-height: 1.8;
}

.cookie-text a {
    color: #93c5fd;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 24px;
}

.cookie-btn {
    width: 100%;
    height: 50px;

    border: none;

    border-radius: 14px;

    font-size: .95rem;
    font-weight: 600;

    cursor: pointer;

    transition: .2s ease;
}

.cookie-btn.primary {
    background: var(--blue);
    color: white;
}

.cookie-btn.primary:hover {
    transform: translateY(-2px);
    opacity: .96;
}

.cookie-btn.secondary {
    background: rgba(255,255,255,.08);
    color: white;
}

.cookie-btn.secondary:hover {
    background: rgba(255,255,255,.12);
}

/* ======================================
DODATKOWE
====================================== */

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hidden-field {
    display: none;
}

/* ======================================
RESPONSIVE
====================================== */

@media (max-width: 1200px) {

    .hero-text h1 {
        font-size: 3.8rem;
    }

    .image-frame img {
        width: 480px;
        height: auto;
    }

}

@media (max-width: 1024px) {

    .hero-wrapper {
        flex-direction: column;

        text-align: center;

        gap: 40px;
    }

    .hero-text {
        align-items: center;
    }

    .hero-text h1,
    .hero-desc,
    .stats span {
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        gap: 20px;
    }

    .stats {
        border-left: none;
        padding-left: 0;
    }

    .process-grid,
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 768px) {

    body {
        font-size: 1rem;
    }

    .container,
    .container-fluid {
        padding: 0 18px;
    }

    .navbar .container-fluid {
        flex-direction: column;
        gap: 12px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        justify-content: center;
    }

    .hero {
        padding: 70px 0 80px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.18;
    }

    .hero-text h1 .blue-text {
        display: inline-block;
        white-space: nowrap;
    }

    .greeting {
        font-size: 1.5rem;
    }

    .name-signature {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .btn-solid {
        width: 100%;
        padding: 18px 24px;
    }

    .section-title h2,
    .contact-header h2,
    .reviews-header h3 {
        font-size: 2rem;
    }

    .process-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .checkbox {
        font-size: .85rem;
        line-height: 1.6;
    }

    .form-info {
        font-size: .78rem;
        line-height: 1.6;
    }

    .contact-box {
        padding: 36px 18px;
    }

    .contact-info-box {
        padding: 30px 20px;
    }

    .contact-row-horizontal {
        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 18px;
    }

    .phone-tooltip {
        display: none;
    }

    .floating-phone {
        right: 15px;
        bottom: 60px;
    }

    .floating-phone i {
        width: 56px;
        height: 56px;

        font-size: 1.2rem;
    }

    .cookie-box {
        left: 12px;
        right: 12px;
        bottom: 12px;

        width: auto;
        max-width: none;

        padding: 18px;

        border-radius: 20px;
    }

    .cookie-text h4 {
        font-size: 1.1rem;
    }

    .cookie-text p {
        font-size: .88rem;
        line-height: 1.7;
    }

}

@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .contact-header-center h3 {
        font-size: 1.5rem;
    }

}




/* ======================================
FORMA SPOTKANIA
====================================== */

.meeting-preference {
    margin-bottom: 24px;
}

.meeting-label {
    color: white;

    font-size: .95rem;
    font-weight: 600;

    margin-bottom: 14px;
}

.meeting-option {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: rgba(255,255,255,.78);

    font-size: .95rem;

    cursor: pointer;
}

.meeting-option input[type="radio"] {
    width: 18px;
    height: 18px;

    accent-color: var(--blue);

    cursor: pointer;

    flex-shrink: 0;
}

/* ======================================
CHECKBOX RODO
====================================== */

.checkbox {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    color: rgba(255,255,255,.72);

    font-size: .92rem;
    line-height: 1.65;

    margin-bottom: 16px;
}

.checkbox input {
    margin-top: 5px;

    min-width: 16px;

    flex-shrink: 0;
}

.checkbox a {
    color: white;

    text-decoration: underline;
}

/* ======================================
INFORMACJA RODO
====================================== */

.form-info {
    margin-top: 22px;

    text-align: center;

    font-size: .82rem;
    line-height: 1.7;

    color: rgba(255,255,255,.72);

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {

    .form-info {
        font-size: .78rem;
        line-height: 1.6;

        margin-top: 18px;
    }

}



/* ======================================
MOBILE FIX
====================================== */

@media (max-width: 768px) {

    .meeting-label,
    .meeting-option,
    .checkbox {
        font-size: .85rem;
    }

    .form-info {
        font-size: .78rem;
        line-height: 1.6;
    }

}