@font-face {
    font-family: 'VWHeadBold';
    src: url('../resources/VW-Head-Fonts/VWHeadBold.otf');
}

@font-face {
    font-family: 'VWHeadRegular';
    src: url('../resources/VW-Head-Fonts/VWHeadRegular.otf');
}

@font-face {
    font-family: 'VWTextBold';
    src: url('../resources/VW-Head-Fonts/VWTextBold.otf');
}

@font-face {
    font-family: 'VWTextLight';
    src: url('../resources/VW-Head-Fonts/VWTextLight.ttf');
}

@font-face {
    font-family: 'VWTextRegular';
    src: url('../resources/VW-Head-Fonts/VWTextRegular.otf');
}

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

body {
    font-family: 'VWTextRegular', Arial, sans-serif;
    background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 45%, #eef3f7 100%);
    color: #0f1c2d;
}

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

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem clamp(1.5rem, 4vw, 4rem) 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: clamp(120px, 18vw, 160px);
}

.brand-tagline {
    font-family: 'VWTextLight', sans-serif;
    font-size: 0.95rem;
    max-width: 16rem;
    color: rgba(15, 28, 45, 0.7);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-picker {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(15, 28, 45, 0.65);
}

.language-picker label {
    font-family: 'VWTextBold', sans-serif;
}

.language-picker select {
    border: 1px solid rgba(15, 28, 45, 0.2);
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
    font-family: 'VWTextRegular', sans-serif;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    color: #0f1c2d;
}

.persona-tabs {
    display: inline-flex;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 999px;
    background: rgba(15, 28, 45, 0.08);
}

.persona-tab {
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-family: 'VWTextBold', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    color: rgba(15, 28, 45, 0.65);
    background: transparent;
    transition: all 0.2s ease;
}

.persona-tab:hover,
.persona-tab:focus-visible {
    color: #0f1c2d;
}

.persona-tab.is-active {
    background: #0f1c2d;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 28, 45, 0.18);
}

.content {
    flex: 1;
    padding: 0 clamp(1.5rem, 4vw, 4rem) 4rem;
}

.persona-section {
    display: none;
    animation: fade-in 0.4s ease;
}

.persona-section.is-active {
    display: block;
}

.hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: 2rem 0 4rem;
}

.hero-content h1 {
    font-family: 'VWHeadBold', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-content .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(15, 28, 45, 0.75);
    max-width: 32rem;
}

.hero-content .eyebrow {
    font-family: 'VWTextBold', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: #3775ff;
    margin-bottom: 0.75rem;
}

.cta-buttons {
    margin: 2rem 0 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta {
    font-family: 'VWTextBold', sans-serif;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta.primary {
    background: #0f1c2d;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 28, 45, 0.2);
}

.cta.secondary {
    background: rgba(15, 28, 45, 0.08);
    color: #0f1c2d;
}

.cta:hover,
.cta:focus-visible {
    transform: translateY(-2px);
}

.app-download {
    margin-top: 2rem;
}

.download-label {
    font-family: 'VWTextBold', sans-serif;
    font-size: 0.9rem;
    color: rgba(15, 28, 45, 0.7);
    margin-bottom: 0.75rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #ffffff;
    padding: 0;
    box-shadow: 0 12px 30px rgba(15, 28, 45, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-button img {
    width: 160px;
    height: auto;
    display: block;
}

.store-button:hover,
.store-button:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 28, 45, 0.18);
}

.hero-media {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2rem;
    box-shadow: 0 30px 70px rgba(15, 28, 45, 0.12);
}

.hero-screenshot {
    display: flex;
    justify-content: center;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.hero-screenshot img {
    width: min(100%, 300px);
    border-radius: 2rem;
    box-shadow: 0 30px 70px rgba(15, 28, 45, 0.12);
    border: 1px solid rgba(15, 28, 45, 0.08);
    margin: 0 auto;
}

#traveler-section .column-media img {
    width: min(100%, 300px);
    margin-left: auto;
    margin-right: auto;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: clamp(0.75rem, 2vw, 1.25rem);
    border-radius: 1.5rem;
    border: 1px solid rgba(55, 117, 255, 0.15);
    pointer-events: none;
}

.hero-media--owner {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.hero-media--owner::after {
    display: none;
}

.screenshot-stack {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    box-shadow: 0 28px 60px rgba(15, 28, 45, 0.12);
    gap: 0;
    width: min(100%, 480px);
    margin-inline: auto;
}

.screenshot-stack--compact {
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 1.75rem;
}

.screenshot-stack--compact .screenshot-stack__item--secondary {
    top: 6%;
    right: -10%;
}

.screenshot-stack--compact .screenshot-stack__item--tertiary {
    bottom: 8%;
    left: -8%;
}

.screenshot-stack__item {
    border-radius: 1.25rem;
    box-shadow: 0 18px 45px rgba(15, 28, 45, 0.15);
    border: 1px solid rgba(15, 28, 45, 0.06);
}

.screenshot-stack__item--primary {
    width: min(100%, 420px);
}

#traveler-section .screenshot-stack__item--primary {
    width: min(100%, 500px);
}

.screenshot-stack__item--secondary,
.screenshot-stack__item--tertiary {
    position: absolute;
    width: clamp(140px, 12vw, 200px);
    opacity: 0.95;
}

.screenshot-stack__item--secondary {
    top: 8%;
    right: -12%;
    transform: rotate(5deg);
}

.screenshot-stack__item--tertiary {
    bottom: 6%;
    left: -10%;
    transform: rotate(-4deg);
}

.hero-media--owner .screenshot-stack__item--secondary,
.hero-media--owner .screenshot-stack__item--tertiary {
    position: absolute;
}

.hero-media--owner .screenshot-stack {
    width: min(90vw, 540px);
}

.screenshot-caption {
    margin-top: clamp(1rem, 2vw, 1.5rem);
    font-size: 0.9rem;
    color: rgba(15, 28, 45, 0.6);
    text-align: center;
    padding-left: 10px;
}

.owner-workflow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

.owner-workflow__intro .step-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.85rem;
    padding-left: 1.25rem;
    color: rgba(15, 28, 45, 0.75);
}

.owner-workflow__gallery {
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin: 0 -0.25rem;
    scrollbar-width: thin;
}

.owner-workflow__gallery::-webkit-scrollbar {
    height: 8px;
}

.owner-workflow__gallery::-webkit-scrollbar-thumb {
    background: rgba(15, 28, 45, 0.15);
    border-radius: 999px;
}

.screenshot-gallery {
    list-style: none;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    padding: 0 clamp(0.25rem, 2vw, 0.75rem);
    margin: 0;
    scroll-snap-type: x mandatory;
}

.screenshot-gallery__item {
    scroll-snap-align: start;
}

.screenshot-gallery figure {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 1.5rem;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    box-shadow: 0 20px 45px rgba(15, 28, 45, 0.12);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screenshot-gallery img {
    border-radius: 1rem;
    border: 1px solid rgba(15, 28, 45, 0.08);
}

.screenshot-gallery figcaption {
    font-size: 0.9rem;
    color: rgba(15, 28, 45, 0.7);
    line-height: 1.4;
}

.feature-section {
    padding: 3.5rem 0;
}

.feature-section h2 {
    font-family: 'VWHeadRegular', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(15, 28, 45, 0.08);
}

.feature-card h3 {
    font-family: 'VWHeadRegular', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(15, 28, 45, 0.7);
    line-height: 1.6;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.premium-section .eyebrow {
    margin-bottom: 0.75rem;
}

.premium-section .lead {
    margin-bottom: 1.5rem;
}

.premium-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.75rem 0 2.5rem;
    color: rgba(15, 28, 45, 0.85);
}

.premium-list strong {
    font-family: 'VWTextBold', sans-serif;
}

.two-column.reverse {
    direction: rtl;
    text-align: left;
}

.two-column.reverse > * {
    direction: ltr;
}

.plan-comparison {
    margin: clamp(3rem, 8vw, 5rem) 0;
    padding: clamp(2rem, 6vw, 3.5rem);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 2rem;
    box-shadow: 0 30px 70px rgba(15, 28, 45, 0.12);
}

.plan-carousel-section {
    padding: 3.5rem 0;
}

.plan-carousel-header {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2.5rem;
}

.plan-carousel-header h2 {
    font-family: 'VWHeadRegular', sans-serif;
    font-size: clamp(1.9rem, 3.3vw, 2.7rem);
    margin-bottom: 0.9rem;
}

.plan-carousel-header p {
    color: rgba(15, 28, 45, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}

.plan-carousel {
    position: relative;
}

.plan-carousel__track {
    display: flex;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x proximity;
}

.plan-carousel__track::-webkit-scrollbar {
    height: 8px;
}

.plan-carousel__track::-webkit-scrollbar-thumb {
    background: rgba(15, 28, 45, 0.2);
    border-radius: 999px;
}

.plan-carousel__track::-webkit-scrollbar-track {
    background: transparent;
}

.plan-carousel .plan-card {
    min-width: min(320px, 85vw);
    scroll-snap-align: start;
}

.plan-comparison__intro {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto clamp(2.5rem, 6vw, 3.5rem);
}

.plan-comparison__intro h2 {
    font-family: 'VWHeadRegular', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.plan-comparison__intro p {
    color: rgba(15, 28, 45, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.plan-grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-card {
    background: rgba(248, 250, 253, 0.88);
    border-radius: 1.75rem;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: relative;
    box-shadow: 0 20px 45px rgba(15, 28, 45, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover,
.plan-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 28, 45, 0.12);
}

.plan-card--highlight {
    background: linear-gradient(180deg, rgba(55, 117, 255, 0.14) 0%, rgba(255, 255, 255, 0.92) 70%);
    box-shadow: 0 30px 70px rgba(55, 117, 255, 0.28);
    border: 1px solid rgba(55, 117, 255, 0.35);
}

.plan-header {
    display: grid;
    gap: 0.5rem;
}

.plan-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-family: 'VWTextBold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3775ff;
    background: rgba(55, 117, 255, 0.16);
    border-radius: 999px;
    width: fit-content;
}

.plan-card--highlight .plan-pill {
    background: #0f1c2d;
    color: #ffffff;
}

.plan-card--premium {
    background: linear-gradient(180deg, rgba(55, 117, 255, 0.16) 0%, rgba(255, 255, 255, 0.95) 75%);
    border: 1px solid rgba(55, 117, 255, 0.25);
    box-shadow: 0 32px 70px rgba(55, 117, 255, 0.18);
}

.plan-card__description {
    color: rgba(15, 28, 45, 0.75);
    line-height: 1.6;
    font-size: 0.98rem;
}

.plan-card__features {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    color: rgba(15, 28, 45, 0.85);
    font-size: 0.98rem;
    line-height: 1.55;
}

.plan-card__features strong {
    font-family: 'VWTextBold', sans-serif;
}

.plan-card__features li {
    background: rgba(255, 255, 255, 0.7);
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(15, 28, 45, 0.08);
}

.plan-header h3 {
    font-family: 'VWHeadRegular', sans-serif;
    font-size: 1.65rem;
}

.plan-price {
    font-family: 'VWHeadBold', sans-serif;
    font-size: 1.4rem;
}

.plan-price-note {
    font-size: 0.9rem;
    color: rgba(15, 28, 45, 0.65);
}

.plan-body {
    display: grid;
    gap: 1.75rem;
}

.plan-group-title {
    font-family: 'VWTextBold', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(15, 28, 45, 0.6);
    margin-bottom: 1rem;
}

.plan-feature-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(15, 28, 45, 0.85);
}

.feature-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 0;
}

.feature-icon svg {
    width: 1rem;
    height: 1rem;
}

.plan-feature.is-included .feature-icon {
    background: rgba(24, 175, 116, 0.2);
    color: #158255;
}

.plan-feature.is-limited .feature-icon {
    background: rgba(255, 171, 28, 0.18);
    color: #c67500;
}

.plan-feature.is-locked .feature-icon {
    background: rgba(15, 28, 45, 0.08);
    color: rgba(15, 28, 45, 0.6);
}

.feature-content {
    display: grid;
    gap: 0.25rem;
}

.feature-note {
    font-size: 0.85rem;
    color: rgba(15, 28, 45, 0.6);
}

.plan-footer {
    margin-top: auto;
}

.plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-family: 'VWTextBold', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    background: rgba(15, 28, 45, 0.08);
    color: #0f1c2d;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.plan-cta:hover,
.plan-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 28, 45, 0.16);
}

.plan-cta--primary {
    background: #0f1c2d;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 28, 45, 0.22);
}

.plan-card--highlight .plan-cta {
    background: rgba(15, 28, 45, 0.1);
}

.plan-card--highlight .plan-cta--primary {
    background: #3775ff;
    box-shadow: 0 18px 40px rgba(55, 117, 255, 0.3);
}

.plan-card--highlight .plan-cta--primary:hover,
.plan-card--highlight .plan-cta--primary:focus-visible {
    background: #285fe0;
}

.column-text ul,
.column-text ol {
    color: rgba(15, 28, 45, 0.75);
    line-height: 1.7;
    font-size: 1rem;
}

.highlight-list {
    display: grid;
    gap: 0.9rem;
    list-style: none;
}

.highlight-list li strong,
.step-list li strong {
    font-family: 'VWTextBold', sans-serif;
    color: #0f1c2d;
}

.step-list {
    display: grid;
    gap: 1rem;
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}

.step-list li {
    position: relative;
    padding-left: 2.5rem;
}

.step-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #3775ff;
    color: white;
    display: grid;
    place-items: center;
    font-family: 'VWTextBold', sans-serif;
    box-shadow: 0 12px 30px rgba(55, 117, 255, 0.25);
}

.cta-banner {
    margin: 4rem 0;
    padding: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    background: radial-gradient(circle at top left, rgba(55, 117, 255, 0.16), transparent 55%),
        rgba(255, 255, 255, 0.94);
    border-radius: 2rem;
    box-shadow: 0 25px 60px rgba(15, 28, 45, 0.12);
}

.cta-banner h2 {
    font-family: 'VWHeadRegular', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(15, 28, 45, 0.75);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-banner .store-buttons {
    justify-content: center;
}

.footer {
    padding: 2rem clamp(1.5rem, 4vw, 4rem);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(15, 28, 45, 0.55);
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .brand-tagline {
        max-width: 100%;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .language-picker {
        width: 100%;
    }

    .language-picker select {
        width: 100%;
    }

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

    .hero-media {
        order: -1;
    }

    .hero-media--owner {
        display: flex;
        justify-content: center;
    }

    .owner-workflow {
        grid-template-columns: 1fr;
    }

    .two-column,
    .two-column.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .hero-media::after {
        inset: clamp(0.5rem, 4vw, 1rem);
    }

    .plan-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 900px) {
    .plan-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.75rem;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .plan-card {
        flex: 0 0 auto;
        min-width: min(320px, 80vw);
        scroll-snap-align: start;
    }
}

@media (max-width: 640px) {
    .header {
        padding-top: 2rem;
    }

    .content {
        padding: 0 1.25rem 3.5rem;
    }

    .persona-tabs {
        width: 100%;
        justify-content: space-between;
    }

    .persona-tab {
        flex: 1;
        text-align: center;
    }

    .feature-card,
    .cta-banner {
        padding: 1.75rem;
    }

    .step-list li::before {
        top: 0.2rem;
    }

    .plan-comparison {
        padding: 1.75rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .store-button img {
        width: 140px;
    }

    .screenshot-stack {
        padding: 1rem;
    }

    .screenshot-stack__item--secondary {
        right: -4%;
    }

    .screenshot-stack__item--tertiary {
        left: -4%;
    }

    .owner-workflow__gallery {
        margin: 0;
    }

    .screenshot-gallery {
        grid-auto-columns: minmax(180px, 75vw);
    }
}
