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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0e27;
    color: white;
    overflow-x: hidden;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 6px;
    position: relative;
    transform: perspective(100px) rotateY(-5deg);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.btn-book {
    background: #FFDB58;
    color: #211538;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-book:hover {
    background: #FFDB58;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 48px 120px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.2));
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #0a0e27;
    margin-left: -8px;
}

.avatar:nth-child(1) {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    margin-left: 0;
}

.avatar:nth-child(2) {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.avatar:nth-child(3) {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.unlimited {
    font-style: italic;
    font-weight: 600;
}

.btn-get-started {
    background: #3b82f6;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: background 0.2s;
}

.btn-get-started:hover {
    background: #2563eb;
}

/* Product Mockups Section */
.mockups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.mockup {
    background: white;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.mockup-left {
    background: #f3f4f6;
}

.mockup-middle {
    background: white;
}

.mockup-right {
    background: #fde4d0;
}

/* Left Mockup - Paper Items */
.paper-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.brochure {
    width: 200px;
    height: 140px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    transform: perspective(200px) rotateY(-15deg) rotateX(5deg);
}

.brochure-front {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    position: relative;
}

.brochure-panel {
    position: absolute;
    right: -20px;
    top: 0;
    width: 60px;
    height: 100%;
    background: white;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
}

.free-card {
    width: 120px;
    height: 80px;
    background: #1f2937;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.free-card::before {
    content: '*';
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 24px;
    color: white;
}

/* Middle Mockup - Pouches */
.pouches {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.pouch {
    width: 100px;
    height: 160px;
    background: rgba(34, 197, 94, 0.9);
    border-radius: 8px 8px 4px 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pouch::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid white;
}

.pouch-text {
    font-size: 8px;
    color: #1f2937;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 8px;
}

.pouch-logo {
    font-size: 7px;
    color: #1f2937;
    margin-top: auto;
    font-weight: 600;
}

.pouch-line {
    position: absolute;
    top: 20px;
    left: 10px;
    width: 60px;
    height: 1px;
    background: #1f2937;
    transform: rotate(45deg);
}

.pouch-line::after {
    content: '→';
    position: absolute;
    right: -4px;
    top: -6px;
    font-size: 10px;
    color: #1f2937;
}

/* Right Mockup - Package */
.package {
    width: 220px;
    height: 180px;
    background: #d4a574;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.package-text {
    font-size: 48px;
    font-weight: 900;
    color: #1f2937;
    letter-spacing: 4px;
}

.package-sticker {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 100px;
    background: white;
    border-radius: 4px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sticker-logo {
    width: 24px;
    height: 24px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 4px;
}

.sticker-text {
    font-size: 6px;
    color: #1f2937;
    text-align: center;
    line-height: 1.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-top: 4px;
}

.sticker-qr {
    width: 20px;
    height: 20px;
    background: repeating-conic-gradient(#000 0% 25%, #fff 0% 50%) 50% / 4px 4px;
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .mockups {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 48px;
    }

    nav {
        padding: 20px 24px;
    }

    .nav-links {
        gap: 20px;
    }
}
img.img-logo {
    max-width: 250px;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}
img.img-logo-sm {
    max-width: 60px;
    background: #fff;
    padding: 0.25rem;
    border-radius: 6px;
}
img.img-product {
    width: 100%;
    max-width: 300px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.book-box {
    max-width: 500px;
    margin: 0 auto;
}