/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

:root {
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #64748b;
    --bg-paper: #f7f8fb;
    --bg-surface: #ffffff;
    --bg-hero: #06141f;
    --accent: #ff7a1a;
    --accent-soft: rgba(255, 122, 26, 0.14);
    --border: #e2e8f0;
    --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 20px 50px rgba(15, 23, 42, 0.08);
    --radius: 0.5rem;
    --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: #ffffff;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.section-label--light {
    color: #f7f7f8;
}

.section-title {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

p {
    color: var(--text-secondary);
}

/* ============================================
   BUTTONS
   ============================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background-color: var(--accent);
    color: #ffffff;
    border: 1px solid transparent;
}

.button--primary:hover {
    background-color: #ff8f3a;
}

.button--outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.button--outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.button--cta-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid #cbd5e1;
}

.button--cta-outline:hover {
    background: #f1f5f9;
}

/* ============================================
   HEADER & HERO
   ============================================ */

.site-header {
    position: relative;
    background: #06141f;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1.5rem 0;
    background: transparent;
}

.hero {
    background-image: url('../assets/Group 1410127328.png');
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 20, 31, 0.7) 0%, rgba(6, 20, 31, 0.35) 50%, rgba(6, 20, 31, 0) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 8rem 0 5rem;
    width: 100%;
}

.hero__copy {
    max-width: 640px;
    margin-left: clamp(1rem, 6vw, 6rem);
    color: #ffffff;
    display: grid;
    gap: 1.5rem;
}


.navbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar__brand {
    display: inline-flex;
    align-items: center;
}

.navbar__logo {
    height: 56px;
    width: auto;
}

.navbar__links,
.navbar__menu {
    display: flex;
    gap: 2.25rem;
    align-items: center;
    flex-wrap: nowrap;
}

.navbar__menu {
    flex: 1;
    justify-content: center;
}

.navbar__link,
.navbar__demo {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

.navbar__link {
    opacity: 0.95;
    transition: opacity 200ms ease;
}

.navbar__link:hover {
    opacity: 1;
}

.navbar__demo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 0;
}

.navbar__demo-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-grid;
    place-items: center;
    background: transparent;
}

.navbar__demo-icon img {
    width: 100%;
    height: 100%;
}

.navbar__demo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}

.modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 17, 34, 0.75);
}

.modal__panel {
    position: relative;
    width: min(100%, 960px);
    max-height: min(100%, 90vh);
    margin: 0 auto;
    background: #0d1626;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    z-index: 1;
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.modal__title {
    margin: 0;
    font-size: 1.3rem;
    color: #ffffff;
    text-align: center;
}

.modal__video {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.modal__video video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 72vh;
    background: #000;
}

.navbar__login {
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 500;
}

/* Hidden by default — only shown inside the mobile dropdown */
.navbar__menu-signup {
    display: none;
}

/* Hidden by default — only shown in the mobile full-screen menu */
.navbar__menu-close {
    display: none;
}

.navbar__signup {
    min-width: 110px;
    background: var(--accent);
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(255, 122, 26, 0.25);
}

.navbar__signup:hover {
    background: #ff8f3a;
}

.navbar__toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    gap: 0.45rem;
    flex-direction: column;
}

.navbar__toggle span {
    width: 1.45rem;
    height: 3px;
    background: #ffffff;
    border-radius: 999px;
}

.hero__title {
    font-size: clamp(2.5rem, 4.8vw, 4rem);
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-weight: 800;
    max-width: 14ch;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.94);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}


.hero__subtitle strong {
    font-weight: 700;
    color: #ffffff;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.5rem;
}

.hero__actions .button {
    min-width: 240px;
}

.hero__note {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust {
    padding: 6rem 0 5rem;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.trust__content {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 1rem 1rem;
}

.trust__content::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 240px;
    background: url('../assets/logo.svg') no-repeat center/contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.trust__text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}


.trust__text strong {
    color: var(--accent);
    font-weight: 700;
}

.trust__watermark {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(15, 23, 42, 0.06);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.32em;
    pointer-events: none;
    text-transform: uppercase;
    z-index: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: 5rem 0 6rem;
    background-color: #f7f8fb;
}


.how-it-works .section-label {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    position: relative;
}

.step-card {
    background-color: transparent;
    padding: 1.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 122, 26, 0.45);
    transition: transform 180ms ease;
}

.step-card:last-child {
    border-right: none;
}

.step-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #ffffff;
    display: grid;
    place-items: center;
    margin: 0 auto 1.75rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 122, 26, 0.2);
}

.step-card__icon img {
    width: 32px;
    height: 32px;
}


.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits {
    padding: 0;
    background-color: #ffffff;
}

.benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
}

.benefits__panel {
    position: relative;
    background: #0c1a2b;
    background-image: linear-gradient(135deg, #0c1a2b 0%, #0f2238 60%, #1a3050 100%);
    padding: 5rem 5rem 5rem 8%;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits__panel::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 174, 100, 0.15), transparent 70%);
    pointer-events: none;
}

.benefits__panel > * {
    position: relative;
    z-index: 1;
}

.benefits__title {
    margin-bottom: 2rem;
    color: var(--accent);
    font-size: clamp(1.75rem, 2.4vw, 2.4rem);
    line-height: 1.15;
    font-weight: 700;
    max-width: 520px;
}

.benefits__list {
    list-style: none;
    display: grid;
    gap: 1.25rem;
    max-width: 540px;
}

.benefits__list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #e2e8f0;
    line-height: 1.55;
    font-size: 0.95rem;
}

.benefits__list li::before {
    content: '';
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1.5px solid var(--accent);
    background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center/16px;
    margin-top: 0.1rem;
    box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.18), 0 0 14px 2px rgba(255, 122, 26, 0.45);
}


.benefits__image {
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.benefits__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    box-shadow: none;
    border-radius: 0;
    display: block;
    position: absolute;
    inset: 0;
}

/* When stacked (single column), revert to normal flow so image has natural height */
@media (max-width: 1024px) {
    .benefits__image {
        min-height: 280px;
    }

    .benefits__image img {
        position: relative;
        inset: auto;
        height: 280px;
    }
}


/* ============================================
   TRAVELER SECTION
   ============================================ */

.traveler {
    padding: 0;
    background-color: #06141f;
}

.traveler__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
}

.traveler__image {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.traveler__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: none;
}

/* When stacked, revert to normal flow */
@media (max-width: 1024px) {
    .traveler__image {
        min-height: 280px;
    }

    .traveler__image img {
        height: 280px;
        object-fit: cover;
    }
}

.traveler__content {
    background: #06141f;
    background-image: url('../assets/image\ 2.png'), linear-gradient(135deg, #06141f 0%, #0c1a2b 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    padding: 5rem 8% 5rem 5rem;
    color: #f8fafc;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.traveler__content > * {
    position: relative;
    z-index: 1;
}

.traveler__title {
    color: var(--accent);
    font-size: clamp(1.75rem, 2.4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.15;
}

.traveler__list {
    list-style: none;
    display: grid;
    gap: 1.25rem;
    max-width: 540px;
}

.traveler__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    align-items: center;
    color: #e2e8f0;
    line-height: 1.55;
    font-size: 0.95rem;
}

.traveler__list li img {
    width: 140px;
    height: 140px;
    margin: -2.5rem -2rem -2.5rem -2.5rem;
    flex-shrink: 0;
}





/* ============================================
   POWERED BY
   ============================================ */

.powered {
    padding: 5rem 0;
    background-color: #ffffff;
}

.powered__content {
    text-align: center;
}

.powered__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.powered__logos {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
}

.powered__logos::before {
    content: '';
    grid-column: 2;
    width: 1px;
    background: var(--accent);
    margin: 1.5rem 0;
    justify-self: center;
}

.powered__logo {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: grid;
    place-items: center;
    min-height: 140px;
}

.powered__logo:nth-child(1) {
    grid-column: 1;
}

.powered__logo:nth-child(2) {
    grid-column: 3;
}

.powered__logo img {
    max-height: 60px;
    width: auto;
}

/* ============================================
   CTA IMAGE
   ============================================ */

.cta-image {
    position: relative;
    overflow: hidden;
}

.cta-image__frame {
    overflow: hidden;
}

.cta-image__frame img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 4rem 0 5rem;
    background-color: #ffffff;
    text-align: center;
}

.cta__title {
    font-size: clamp(1.75rem, 2.6vw, 2.5rem);
    margin: 0 auto 2.5rem;
    max-width: 760px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta__actions .button {
    min-width: 240px;
}

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

.footer {
    background-color: #f7f8fb;
    color: var(--text-primary);
    padding: 4rem 0 1.5rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.footer__brand-col {
    padding-right: 2rem;
    border-right: 1px solid rgba(15, 23, 42, 0.1);
}

.footer__brand {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer__logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.footer__headline {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding-left: 1rem;
    border-left: 1px solid rgba(15, 23, 42, 0.15);
}

.footer__brand-info {
    color: var(--text-primary);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer__brand-info p {
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.footer__brand-info p:first-child {
    font-weight: 500;
}

.footer__brand-info strong {
    font-weight: 700;
}


.footer__dot {
    color: var(--accent);
    margin: 0 0.25rem;
}

.footer__section-title {
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.footer__links-group a {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 200ms ease;
}

.footer__links-group a:hover {
    color: var(--accent);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    color: var(--text-primary);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 1.25rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer__bottom a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0.75rem;
    margin-top: 1.25rem;
    justify-content: start;
}

.social-icons a,
.social-icons span {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: transparent;
    border: 1.5px solid var(--accent);
    display: grid;
    place-items: center;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 200ms ease;
}

.social-icons a:hover {
    background: rgba(255, 122, 26, 0.1);
}

.social-icons img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

/* Top row SVGs (Instagram, Facebook, YouTube) have large built-in padding,
   so scale them up so the glyph visually matches the bottom row icons */
.social-icons img.social-icon--padded {
    width: 30px;
    height: 30px;
}

.social-icons__in {
    text-transform: lowercase;
    font-style: italic;
    font-weight: 700;
    color: var(--text-primary) !important;
}

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

    .step-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 122, 26, 0.3);
        padding-bottom: 1.5rem;
        margin-bottom: 0;
    }

    .step-card:last-child {
        border-bottom: none;
    }

    .benefits__grid,
    .traveler__grid,
    .footer__top {
        grid-template-columns: 1fr;
    }

    .traveler__grid {
        grid-template-areas: "image" "content";
    }

    .traveler__image {
        grid-area: image;
    }

    .traveler__content {
        grid-area: content;
    }

    .benefits__panel,
    .traveler__content {
        padding: 3rem 1.5rem;
    }

    .footer__brand-col {
        border-right: none;
        padding-right: 0;
    }
}
