/* VOYLI ONE – PRAGUE LUGGAGE TRANSFER SERVICE */

:root {
    --voyli-purple: #7a3cff;
    --voyli-pink: #ff4dc8;
    --voyli-dark: #111111;
    --voyli-light: #f8f5ff;
    --voyli-grey: #f3f3f7;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #222222;
    line-height: 1.6;
}

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

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HERO */

.hero {
    position: relative;
    background: linear-gradient(135deg, #d1aada 0%, #7a3cff 40%, #111111 100%);
    color: #ffffff;
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,77,200,0.35), transparent 55%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 880px) {
    .hero-inner {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
    }
}

.hero-text {
    color: #ffffff;
}

.hero-text h1 {
    font-size: 2.4rem;
    line-height: 1.12;
    margin: 0 0 1rem;
}

@media (min-width: 880px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
}

.subtitle {
    font-size: 1.02rem;
    max-width: 34rem;
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.88);
}

.trust-text {
    font-size: 0.85rem;
    max-width: 30rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image-wrapper {
    justify-self: center;
    max-width: 420px;
}

.hero-image {
    border-radius: 1.8rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.12s ease-out,
        box-shadow 0.12s ease-out,
        background 0.12s ease-out,
        color 0.12s ease-out,
        border-color 0.12s ease-out;
    white-space: nowrap;
}

.btn-primary {
    background: #ffffff;
    color: var(--voyli-dark);
    box-shadow: 0 12px 26px rgba(0,0,0,0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.35);
}

.btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.7);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
}

.btn-secondary {
    background: var(--voyli-purple);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.btn-secondary:hover {
    filter: brightness(1.06);
}

/* SECTIONS */

.section {
    padding: 3.5rem 0;
}

.section:nth-of-type(odd) {
    background: #ffffff;
}

.section:nth-of-type(even) {
    background: var(--voyli-light);
}

.section h2 {
    font-size: 1.9rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* LISTS */

.checklist {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.2rem;
}

.checklist li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.5rem;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--voyli-purple);
    font-weight: 700;
}

.bullets {
    list-style: none;
    padding-left: 0;
    margin: 0 0 0.7rem;
}

.bullets li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.35rem;
}

.bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--voyli-purple);
    font-weight: 700;
}

/* LAYOUT */

.two-column {
    display: grid;
    gap: 2rem;
}

@media (min-width: 880px) {
    .two-column {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
        align-items: flex-start;
    }
}

/* STEPS */

.steps-grid {
    display: grid;
    gap: 1.6rem;
    margin-top: 1.4rem;
}

@media (min-width: 880px) {
    .steps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.step-card {
    position: relative;
    background: #ffffff;
    border-radius: 1.6rem;
    padding: 1.6rem 1.5rem 1.4rem;
    border: 1px solid #e3e3f0;
    box-shadow: 0 14px 32px rgba(0,0,0,0.06);
}

.step-card h3 {
    margin-top: 0.4rem;
    margin-bottom: 0.55rem;
    font-size: 1.1rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--voyli-purple), var(--voyli-pink));
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
}

/* CTA BANNER */

.cta-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.6rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #111111, #7a3cff);
    color: #ffffff;
    margin-top: 2.2rem;
}

.cta-banner h3 {
    margin: 0 0 0.4rem;
}

.cta-banner p {
    margin: 0;
    max-width: 32rem;
}

/* BENEFITS GRID */

.benefits-grid,
.variants-grid {
    display: grid;
    gap: 1.6rem;
    margin-top: 1.3rem;
}

@media (min-width: 880px) {
    .benefits-grid,
    .variants-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.benefit-card,
.variant-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem 1.5rem;
    border: 1px solid #e3e3f0;
    box-shadow: 0 14px 32px rgba(0,0,0,0.06);
}

.benefit-card h3,
.variant-card h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

/* CARDS */

.info-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 16px 36px rgba(0,0,0,0.07);
    border: 1px solid #ece7ff;
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 0.9rem;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 0.7rem;
}

.info-card li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.4rem;
}

.info-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--voyli-purple);
    font-weight: 700;
}

.info-note {
    font-size: 0.9rem;
    margin-top: 0.6rem;
    color: #555;
}

.inline-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--voyli-purple);
}

.inline-link:hover {
    text-decoration: underline;
}

/* FAQ */

.section-faq {
    background: var(--voyli-light);
}

.faq-item {
    background: #ffffff;
    border-radius: 1.4rem;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
    border: 1px solid #e3ddff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.faq-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.faq-cta p {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* CROSS-LINKS */

.section-crosslinks {
    background: #ffffff;
    padding: 3rem 0 2.5rem;
}

.crosslinks-heading {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1.2rem;
}

.crosslinks-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 800px) {
    .crosslinks-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.crosslink-card {
    border-radius: 1.3rem;
    padding: 1.1rem 1.2rem;
    background: #f7f4ff;
    border: 1px solid #e4ddff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.04);
}

.crosslink-card a {
    text-decoration: none;
    color: var(--voyli-dark);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.3rem;
}

.crosslink-card a:hover {
    color: var(--voyli-purple);
}

.crosslink-card p {
    margin: 0;
    font-size: 0.9rem;
}

/* FOOTER */

.site-footer {
    border-top: 1px solid #ececec;
    background: #ffffff;
    padding: 1.1rem 0;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
}

/* MOBILE */

@media (max-width: 599px) {
    .hero {
        padding-top: 3.4rem;
        padding-bottom: 2.6rem;
    }

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

    .btn {
        width: 100%;
    }

    .steps-grid,
    .benefits-grid,
    .variants-grid {
        grid-template-columns: 1fr;
    }
}
