:root {
    /* Podmień pod obiekt */
    --primary-color: #151d32;
    --secondary-color: #f4cb71;
    --accent-color: #0d1220;

    --light-color: #ffffff;
    --gray-light: #eef2f7;
    --gray-medium: #4a5568;
    --gray-dark: #1a202c;

    --button-green: #c99a3b;
    --border-radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.25s ease;
}

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

body {
    font-family: 'Raleway', Arial, sans-serif;
    color: var(--gray-dark);
    background: var(--light-color);
    line-height: 1.6;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    z-index: 2000;
}

.skip-to-content:focus {
    top: 8px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.logo {
    max-height: 50px;
    width: auto;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-partner-link {
    display: inline-flex;
    align-items: center;
}

.logo-partner {
    max-height: 34px;
    display: block;
    background: #fff;
    border-radius: 6px;
    padding: 2px 4px;
    box-shadow: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-lang-single {
    display: flex;
    align-items: center;
}

.nav-lang {
    position: relative;
}

.lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #d9e1ec;
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
    line-height: 1;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-dark);
    text-decoration: none;
}

.lang-chip.is-active {
    background: #f4f7fb;
}

.lang-code {
    letter-spacing: 0.04em;
}

.lang-flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: inline-block;
    flex: 0 0 16px;
}

.flag-cz {
    background:
        linear-gradient(150deg, transparent 50%, #d7141a 50%),
        linear-gradient(30deg, #11457e 50%, transparent 50%),
        linear-gradient(to bottom, #ffffff 50%, #d7141a 50%);
}

.flag-pl {
    background: linear-gradient(to bottom, #ffffff 50%, #dc143c 50%);
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #d9e1ec;
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
    line-height: 1;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-dark);
    text-decoration: none;
    background: #fff;
    list-style: none;
    cursor: pointer;
}

.lang-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #5f6b7a;
}

.lang-menu {
    position: relative;
}

.lang-menu > summary {
    list-style: none;
}

.lang-menu > summary::-webkit-details-marker {
    display: none;
}

.lang-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 86px;
    background: #fff;
    border: 1px solid #d9e1ec;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.35rem;
    display: none;
    z-index: 1200;
}

.lang-menu[open] .lang-dropdown {
    display: block;
}

.lang-option {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.35rem 0.4rem;
    border-radius: 8px;
}

.lang-option:hover,
.lang-option:focus {
    background: #f4f7fb;
}

.header-lang-hint {
    display: none;
    align-items: center;
    color: #6e7d91;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}


.nav-reserve {
    background: var(--button-green);
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 999px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
}

.hero {
    margin-top: 78px;
    min-height: 82vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: visible;
    z-index: 5;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 13, 20, 0.6), rgba(8, 13, 20, 0.55));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(920px, 92%);
    margin: 0 auto;
    overflow: visible;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.hero-tagline {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(36, 54, 115, 0.9), rgba(31, 45, 58, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-weight: 700;
}

.hero-description {
    max-width: 900px;
    margin: 0 auto;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    background: rgba(7, 12, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-description strong {
    color: var(--secondary-color);
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn {
    margin-top: 0;
}

.iai-search {
    position: relative;
    z-index: 50;
    overflow: visible;
}

#iai_booking_data1,
#iai_booking_data2,
#iaicalendar {
    z-index: 9999 !important;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 1.4rem;
    color: var(--primary-color);
}

.section-divider {
    width: 180px;
    height: 2px;
    margin: 0 auto 2rem;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

section {
    padding: 84px 0;
}

.trust-strip {
    border-bottom: 1px solid #e6edf7;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.7rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f7faff;
    border: 1px solid #dce7f4;
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    font-size: 0.92rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--accent-color);
}

.about,
.features,
.amenities-highlight,
.reviews,
.reservation,
.page-header,
.policy-page,
.contact-page {
    scroll-margin-top: 92px;
}

.about {
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.cta-text {
    margin-top: 1rem;
    text-align: center;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(125, 34, 72, 0.3);
    background: linear-gradient(135deg, rgba(217, 79, 112, 0.12), rgba(125, 34, 72, 0.14));
}

.features {
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1rem 1.1rem;
    max-width: 980px;
    margin: 0 auto;
}

.feature-card {
    border-radius: var(--border-radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #ead6de;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.feature-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.03rem;
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.55;
}

.result-highlight {
    display: inline-block;
    margin-top: 0.45rem;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #e7f1ff 0%, #d8ebff 100%);
    border: 1px solid #b8d7ff;
    color: #0f4f9c;
    font-weight: 800;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    color: var(--accent-color);
}

.amenities-highlight {
    background: #fff7fa;
}

.amenities-score {
    text-align: center;
    margin-bottom: 1rem;
}

.amenities-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1rem 1.1rem;
    max-width: 980px;
    margin: 0 auto;
}

.amenity-chip {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid #efd3dc;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    min-height: 62px;
}

.amenity-chip i {
    color: var(--accent-color);
}

.amenities-cta {
    text-align: center;
    margin-top: 1.7rem;
}

.reviews {
}

.reviews-header {
    text-align: center;
}

.reviews-score-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.reviews-score-text {
    display: block;
    color: var(--gray-medium);
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #003580, #0057b8);
    color: #fff;
    font-size: 0.92rem;
}

.reviews-proof {
    margin-top: 0.7rem;
    color: var(--gray-medium);
    font-size: 0.92rem;
}

.demand-note {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    background: #fff3f7;
    border: 1px solid #f1c7d7;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    color: var(--accent-color);
}

.reviews-categories-panel {
    margin-top: 1.3rem;
    border: 1px solid #dce6f3;
    border-radius: 14px;
    padding: 0;
}

.reviews-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.review-subscore {
    background: #f8fbff;
    border: 1px solid #dce6f3;
    border-radius: 12px;
    padding: 0.65rem;
}

.review-subscore-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.45rem;
}

.review-subscore-meter {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: #e7edf6;
    overflow: hidden;
}

.review-subscore-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.review-card {
    border: 1px solid #e7edf6;
    border-radius: 12px;
    padding: 0.9rem;
}

.reservation {
    background: var(--gray-light);
    text-align: center;
}

.reservation-widget {
    margin-top: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 0;
}

.reservation-contact {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.reservation-contact p {
    margin-bottom: 0;
}

.contact-direct-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 1rem 0 0.55rem;
}

.contact-direct-photo-frame {
    width: 228px;
    height: 228px;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle at 30% 20%, #f7fbff, #eaf1fb);
    border: 2px solid #dce6f5;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
    flex: 0 0 228px;
}

.contact-direct-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0%;
    transform: scale(1.49) translateY(-28px);
    transform-origin: center top;
}

.contact-direct-person p {
    margin: 0;
    text-align: left;
    font-size: 1.08rem;
    line-height: 1.35;
}

.privacy-note {
    margin-top: 0.9rem;
    color: var(--gray-medium);
    font-size: 0.88rem;
}

.privacy-note a {
    color: var(--accent-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    min-height: 44px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.3rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
}

.page-header {
    margin-top: 78px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    text-align: center;
    padding: 70px 0 42px;
}

.page-subtitle {
    color: #dbe5f7;
}

.policy-page,
.contact-page {
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    background: var(--gray-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 1.4rem;
}

.policy-section {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.policy-section:last-child {
    border-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}

.policy-section p,
.policy-section li {
    color: var(--gray-medium);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-item {
    margin-bottom: 1.2rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid #edf2f7;
}

.contact-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    margin-bottom: 0.85rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid #d9e1ec;
    border-radius: 10px;
    font: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

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

footer {
    background: #1a1a1a;
    color: #dce3ee;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.3rem;
}

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #dce3ee;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.4rem;
}

.footer-bottom,
.footer-part-of {
    text-align: center;
    font-size: 0.92rem;
}

.footer-link {
    color: var(--secondary-color) !important;
}

.floating-buttons {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1001;
    display: flex;
    gap: 8px;
}

.floating-btn {
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 14px;
    color: #fff;
    background: var(--button-green);
}

.floating-btn--call {
    background: #1476ff;
}

/* Shared feature-highlight component (IND.U: Lobby / Sunday: Pool-SPA) */
.feature-highlight {
    background: #f8fbff;
}

.feature-highlight .about-content {
    margin-bottom: 0;
}

.feature-highlight--custom .about-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 860px;
    margin: 0 auto;
}

.feature-highlight--custom .about-content > div:last-child {
    order: 1;
    text-align: center;
}

.feature-highlight--custom .about-image {
    order: 2;
}

.partner-model {
}

.partner-model .features-grid {
    margin-top: 1.2rem;
}

.proof-cta {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.proof-cta .btn {
    min-width: 220px;
    justify-content: center;
}

.btn-cta-main {
    min-width: 320px;
    padding: 14px 26px;
    font-size: 1rem;
    box-shadow: 0 12px 28px rgba(13, 18, 32, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-cta-main:hover {
    transform: translateY(-1px);
}

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

    .about-content,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100svh - 78px);
        padding: 96px 0 46px;
    }

    .hero-content {
        width: min(940px, 94%);
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.12;
        margin-bottom: 0.7rem;
        word-break: break-word;
    }

    .hamburger {
        display: flex;
    }

    .brand-logos {
        gap: 8px;
    }

    .logo {
        max-height: 42px;
    }

    .logo-partner {
        max-height: 28px;
    }

    .header-lang-hint {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        padding: 1rem;
        background: #fff;
        box-shadow: var(--shadow);
        flex-direction: column;
        gap: 0.4rem;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.72rem 0.9rem;
        border: 1px solid #e6edf7;
        border-radius: 12px;
    }

    .lang-menu {
        width: 100%;
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
    }

    .lang-dropdown {
        position: static;
        width: 100%;
        margin-top: 0.35rem;
        box-shadow: none;
    }

    .nav-links.active {
        display: flex;
    }

    nav.container {
        position: relative;
    }

    .floating-buttons {
        flex-direction: column;
    }

    .reservation-contact .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-direct-person {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-direct-photo-frame {
        width: 198px;
        height: 198px;
        flex-basis: 198px;
    }

    .contact-direct-photo {
        object-position: center 0%;
        transform: scale(1.44) translateY(-22px);
    }

    .contact-direct-person p {
        text-align: center;
        font-size: 1rem;
    }

    .proof-cta {
        flex-direction: column;
    }

    .proof-cta .btn {
        width: 100%;
        min-width: 0;
    }

    .btn-cta-main {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.85rem, 8.8vw, 2.4rem);
        line-height: 1.1;
    }

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

    .feature-card {
        padding: 1rem;
    }
}

/* === Owner prelaunch revamp (GEA/Jantarowa) === */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.proof-card {
    border-radius: 16px;
    padding: 1.15rem;
    border: 1px solid #dbe3f1;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.proof-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.55rem;
}

.proof-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.18rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.08);
}

.proof-score {
    font-weight: 800;
    font-size: 0.95rem;
}

.proof-card h3 {
    margin-bottom: 0.4rem;
}

.proof-meta {
    margin-top: 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.9;
}

.proof-card--indu {
    background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 70%);
    border-color: #b8d7ff;
}

.proof-card--indu .proof-score,
.proof-card--indu .proof-meta { color: #0047ab; }

.proof-card--sunday {
    background: linear-gradient(160deg, #fff8ec 0%, #ffffff 70%);
    border-color: #f3d9a5;
}

.proof-card--sunday .proof-score,
.proof-card--sunday .proof-meta { color: #9a6100; }

.proof-card--owner {
    background: linear-gradient(160deg, #eefdf3 0%, #ffffff 70%);
    border-color: #bdeecf;
}

.proof-card--owner .proof-score,
.proof-card--owner .proof-meta { color: #147a3f; }

.process-section .process-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
}

.process-step {
    position: relative;
    border: 1px solid #b8d7ff;
    border-radius: 16px;
    background: linear-gradient(165deg, #f1f7ff 0%, #ffffff 100%);
    padding: 0.95rem 0.85rem;
    min-height: 190px;
}

.process-step:not(:last-child)::after {
    content: "\2192";
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%) translateX(50%);
    color: #1a5fa8;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(26, 95, 168, 0.25);
}

.process-step:nth-child(4)::after {
    content: "\2193";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1.25rem;
    transform: translateX(-50%) translateY(50%);
}

/* Desktop: drugi rząd (5-8) od prawej do lewej */
.process-step--5 { grid-column: 4; grid-row: 2; }
.process-step--6 { grid-column: 3; grid-row: 2; }
.process-step--7 { grid-column: 2; grid-row: 2; }
.process-step--8 { grid-column: 1; grid-row: 2; }

.process-step--5::after,
.process-step--6::after,
.process-step--7::after {
    content: "\2190";
    position: absolute;
    left: -1.25rem;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) translateX(-50%);
    color: #1a5fa8;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(26, 95, 168, 0.25);
}

.process-step--8::after {
    content: none;
}

.process-step h3 {
    margin-top: 0.35rem;
    font-size: 0.98rem;
    color: #15447a;
}

.process-step p {
    margin-top: 0.35rem;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #2f4e72;
}

.process-step .feature-icon {
    color: #2f6fb8;
    background: #e8f2ff;
}

.process-step--8 {
    border-color: #8ad3a8;
    background: linear-gradient(165deg, #e9f9ef 0%, #ffffff 100%);
}

.process-step--8 h3 {
    color: #1f7a42;
}

.process-step--8 p {
    color: #2f6b45;
}

.process-step--8 .feature-icon {
    color: #1f8f4d;
    background: #dff6e8;
}

.faq-accordion {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 0.7rem;
}

.faq-item {
    border: 1px solid #d8e1ef;
    border-radius: 14px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.95rem 1rem;
    font-weight: 700;
    color: #0f172a;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
    transition: transform 0.2s ease;
    color: #4b5563;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 1rem 1rem;
    color: #334155;
    font-size: 0.94rem;
}

.reviews--launch .launch-progress-card {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #dbe5f4;
    border-radius: 16px;
    background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    padding: 1.15rem;
}

.launch-progress-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
}

.launch-progress-head p {
    margin-top: 0.2rem;
    color: #475569;
    font-size: 0.9rem;
}

.launch-progress-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.launch-progress-bar {
    margin-top: 0.85rem;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.launch-progress-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #f59e0b 0%, #f97316 45%, #ef4444 100%);
}

.launch-lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.launch-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.launch-section-title--done {
    color: #16a34a;
}

.launch-section-title--progress {
    color: #d97706;
}

.launch-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.launch-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.45;
}

.launch-checklist li i {
    margin-top: 0.15em;
    flex-shrink: 0;
    font-size: 1rem;
}

.launch-checklist--done li {
    color: #1e293b;
    font-weight: 600;
}

.launch-checklist--done li i {
    color: #16a34a;
}

.launch-checklist--todo li {
    color: #64748b;
    font-weight: 500;
}

.launch-checklist--todo li i {
    color: #94a3b8;
}

.launch-section-note {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: #475569;
    font-style: italic;
    line-height: 1.5;
}

.launch-note {
    margin-top: 1.1rem;
    padding-top: 0.9rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.88rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.launch-note i { color: #f97316; }

@media (max-width: 700px) {
    .launch-lists-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
}

@media (max-width: 1100px) {
    .process-step--5,
    .process-step--6,
    .process-step--7,
    .process-step--8 {
        grid-column: auto;
        grid-row: auto;
    }

    .process-section .process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

    .process-step:not(:last-child)::after {
        content: "\2193";
        right: auto;
        left: 50%;
        top: auto;
        bottom: -1.4rem;
        transform: translateX(-50%);
        color: #1a5fa8;
        font-size: 3rem;
        font-weight: 900;
        line-height: 1;
        text-shadow: 0 2px 8px rgba(26, 95, 168, 0.25);
    }
}

@media (max-width: 820px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .process-section .process-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        min-height: auto;
    }

    .amenities-icons-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}


/* === Team highlight module === */
.team-highlight {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.team-highlight-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.2rem;
    align-items: center;
    padding: 0;
}

.team-highlight-photo img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.team-highlight-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.55rem;
}

.team-highlight-content p {
    color: #334155;
    margin-bottom: 0.9rem;
}

.team-highlight-content .company-facts {
    margin: 0.9rem 0 1rem;
    padding: 0.9rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.team-highlight-content .company-facts p {
    margin: 0.3rem 0;
}

.team-highlight-content .company-name {
    color: #0f172a;
    line-height: 1.4;
}

.team-highlight-content .company-meta,
.team-highlight-content .company-address {
    font-size: 0.95rem;
    color: #334155;
}

.team-highlight-content .company-link a {
    font-weight: 700;
}

@media (max-width: 900px) {
    .team-highlight-card {
        grid-template-columns: 1fr;
    }

    .team-highlight-photo img {
        min-height: 200px;
    }
}


/* === Direct contact module === */
.reservation--contact .contact-card {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #d0e4f7;
    border-radius: 21px;
    background: #ffffff;
    padding: 2.35rem 2.65rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
}

.contact-card-sig {
    display: flex;
    align-items: center;
    gap: 2.35rem;
}

.contact-card-photo-wrap {
    flex-shrink: 0;
    width: 233px;
    height: 233px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.14);
}

.contact-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    display: block;
}

.contact-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.contact-card-name {
    margin: 0;
    font-size: 1.57rem;
    font-weight: 700;
    color: #0f294d;
    line-height: 1.2;
}

.contact-card-role {
    margin: 0.27rem 0 0;
    font-size: 1.17rem;
    color: #2f6fb8;
    font-weight: 600;
}

.contact-card-company {
    margin: 0.06rem 0 0;
    font-size: 1.06rem;
    color: #64748b;
    font-weight: 400;
}

.contact-card-rule {
    height: 1px;
    background: #e2eaf5;
    margin: 1rem 0;
}

.contact-card-link {
    font-size: 1.19rem;
    color: #1a5fa8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.59rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    transition: color 0.15s;
}

.contact-card-link:last-of-type {
    margin-bottom: 0;
}

.contact-card-link:hover {
    color: #0d3d73;
    text-decoration: underline;
}

.contact-card-link i {
    font-size: 1.06rem;
    color: #1a5fa8;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-card-caption {
    margin: 1.65rem 0 0;
    padding-top: 1.32rem;
    border-top: 1px solid #e8eef7;
    font-size: 1.14rem;
    color: #2c4668;
    line-height: 1.65;
}

.contact-card-caption strong {
    color: #0f294d;
}

@media (max-width: 640px) {
    .reservation--contact .contact-card {
        padding: 1.25rem 1rem;
        border-radius: 14px;
    }

    .contact-card-sig {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-card-photo-wrap {
        width: 140px;
        height: 140px;
    }

    .contact-card-info {
        width: 100%;
        text-align: left;
    }

    .contact-card-name {
        font-size: 1.1rem;
    }

    .contact-card-role {
        font-size: 0.92rem;
    }

    .contact-card-company {
        font-size: 0.85rem;
    }

    .contact-card-link {
        font-size: 0.95rem;
    }

    .contact-card-caption {
        font-size: 0.88rem;
        margin-top: 1rem;
        padding-top: 0.9rem;
    }
}
