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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.65;
}

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

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: #475569;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
}

.main-nav a.active,
.main-nav a:hover {
    color: #2563eb;
}

.header-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.section-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.section-badge.soft {
    background: #eff6ff;
    color: #2563eb;
}

.hero-section {
    padding: 72px 0 48px;
    background:
        radial-gradient(circle at top left, rgba(191, 219, 254, 0.65), transparent 30%),
        radial-gradient(circle at top right, rgba(254, 240, 138, 0.30), transparent 22%),
        #f8fafc;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.hero-copy h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.hero-subtext {
    font-size: 21px;
    color: #334155;
    margin-bottom: 16px;
    max-width: 720px;
}

.hero-description {
    color: #64748b;
    font-size: 17px;
    max-width: 700px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-image-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.hero-image-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
}

.story-section,
.benefits-section,
.bonus-section,
.quote-section,
.signup-section,
.tour-list-section,
.tour-cta-section {
    padding: 78px 0;
}

.story-box,
.bonus-box,
.quote-box,
.signup-box,
.tour-cta-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.story-box h2,
.bonus-box h2,
.signup-head h2,
.tour-cta-box h2 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.story-box > p,
.signup-head p,
.tour-cta-box p {
    color: #475569;
    font-size: 17px;
}

.story-lines {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.story-lines p {
    color: #334155;
}

.section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.section-heading h2 {
    font-size: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #64748b;
}

.bonus-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d4ed8;
}

.quote-text {
    font-size: 20px;
    line-height: 1.85;
    color: #1e293b;
    margin-bottom: 18px;
}

.quote-author {
    color: #2563eb;
    font-weight: 700;
}

.signup-head {
    margin-bottom: 24px;
}

.signup-form {
    display: grid;
    gap: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    height: 56px;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 0 16px;
    font-size: 15px;
    color: #0f172a;
    background: #fff;
    outline: none;
    transition: 0.2s ease;
}

.form-control:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.hidden-field {
    display: none;
}

.alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
}

.alert-success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.18);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #f8fafc;
}

.btn-full {
    width: 100%;
}

.tour-hero-section {
    padding: 72px 0 30px;
    background:
        radial-gradient(circle at top left, rgba(186, 230, 253, 0.45), transparent 28%),
        #f8fafc;
}

.tour-title {
    font-size: 52px;
    line-height: 1.08;
    margin-bottom: 16px;
}

.tour-subtext {
    font-size: 19px;
    color: #64748b;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.tour-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.tour-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tour-card-body {
    padding: 24px;
    position: relative;
}

.tour-location-thumb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    margin-top: -58px;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
}

.tour-location-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-date {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.tour-card h3 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.tour-copy {
    color: #64748b;
    margin-bottom: 20px;
}

.site-footer {
    padding: 28px 0 40px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.footer-inner {
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 991px) {
    .hero-grid,
    .tour-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .tour-title {
        font-size: 42px;
    }

    .story-box h2,
    .bonus-box h2,
    .signup-head h2,
    .tour-cta-box h2,
    .section-heading h2 {
        font-size: 32px;
    }

    .nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 0;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-section,
    .tour-hero-section {
        padding-top: 48px;
    }

    .hero-copy h1,
    .tour-title {
        font-size: 34px;
    }

    .hero-subtext,
    .tour-subtext {
        font-size: 17px;
    }

    .story-box,
    .bonus-box,
    .quote-box,
    .signup-box,
    .tour-cta-box,
    .benefit-card,
    .tour-card-body {
        padding: 22px;
    }

    .hero-image-card img {
        height: 340px;
    }

    .main-nav {
        flex-direction: column;
        gap: 8px;
    }

    .header-cta {
        width: 100%;
        text-align: center;
    }

    .tour-banner img {
        height: 180px;
    }

    .quote-text {
        font-size: 17px;
        line-height: 1.75;
    }
}