:root {
    --bg: #060a16;
    --bg-alt: #0a1128;
    --panel: #0d1730;
    --line: #1c2b52;
    --blue: #2f8fff;
    --blue-light: #7fc2ff;
    --text: #eaf1ff;
    --muted: #9db0d6;
    --radius: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, .header__brand span {
    font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
}

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

a {
    color: inherit;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(6, 10, 22, 0.97);
    border-bottom: 1px solid var(--line);
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header__brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.header__brand span {
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
    line-height: 1.15;
}

@media (max-width: 640px) {
    .header__brand span {
        font-size: 0.72rem;
    }
}

.header__cta {
    background: linear-gradient(135deg, var(--blue), #1355c4);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(47, 143, 255, 0.35);
    white-space: nowrap;
}

/* ---------- hero ---------- */
.hero {
    background: #000;
    padding: 0;
}

.hero__image {
    width: 100%;
    display: block;
}

.hero-content {
    padding: 52px 20px 56px;
    background: linear-gradient(180deg, var(--bg-alt), var(--bg));
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.hero__eyebrow {
    display: inline-block;
    color: var(--blue-light);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 780px;
    margin: 0 auto 34px;
    color: var(--text);
    font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
    font-size: clamp(1.2rem, 2.6vw, 1.55rem);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.2px;
}

.hero-content p strong {
    color: var(--blue-light);
    font-weight: 600;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: linear-gradient(135deg, var(--blue), #1355c4);
    color: #fff;
    box-shadow: 0 8px 28px rgba(47, 143, 255, 0.45);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ---------- trust strip ---------- */
.trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--blue-light);
}

.trust__item .ico {
    font-size: 1.3rem;
}

/* ---------- section basics ---------- */
section {
    padding: 64px 0;
}

.section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.section__eyebrow {
    color: var(--blue-light);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.section__head h2 {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    margin: 10px 0 0;
}

/* ---------- services grid ---------- */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    background: linear-gradient(180deg, var(--panel), #0a1226);
    border: 1px solid rgba(47, 143, 255, 0.3);
    padding: 24px 22px;
    position: relative;
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(47, 143, 255, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    border-color: rgba(127, 194, 255, 0.75);
    box-shadow: 0 0 26px rgba(47, 143, 255, 0.4), inset 0 0 0 1px rgba(47, 143, 255, 0.1);
}

.service-card .ico {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(47, 143, 255, 0.28), rgba(47, 143, 255, 0.04));
    border: 1px solid rgba(127, 194, 255, 0.55);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    box-shadow: 0 0 18px rgba(47, 143, 255, 0.45), inset 0 0 10px rgba(47, 143, 255, 0.25);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    margin: 0 0 14px;
    padding-bottom: 10px;
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    position: relative;
}

.service-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue-light), rgba(127, 194, 255, 0));
    box-shadow: 0 0 10px var(--blue-light);
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.check-list li::before {
    content: "✓";
    color: var(--blue-light);
    font-weight: 700;
    flex-shrink: 0;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.service-card--wide {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(47, 143, 255, 0.18), rgba(19, 85, 196, 0.1));
    font-weight: 700;
    letter-spacing: 0.5px;
}

.services img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(47, 143, 255, 0.3);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.services img:hover {
    border-color: rgba(127, 194, 255, 0.75);
    box-shadow: 0 0 26px rgba(47, 143, 255, 0.4);
}

/* ---------- steps (etapy współpracy) ---------- */
.steps-photo {
    text-align: center;
}

.steps-photo img {
    max-width: 480px;
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(47, 143, 255, 0.3);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

/* ---------- boats banner ---------- */
.boats {
    padding: 0;
}

.boat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.boat-grid img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(47, 143, 255, 0.3);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

/* ---------- reviews ---------- */
.reviews {
    padding: 0 20px;
}

.reviews__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 4px 4px 14px;
    max-width: 1120px;
    margin: 0 auto;
    scrollbar-width: thin;
}

.review-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: linear-gradient(180deg, var(--panel), #0a1226);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}

.review-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card__head strong {
    display: block;
    font-size: 0.92rem;
}

.review-card__head span {
    display: block;
    font-size: 0.76rem;
    color: var(--muted);
}

.review-card__stars {
    color: #ffb400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ---------- gallery ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

/* ---------- contact ---------- */
.contact {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.contact__card {
    background: linear-gradient(180deg, var(--panel), #0a1226);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
}

.contact__row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.contact__row:last-child {
    border-bottom: none;
}

.contact__row .ico {
    font-size: 1.2rem;
    color: var(--blue-light);
    width: 26px;
}

.contact__row strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 2px;
}

.map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 320px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge {
    font-size: 0.8rem;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(47, 143, 255, 0.4);
    color: var(--blue-light);
    text-decoration: none;
}

/* ---------- footer ---------- */
.footer {
    padding: 26px 0 40px;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

/* ---------- sticky mobile bar ---------- */
.sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: none;
    background: rgba(6, 10, 22, 0.95);
    border-top: 1px solid var(--line);
    padding: 10px 16px;
    backdrop-filter: blur(6px);
}

.sticky-bar a {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--blue), #1355c4);
    color: #fff;
    font-weight: 700;
    padding: 13px;
    border-radius: 999px;
    text-decoration: none;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card--wide {
        grid-column: span 2;
    }

    .boat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .services {
        grid-template-columns: 1fr;
    }

    .service-card--wide {
        grid-column: span 1;
    }

    .boat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .header__cta {
        display: none;
    }

    .sticky-bar {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }
}
