/* ===== DESIGN TOKENS ===== */
:root {
    /* Colors */
    --sky-50: #f0f7ff;
    --sky-100: #e0efff;
    --sky-200: #b9dcfe;
    --sky-300: #7cb3f0;
    --sky-400: #5b9cf6;
    --sky-500: #3b82f6;
    --sky-600: #2563eb;

    --orange-50: #fff8f0;
    --orange-100: #fff0db;
    --orange-200: #fddcb0;
    --orange-300: #f5a623;
    --orange-400: #e8951b;
    --orange-500: #d97706;

    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;

    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-300: #fca5a5;
    --red-400: #f87171;
    --red-500: #ef4444;

    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;

    --warm-white: #fefcf9;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;

    /* Typography */
    --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 50px -10px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.15);
    --shadow-glow-orange: 0 0 30px rgba(245, 166, 35, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 600ms;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background: var(--warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 800;
    color: var(--neutral-900);
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--sky-100);
    color: var(--sky-600);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--neutral-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--sky-500) 0%, var(--sky-600) 100%);
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 4px 15px rgba(42, 171, 238, 0.3);
}

.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 171, 238, 0.4);
}

/* ===== AOS-LIKE ANIMATION ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
        transform var(--duration-slow) var(--ease-out);
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos][data-aos-delay="100"] {
    transition-delay: 100ms;
}

[data-aos][data-aos-delay="200"] {
    transition-delay: 200ms;
}

[data-aos][data-aos-delay="300"] {
    transition-delay: 300ms;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) var(--space-lg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.55) 0%,
            rgba(15, 23, 42, 0.65) 50%,
            rgba(15, 23, 42, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: heroFadeIn 1s var(--ease-out) both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--orange-300) 0%, var(--orange-400) 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.25);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(245, 166, 35, 0.25);
    }

    50% {
        box-shadow: 0 4px 25px rgba(245, 166, 35, 0.45);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    margin-bottom: var(--space-lg);
    color: white;
    -webkit-text-fill-color: white;
    background: none;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.btn-hero {
    font-size: 1.1rem;
    padding: 18px 36px;
}

.hero-scroll-hint {
    margin-top: var(--space-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.hero-image-wrapper {
    position: absolute;
    bottom: -20px;
    right: -2%;
    width: 38%;
    max-width: 420px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.9;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-image {
    border-radius: var(--radius-xl);
}

/* ===== MISTAKES SECTION ===== */
.mistakes-section {
    padding: var(--space-4xl) 0;
    background: #f4f1ec;
    position: relative;
}



.mistake-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.mistake-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.mistake-number {
    position: absolute;
    top: -10px;
    right: var(--space-xl);
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    color: var(--neutral-100);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.mistake-icon {
    margin-bottom: var(--space-sm);
}

.mistake-body {
    position: relative;
    z-index: 1;
}

.mistake-body h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.mistake-subtitle {
    color: var(--neutral-400);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.mistake-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.detail-wrong,
.detail-right {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.detail-wrong {
    background: var(--red-50);
    border: 1px solid var(--red-100);
}

.detail-right {
    background: var(--green-50);
    border: 1px solid var(--green-100);
}

.detail-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 2px;
}

.detail-wrong .detail-icon {
    background: var(--red-400);
    color: white;
}

.detail-right .detail-icon {
    background: var(--green-500);
    color: white;
}

.detail-wrong strong,
.detail-right strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detail-wrong strong {
    color: var(--red-500);
}

.detail-right strong {
    color: var(--green-500);
}

.detail-wrong p,
.detail-right p {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

.mistake-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mistake-visual img {
    border-radius: var(--radius-lg);
    max-height: 260px;
    object-fit: cover;
}

/* Visual: Dimensions (Mistake 2) */
.visual-dimensions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    width: 100%;
    max-width: 320px;
}

.dim-box {
    background: var(--orange-50);
    border: 2px solid var(--orange-200);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    transition: transform var(--duration-fast) var(--ease-spring);
}

.dim-box:hover {
    transform: scale(1.05);
}

.dim-label {
    display: block;
    font-size: 0.75rem;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.dim-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--orange-500);
}

.dim-weight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--orange-100) 0%, var(--orange-50) 100%);
}

/* Visual: Booking Steps (Mistake 4) */
.booking-steps {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: var(--space-md);
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--neutral-600);
    transition: all var(--duration-fast) var(--ease-spring);
    min-width: 80px;
}

.step-item:hover {
    transform: translateY(-3px);
    border-color: var(--sky-300);
}

.step-item.active {
    background: var(--green-50);
    border-color: var(--green-400);
    color: var(--green-500);
    font-weight: 600;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--neutral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
}

.step-item.active .step-num {
    background: var(--green-500);
    color: white;
}

.step-arrow {
    color: var(--neutral-300);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Visual: Preparation Timeline (Mistake 5) */
.prep-timeline {
    position: relative;
    padding-left: var(--space-xl);
}

.prep-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--purple-300) 0%, var(--purple-500) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: calc(-1 * var(--space-xl) + 2px);
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--purple-400);
    z-index: 1;
    transition: all var(--duration-fast) var(--ease-spring);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.3);
    background: var(--purple-400);
}

.timeline-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--purple-500);
    margin-bottom: 2px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

/* ===== UPDATES SECTION ===== */
.updates-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, #eef2f7 0%, #e8edf5 50%, #eef2f7 100%);
}

.updates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.update-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.update-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.update-icon {
    margin-bottom: var(--space-md);
}

.update-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--red-50);
    color: var(--red-500);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.update-card:nth-child(2) .update-label {
    background: var(--orange-50);
    color: var(--orange-500);
}

.update-card:nth-child(3) .update-label {
    background: var(--red-50);
    color: var(--red-500);
}

.update-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.update-card h3 em {
    color: var(--sky-500);
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: var(--sky-200);
    text-underline-offset: 3px;
}

.update-card p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CHECKLIST SECTION ===== */
.checklist-section {
    padding: var(--space-4xl) 0;
    background: #f7f5f0;
}

.checklist-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.checklist-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--duration-normal) var(--ease-out);
}

.checklist-card:hover {
    box-shadow: var(--shadow-lg);
}

.checklist-category {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--neutral-100);
}

.check-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    cursor: pointer;
    transition: all var(--duration-fast);
    border-radius: var(--radius-sm);
    user-select: none;
}

.check-item:hover {
    padding-left: var(--space-sm);
}

.check-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--neutral-300);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-spring);
    position: relative;
}

.checkmark::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform var(--duration-fast) var(--ease-spring);
    margin-top: -2px;
}

.check-item input:checked+.checkmark {
    background: var(--green-500);
    border-color: var(--green-500);
    animation: checkBounce 0.4s var(--ease-spring);
}

.check-item input:checked+.checkmark::after {
    transform: rotate(45deg) scale(1);
}

@keyframes checkBounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.2);
    }

    60% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.check-text {
    font-size: 0.95rem;
    color: var(--neutral-700);
    transition: all var(--duration-fast);
}

.check-item input:checked~.check-text {
    color: var(--neutral-400);
    text-decoration: line-through;
    text-decoration-color: var(--green-300);
}

/* Progress Bar */
.checklist-progress {
    margin-top: var(--space-2xl);
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--neutral-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-400) 0%, var(--green-500) 100%);
    border-radius: var(--radius-full);
    transition: width var(--duration-normal) var(--ease-out);
}

.progress-text {
    font-size: 0.9rem;
    color: var(--neutral-400);
    font-weight: 500;
}

/* ===== LEAD SECTION ===== */
.lead-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, #eae8e3 0%, #e4eaf2 100%);
}

.lead-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(59, 130, 246, 0.08);
    overflow: hidden;
}

.lead-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.lead-content>p {
    color: var(--neutral-500);
    margin-bottom: var(--space-xl);
    font-size: 1.05rem;
    line-height: 1.8;
}

.lead-form {
    margin-bottom: var(--space-xl);
}

.form-group {
    display: flex;
    gap: var(--space-md);
    flex-direction: column;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--neutral-800);
    transition: border-color var(--duration-fast);
    outline: none;
    background: var(--neutral-50);
}

.form-group input[type="email"]:focus {
    border-color: var(--sky-400);
    background: white;
}

.form-group input[type="email"]::placeholder {
    color: var(--neutral-400);
}

.btn-submit {
    white-space: nowrap;
}

.form-success {
    display: none;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--green-50);
    border-radius: var(--radius-md);
    color: var(--green-500);
    font-weight: 600;
    margin-top: var(--space-md);
    animation: fadeSlideIn 0.4s var(--ease-out);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success.visible {
    display: flex;
}

.form-note {
    font-size: 0.8rem;
    color: var(--neutral-400);
    margin-top: var(--space-md);
}

.lead-divider {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    color: var(--neutral-300);
    font-size: 0.85rem;
    margin-bottom: var(--space-xl);
}

.lead-divider::before,
.lead-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--neutral-200);
}

.lead-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-visual img {
    border-radius: var(--radius-xl);
    max-height: 320px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: #0a1628;
    padding: 52px 0 0;
    font-family: 'Inter', sans-serif;
}
.footer .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: rgba(255,255,255,.85);
    line-height: 1.2;
    margin-bottom: 6px;
    text-decoration: none;
    display: block;
}
.footer-tagline {
    font-size: .82rem;
    color: rgba(255,255,255,.32);
    max-width: 200px;
    line-height: 1.6;
    margin: 0;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-links a {
    font-size: .84rem;
    color: rgba(255,255,255,.42);
    text-decoration: none;
    transition: color .25s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
    border-top: none;
    padding: 18px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copy {
    font-size: .76rem;
    color: rgba(255,255,255,.22);
    margin: 0;
}
.footer-note { display: none; }

/* ===== MASCOT ===== */
.mascot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    cursor: pointer;
    animation: mascotFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform var(--duration-fast) var(--ease-spring);
}

.mascot:hover {
    transform: scale(1.1);
}

.mascot img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    background: white;
}

@keyframes mascotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mascot:hover {
    animation-play-state: paused;
}

.mascot-tooltip {
    position: absolute;
    bottom: calc(100% + 16px);
    right: 0;
    width: 280px;
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-100);
    font-size: 0.9rem;
    color: var(--neutral-700);
    line-height: 1.6;
    display: none;
    animation: tooltipFade 0.3s var(--ease-out);
}

.mascot-tooltip.visible {
    display: block;
}

@keyframes tooltipFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mascot-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 28px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 3px;
    transform: rotate(45deg);
    border-right: 1px solid var(--neutral-100);
    border-bottom: 1px solid var(--neutral-100);
}

.tooltip-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--neutral-400);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.tooltip-close:hover {
    color: var(--neutral-700);
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 639px) {

    /* Global mobile spacing */
    .container {
        padding: 0 var(--space-md);
    }

    /* Hero on mobile */
    .hero {
        padding: var(--space-2xl) var(--space-md);
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-hero {
        font-size: 0.95rem;
        padding: 14px 24px;
    }

    .hero-image-wrapper {
        display: none;
    }

    .hero-scroll-hint {
        margin-top: var(--space-xl);
    }

    /* Mistakes cards */
    .mistakes-section {
        padding: var(--space-2xl) 0;
    }

    .mistake-card {
        padding: var(--space-lg);
        margin-bottom: var(--space-lg);
        gap: var(--space-lg);
    }

    .mistake-number {
        font-size: 4rem;
        right: var(--space-md);
    }

    .mistake-body h3 {
        font-size: 1.2rem;
    }

    .mistake-subtitle {
        font-size: 0.85rem;
        margin-bottom: var(--space-md);
    }

    .detail-wrong,
    .detail-right {
        padding: var(--space-md);
        gap: var(--space-sm);
    }

    .detail-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .detail-wrong p,
    .detail-right p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .detail-wrong strong,
    .detail-right strong {
        font-size: 0.8rem;
    }

    /* Mistake visuals single column */
    .mistake-visual {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .mistake-visual img {
        max-height: 220px;
        width: 100%;
    }

    /* Dimensions grid */
    .visual-dimensions {
        max-width: 100%;
    }

    .dim-value {
        font-size: 1.1rem;
    }

    /* Booking steps: compact grid on mobile */
    .booking-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
        width: 100%;
    }

    .step-arrow {
        display: none;
    }

    .step-item {
        min-width: 0;
        padding: var(--space-sm) 4px;
        font-size: 0.75rem;
    }

    .step-num {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    /* Last 2 items center in second row */
    .step-item:nth-child(n+7) {
        grid-column: span 1;
    }

    /* Timeline */
    .prep-timeline {
        padding-left: var(--space-lg);
    }

    .timeline-marker {
        left: calc(-1 * var(--space-lg) + 2px);
        width: 12px;
        height: 12px;
    }

    .timeline-content strong {
        font-size: 0.8rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    /* Section headers */
    .section-header {
        margin-bottom: var(--space-xl);
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* Updates */
    .updates-section {
        padding: var(--space-2xl) 0;
    }

    .update-card {
        padding: var(--space-lg);
    }

    .update-card h3 {
        font-size: 1.05rem;
    }

    .update-card p {
        font-size: 0.88rem;
    }

    /* Checklist */
    .checklist-section {
        padding: var(--space-2xl) 0;
    }

    .checklist-card {
        padding: var(--space-lg);
    }

    .checklist-category {
        font-size: 1rem;
    }

    .check-text {
        font-size: 0.88rem;
    }

    /* Lead section */
    .lead-section {
        padding: var(--space-2xl) 0;
    }

    .lead-card {
        padding: var(--space-lg);
    }

    .lead-content h2 {
        font-size: 1.5rem;
    }

    .lead-content>p {
        font-size: 0.95rem;
    }

    .lead-visual img {
        max-height: 200px;
    }

    /* Mascot smaller on mobile */
    .mascot {
        bottom: 16px;
        right: 16px;
    }

    .mascot img {
        width: 56px;
        height: 56px;
    }

    .mascot-tooltip {
        width: 240px;
        padding: var(--space-md);
        font-size: 0.82rem;
        right: -8px;
    }

    /* Footer */
    .footer {
        font-size: 0.82rem;
    }
}

/* ===== RESPONSIVE: TABLET ===== */
@media (min-width: 640px) {
    .form-group {
        flex-direction: row;
    }

    .checklist-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .updates-grid .update-card:last-child {
        grid-column: 1 / -1;
    }

    .booking-steps {
        flex-wrap: nowrap;
    }
}

/* ===== RESPONSIVE: DESKTOP ===== */
@media (min-width: 1024px) {
    .mistake-card {
        grid-template-columns: 1fr 320px;
        align-items: center;
    }

    .mistake-card:nth-child(odd) {
        grid-template-columns: 320px 1fr;
    }

    .mistake-card:nth-child(odd) .mistake-visual {
        order: -1;
    }

    .mistake-card:nth-child(odd) .mistake-number {
        right: auto;
        left: var(--space-xl);
    }

    .updates-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .updates-grid .update-card:last-child {
        grid-column: auto;
    }

    .checklist-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }

    .lead-card {
        grid-template-columns: 1fr 360px;
        padding: var(--space-3xl);
    }

    .hero-image-wrapper {
        opacity: 0.95;
    }
}

/* ===== RESPONSIVE: LARGE ===== */
@media (min-width: 1280px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* ===== ANIMATIONS: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ===== PRINT ===== */
@media print {

    .mascot,
    .hero-scroll-hint,
    .lead-section {
        display: none;
    }

    .mistake-card,
    .update-card,
    .checklist-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}