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

:root {
    /* Color Palette */
    --primary-navy: #0a1628;
    --secondary-dark: #1a2332;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b8941f;
    --text-light: #ffffff;
    --text-gray: #a0a9b8;
    --bg-dark: #050a15;
    --bg-section: #0f1823;
    --gradient-start: #d4af37;
    --gradient-end: #f4d03f;
    --success-green: #00d4aa;
    --danger-red: #ff4757;
    
    /* Typography */
    --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-main);
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #050a15 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-navy) 0%, var(--bg-dark) 100%);
    z-index: -2;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0% 0%, 100% 0%, 50% 100%;
    }
    50% {
        background-position: 100% 50%, 0% 100%, 0% 0%;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.floating-element {
    position: absolute;
    color: rgba(212, 175, 55, 0.2);
    font-size: 2rem;
    animation: futuristicFloat 8s ease-in-out infinite;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

@keyframes futuristicFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.1);
        opacity: 0.6;
    }
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: -3s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Grid pattern */
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        /* Diagonal lines */
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.05) 50%, transparent 52%),
        /* Bottom wave */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d4af37" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: 40px 40px, 40px 40px, 120px 120px, cover;
    opacity: 0.6;
    z-index: -1;
    animation: gridMovement 30s linear infinite;
}

@keyframes gridMovement {
    0% {
        background-position: 0 0, 0 0, 0 0, bottom;
    }
    100% {
        background-position: 40px 40px, 40px 40px, 120px 120px, bottom;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.hero-badge.pulse {
    animation: fadeInDown 0.8s ease-out, pulse 2s infinite 1s;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), transparent, var(--accent-gold));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    animation: glow 3s ease-in-out infinite;
}


.hero-badge i {
    color: var(--accent-gold);
}

.hero-badge span {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--accent-gold);
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: var(--font-weight-black);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .title-line,
.hero-title .highlight {
    display: block;
    color: var(--text-light);
}

.hero-title .highlight {
    color: var(--accent-gold);
    margin-top: 10px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: var(--font-weight-black);
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 18px;
    border-radius: 50px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left var(--transition-fast);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.cta-button.large {
    padding: 22px 50px;
    font-size: 20px;
}

.hero-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease-out 1s both;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-weight: var(--font-weight-medium);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: var(--font-weight-black);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Social Proof Section */
.social-proof {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(26, 35, 50, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all var(--transition-fast);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card.featured {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 24px;
}

.testimonial-icon.featured-icon {
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    animation: pulse 2s infinite;
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 14px;
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(212, 175, 55, 0.1);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: var(--font-weight-bold);
}

.testimonial-result .before {
    color: var(--text-gray);
}

.testimonial-result .after {
    color: var(--success-green);
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.proof-stat {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all var(--transition-fast);
}

.proof-stat:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.proof-stat i {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.proof-stat h3 {
    font-size: 36px;
    margin-bottom: 8px;
}

.proof-stat p {
    color: var(--text-gray);
}

/* Problem/Solution Section */
.problem-solution {
    padding: var(--section-padding);
}

.problem-block {
    text-align: center;
    margin-bottom: 80px;
}

.problem-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 50px;
}

.underline {
    position: relative;
    display: inline-block;
}

.underline:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--danger-red);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card {
    padding: 30px;
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 16px;
}

.problem-card i {
    font-size: 48px;
    color: var(--danger-red);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-gray);
}

.solution-arrow {
    text-align: center;
    margin: 60px 0;
    font-size: 48px;
    color: var(--accent-gold);
    animation: bounce 2s infinite;
}

.solution-title {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 60px;
}

.solution-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.story-content h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
}

.story-content strong {
    color: var(--accent-gold);
}

.story-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-illustration {
    position: relative;
    width: 300px;
    height: 200px;
    background: rgba(26, 35, 50, 0.8);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 100px;
}

.chart-bar {
    width: 30px;
    background: linear-gradient(to top, var(--accent-gold), var(--gradient-end));
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.chart-bar.active {
    background: linear-gradient(to top, #00d4aa, #26de81);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.growth-arrow {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--success-green);
    font-size: 24px;
    animation: bounce 2s infinite;
}

.story-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--success-green);
    color: var(--primary-navy);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Benefits Section */
.benefits {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(26, 35, 50, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-fast);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--primary-navy);
}

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

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* AI/DX Section */
.ai-dx {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ai-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-text h3 i {
    color: var(--accent-gold);
}

.ai-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.ai-features {
    list-style: none;
    margin-bottom: 30px;
}

.ai-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.ai-features i {
    color: var(--success-green);
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--primary-navy);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: var(--font-weight-bold);
}

.ai-visual {
    position: relative;
}

.ai-demo {
    background: rgba(26, 35, 50, 0.8);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.ai-screen {
    background: var(--bg-dark);
    border-radius: 8px;
    padding: 30px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-animation {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: var(--accent-gold);
}

.typing-text:after {
    content: '|';
    animation: blink 1s infinite;
}

.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ai-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s infinite;
}

.ai-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.ai-particles span:nth-child(2) {
    top: 80%;
    left: 80%;
    animation-delay: 1s;
}

.ai-particles span:nth-child(3) {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

/* Video Section */
.video-content {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.youtube-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.youtube-embed {
    position: relative;
}

.youtube-embed iframe,
.youtube-embed #youtube-player {
    width: 100%;
    height: 315px;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.video-overlay.active {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 30px;
}

.overlay-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.overlay-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
}

.ai-tool-demo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: var(--font-weight-bold);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.ai-tool-demo: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;
}

.ai-tool-demo:hover:before {
    left: 100%;
}

.ai-tool-demo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.video-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.main-video {
    margin-bottom: 40px;
}

.video-wrapper {
    background: rgba(26, 35, 50, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

.video-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-navy), var(--bg-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-navy));
}

.video-placeholder i {
    font-size: 80px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.video-placeholder p {
    font-size: 18px;
    color: var(--text-gray);
}

.video-info {
    padding: 30px;
}

.video-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.video-info p {
    color: var(--text-gray);
}

.video-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-feature {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all var(--transition-fast);
}

.video-feature:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.video-feature i {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.video-feature h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.video-feature p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Offer Section */
.offer {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
}

.offer-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 35, 50, 0.8);
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    overflow: hidden;
}

.offer-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 30px;
    text-align: center;
    position: relative;
}

.offer-header h2 {
    color: var(--primary-navy);
    font-size: 36px;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--danger-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-content {
    padding: 50px;
}

.price-block {
    text-align: center;
    margin-bottom: 40px;
}

.original-price {
    margin-bottom: 16px;
}

.original-price span {
    color: var(--text-gray);
    font-size: 16px;
}

.original-price s {
    color: var(--text-gray);
    font-size: 24px;
    margin-left: 8px;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-label {
    font-size: 20px;
    color: var(--accent-gold);
}

.price-amount {
    font-size: 56px;
    font-weight: var(--font-weight-black);
    color: var(--accent-gold);
}

.price-period {
    font-size: 20px;
    color: var(--text-gray);
}

.price-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.offer-benefits {
    margin-bottom: 40px;
}

.offer-benefits h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.offer-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.offer-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-benefits i {
    color: var(--success-green);
}

.urgency-message {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--danger-red);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.urgency-message i {
    color: var(--danger-red);
    font-size: 24px;
    margin-bottom: 12px;
}

.slots-left {
    color: var(--danger-red);
    font-weight: var(--font-weight-bold);
}

.guarantee {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
}

.guarantee i {
    color: var(--success-green);
    font-size: 24px;
    margin-bottom: 12px;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: rgba(26, 35, 50, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question i {
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--bg-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.final-note {
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Footer */
.footer {
    padding: 30px 0;
    background: var(--bg-dark);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(50px, -50px);
    }
}

/* Futuristic Background Elements */
.futuristic-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0.6;
    animation: lightSweep 12s ease-in-out infinite;
}

.light-beam-1 {
    width: 200px;
    height: 2px;
    top: 20%;
    left: -200px;
    animation-delay: 0s;
}

.light-beam-2 {
    width: 300px;
    height: 2px;
    top: 60%;
    left: -300px;
    animation-delay: 4s;
}

.light-beam-3 {
    width: 150px;
    height: 2px;
    top: 80%;
    left: -150px;
    animation-delay: 8s;
}

.geometric-shape {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    animation: geometricFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 15%;
    clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
    animation-delay: 5s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 10%;
    border-radius: 50%;
    animation-delay: 10s;
}

@keyframes lightSweep {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(calc(100vw + 300px));
        opacity: 0;
    }
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}


/* Responsive Design */
/* Mobile Break Utility */
.mobile-break {
    display: inline;
}

@media (max-width: 768px) {
    /* Mobile Break Control */
    .mobile-break {
        display: block;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 60px 0 40px;
    }
    
    /* Optimize futuristic elements for mobile */
    .geometric-shape {
        opacity: 0.3;
    }
    
    .light-beam {
        opacity: 0.4;
    }
    
    .futuristic-bg {
        overflow: hidden;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    /* Grid Layouts Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    
    .video-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Offer Section Mobile */
    .offer-content {
        padding: 30px 20px;
    }
    
    .offer-header {
        padding: 20px;
    }
    
    .offer-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 10px;
        justify-content: center;
    }
    
    .offer-header h2 {
        font-size: 28px;
    }
    
    .offer-benefits ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .price-amount {
        font-size: 42px;
    }
    
    /* Video Mobile */
    .youtube-embed iframe,
    .youtube-embed #youtube-player {
        height: 200px;
    }
    
    .video-overlay .overlay-content {
        padding: 20px;
    }
    
    .video-overlay .overlay-content h3 {
        font-size: 20px;
    }
    
    .video-overlay .overlay-content p {
        font-size: 14px;
    }
    
    /* Story Illustration Mobile */
    .story-illustration {
        width: 100%;
        max-width: 280px;
        height: 160px;
        padding: 20px;
    }
    
    .success-chart {
        gap: 10px;
        height: 80px;
    }
    
    .chart-bar {
        width: 20px;
    }
    
    /* Social Elements Mobile */
    .instagram-link {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .ai-tool-demo {
        padding: 12px 20px;
        font-size: 13px;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Testimonial Mobile */
    .testimonial-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonial-info h4 {
        font-size: 16px;
    }
    
    /* Section Spacing Mobile */
    :root {
        --section-padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* Ultra Mobile Optimization */
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .offer-content {
        padding: 25px 15px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .price-label, .price-period {
        font-size: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .story-illustration {
        max-width: 250px;
        height: 140px;
        padding: 15px;
    }
    
    .success-chart {
        height: 60px;
        gap: 8px;
    }
    
    .chart-bar {
        width: 16px;
    }
    
    .youtube-embed iframe,
    .youtube-embed #youtube-player {
        height: 180px;
    }
    
    .video-overlay .overlay-content {
        padding: 15px;
    }
    
    .video-overlay .overlay-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .video-overlay .overlay-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    
    .ai-tool-demo {
        padding: 10px 16px;
        font-size: 12px;
        max-width: 200px;
    }
}

/* Mobile Device Optimizations */
.mobile-device .youtube-embed {
    border-radius: 12px;
    overflow: hidden;
}

.mobile-device .video-overlay {
    border-radius: 12px;
}

.mobile-device .video-overlay .cta-button {
    padding: 12px 24px;
    font-size: 14px;
}

/* Loading State */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}