/* Import Noto Sans JP Font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fef7f0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating Bubble Effects */
.floating-bubble {
    position: fixed;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.6;
}

.floating-bubble::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(1px);
}

.floating-bubble img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.bubble-1 {
    top: 10%;
    left: 5%;
    animation: bubble-float-1 15s ease-in-out infinite;
}

.bubble-2 {
    top: 20%;
    right: 8%;
    animation: bubble-float-2 18s ease-in-out infinite;
}

.bubble-3 {
    top: 50%;
    left: 3%;
    animation: bubble-float-3 12s ease-in-out infinite;
}

.bubble-4 {
    top: 70%;
    right: 5%;
    animation: bubble-float-4 20s ease-in-out infinite;
}

.bubble-5 {
    top: 80%;
    left: 15%;
    animation: bubble-float-5 16s ease-in-out infinite;
}

.bubble-6 {
    top: 40%;
    right: 15%;
    animation: bubble-float-6 14s ease-in-out infinite;
}

@keyframes bubble-float-1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-30px) translateX(20px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-10px) translateX(-15px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-25px) translateX(10px) rotate(270deg) scale(1.05); }
}

@keyframes bubble-float-2 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-20px) translateX(-25px) rotate(120deg) scale(1.15); }
    66% { transform: translateY(-35px) translateX(15px) rotate(240deg) scale(0.85); }
}

@keyframes bubble-float-3 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-40px) translateX(30px) rotate(180deg) scale(1.2); }
}

@keyframes bubble-float-4 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) translateX(-20px) rotate(72deg) scale(0.9); }
    50% { transform: translateY(-30px) translateX(25px) rotate(144deg) scale(1.1); }
    75% { transform: translateY(-20px) translateX(-10px) rotate(216deg) scale(1.05); }
}

@keyframes bubble-float-5 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    40% { transform: translateY(-25px) translateX(15px) rotate(144deg) scale(1.08); }
    80% { transform: translateY(-10px) translateX(-20px) rotate(288deg) scale(0.95); }
}

@keyframes bubble-float-6 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    30% { transform: translateY(-35px) translateX(-15px) rotate(108deg) scale(1.12); }
    60% { transform: translateY(-15px) translateX(20px) rotate(216deg) scale(0.88); }
    90% { transform: translateY(-28px) translateX(-5px) rotate(324deg) scale(1.03); }
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 50%, #facc15 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="600" r="80" fill="url(%23a)"/><circle cx="700" cy="800" r="120" fill="url(%23a)"/></svg>') center/cover;
    animation: drift 20s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(10px) translateY(-10px); }
    50% { transform: translateX(-5px) translateY(15px); }
    75% { transform: translateX(8px) translateY(-5px); }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.hero-text {
    flex: 1;
    text-align: left;
    animation: slideInLeft 1s ease-out;
}

.hero-character {
    flex: 0 0 350px;
    animation: slideInRight 1s ease-out;
}

.character-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.character-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

#hero h1 {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    background: linear-gradient(45deg, #facc15, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(45deg, #facc15, #fbbf24);
    opacity: 0.3;
    border-radius: 4px;
}

.subtext {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.countdown-text {
    font-weight: 700;
    color: #facc15;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
}

.time-unit span {
    display: block;
    font-size: 2.5em;
    font-weight: 900;
    color: #facc15;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.time-unit label {
    font-size: 1em;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(135deg, #f97316, #ea580c, #dc2626);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2em;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9, #0284c7);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.cta-button.secondary:hover {
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.6);
}

.cta-button.large {
    padding: 25px 60px;
    font-size: 1.4em;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

section:nth-child(odd) {
    background: #fef7f0;
}

h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
    font-weight: 900;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #38bdf8, #facc15);
    border-radius: 2px;
}

/* Problems Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.problem-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.problem-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #38bdf8;
}

.problem-icon {
    font-size: 4em;
    margin-bottom: 25px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.problem-item p {
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.6;
}

/* Features Section */
#features {
    position: relative;
    overflow: hidden;
}

.features-bg-image {
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: url('feature-bg.png') center/contain no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 10;
}

.feature-item {
    background: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #38bdf8, #facc15);
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 4.5em;
    margin-bottom: 25px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.1));
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #38bdf8;
    font-weight: 700;
}

.feature-item p {
    font-size: 1.1em;
    line-height: 1.7;
    font-weight: 400;
}

/* Process Section */
#process {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 50%, #facc15 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

#process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23b)"/><circle cx="900" cy="200" r="120" fill="url(%23b)"/><circle cx="300" cy="800" r="100" fill="url(%23b)"/><circle cx="700" cy="600" r="90" fill="url(%23b)"/></svg>') center/cover;
}

.process-subtitle {
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 60px;
    opacity: 0.95;
    font-weight: 500;
    position: relative;
    z-index: 10;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.process-step {
    background: rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #facc15, #fbbf24);
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin: 0 auto 20px;
    font-size: 1.3em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.process-step h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.arrow {
    font-size: 2.5em;
    color: #facc15;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.benefit-item {
    background: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #10b981, #38bdf8);
}

.benefit-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 4.5em;
    margin-bottom: 25px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.1));
}

.benefit-item h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #10b981;
    font-weight: 700;
}

.benefit-item p {
    font-size: 1.1em;
    line-height: 1.7;
    font-weight: 400;
}

/* July Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.event-item {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.1) 50%, transparent 51%);
}

.event-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.6);
}

.event-icon {
    font-size: 4.5em;
    margin-bottom: 25px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.event-item h3 {
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 700;
}

.event-item p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Pricing Section */
.pricing-card {
    max-width: 600px;
    margin: 0 auto 80px;
    background: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, #38bdf8, #facc15);
}

.price {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #38bdf8;
    font-weight: 900;
}

.amount {
    font-size: 3em;
    font-weight: 900;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    font-size: 1em;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 50px;
    text-align: left;
}

.features-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1.1em;
    position: relative;
    padding-left: 30px;
}

.features-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: 900;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 15px;
}

/* Bonuses */
.bonuses {
    margin-top: 80px;
    text-align: center;
}

.bonuses h3 {
    margin-bottom: 40px;
    color: #f97316;
    font-size: 1.8em;
    font-weight: 700;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.bonus-item {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

.bonus-item h4 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.bonus-item p {
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: none;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 25px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #38bdf8;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.faq-item h4 {
    color: #38bdf8;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.1em;
    line-height: 1.7;
    font-weight: 400;
}

/* Message Section */
#message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    position: relative;
    overflow: hidden;
}

#message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="c"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.08"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="120" fill="url(%23c)"/><circle cx="800" cy="700" r="100" fill="url(%23c)"/></svg>') center/cover;
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.message-profile {
    flex: 0 0 200px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.message-text {
    flex: 1;
    text-align: left;
}

.message-text p {
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Final CTA Section */
#final-cta {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="d"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="150" cy="150" r="100" fill="url(%23d)"/><circle cx="850" cy="850" r="150" fill="url(%23d)"/></svg>') center/cover;
}

#final-cta h2 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
}

#final-cta h2::after {
    background: linear-gradient(135deg, #facc15, #fbbf24);
}

#final-cta p {
    font-size: 1.3em;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
    font-weight: 500;
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer p {
    opacity: 0.8;
    font-weight: 400;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.problem-item,
.feature-item,
.benefit-item,
.event-item,
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.problem-item.animate-in,
.feature-item.animate-in,
.benefit-item.animate-in,
.event-item.animate-in,
.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .floating-bubble {
        width: 80px;
        height: 80px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-character {
        flex: 0 0 280px;
    }
    
    .character-image {
        transform: none;
    }
    
    #hero h1 {
        font-size: 2.5em;
    }
    
    .subtext {
        font-size: 1.2em;
    }
    
    .countdown-timer {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .time-unit {
        padding: 15px 20px;
        min-width: 80px;
    }
    
    .time-unit span {
        font-size: 2em;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .arrow {
        transform: rotate(90deg);
        font-size: 2em;
    }
    
    .problems-grid,
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .message-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .message-text {
        text-align: center;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .message-text p {
        font-size: 1.3em;
    }
    
    section {
        padding: 80px 0;
    }
    
    h2 {
        font-size: 2.2em;
    }
    
    .feature-item,
    .benefit-item {
        padding: 40px;
    }
    
    .pricing-card {
        padding: 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .floating-bubble {
        width: 60px;
        height: 60px;
    }
    
    #hero {
        padding: 80px 0;
    }
    
    #hero h1 {
        font-size: 2em;
    }
    
    .subtext {
        font-size: 1.1em;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1.1em;
    }
    
    .cta-button.large {
        padding: 22px 45px;
        font-size: 1.2em;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .time-unit span {
        font-size: 1.8em;
    }
    
    .time-unit label {
        font-size: 0.9em;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    section {
        padding: 60px 0;
    }
    
    .feature-item,
    .benefit-item,
    .problem-item {
        padding: 30px;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .message-text p {
        font-size: 1.2em;
    }
}