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

:root {
    --primary-color: #6B46C1;
    --secondary-color: #F97316;
    --accent-color: #06B6D4;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --line-green: #00B900;
    --line-gradient: linear-gradient(135deg, #00C300 0%, #00B900 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header - Left-aligned Logo with Campaign Text */
.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
    width: 100%;
    padding: 1.2rem 0;
}

.header .container {
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.campaign-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFB5A7 0%, #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
    white-space: nowrap;
    margin-left: auto;
}

/* Mobile line break utilities */
.mobile-break {
    display: none;
}

.mobile-no-break {
    display: inline;
}

.mobile-break-before::before {
    content: "";
}

@media (max-width: 767px) {
    .header {
        padding: 0.8rem 0;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .campaign-text {
        font-size: 1.1rem;
    }
    
    .mobile-break {
        display: inline;
    }
    
    .mobile-no-break {
        display: inline-block;
        white-space: nowrap;
    }
    
    .mobile-break-before::before {
        content: "\A";
        white-space: pre;
    }
}

/* Hero Section - Redesigned */
.hero {
    background-image: url('images/AdobeStock_357198260.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Premium golden accent */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, 
        rgba(255, 215, 0, 0.08) 0%, 
        transparent 40%);
    pointer-events: none;
    z-index: 1;
    animation: shimmerMove 20s ease-in-out infinite;
}

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

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 550px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.title-line1 {
    display: block;
    animation: slideInLeft 0.8s ease;
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.95);
}

.title-line2 {
    display: block;
    animation: slideInLeft 0.8s ease 0.2s both;
    font-size: 1.3em;
    color: #FFFFFF;
}

.lala-highlight {
    color: #FFD700;
    position: relative;
    display: inline-block;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    -webkit-font-smoothing: antialiased;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.4s both;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    -webkit-font-smoothing: antialiased;
}

.highlight-text {
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.hero-actions {
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-btn.primary.pulse {
    background: var(--line-gradient);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 185, 0, 0.3);
    animation: pulse 2s infinite;
}

.cta-btn.primary.pulse .line-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-bottom: 0.2rem;
}

.cta-btn.primary.pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 185, 0, 0.4);
}

.btn-text {
    font-weight: 600;
}

.btn-price {
    font-size: 0.9rem;
    opacity: 0.95;
}

.language-badges {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.badge {
    background: white;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Hero Visual */
/* Hero visual hidden - using background image instead */
.hero-visual {
    display: none;
}

.illustration-container {
    position: relative;
    animation: bounceIn 1s ease;
}

.hero-illustration {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
    object-fit: cover;
}

/* Adobe Stock Image Integration */
.hero-illustration[data-adobe-stock="true"] {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE4E9 100%);
    border: 2px solid rgba(251, 176, 64, 0.1);
}

/* Floating Words Animation - 35 Languages */
.floating-words {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.word {
    position: absolute;
    font-weight: 600;
    opacity: 0;
    animation: wordFloat 15s infinite;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

/* East Asian Languages - Top Left Quadrant */
.word-1 { top: 5%; left: 3%; color: #DC2626; animation-delay: 0s; font-size: 1.1rem; }
.word-2 { top: 12%; left: 15%; color: #EA580C; animation-delay: 0.4s; }
.word-3 { top: 8%; left: 28%; color: #0891B2; animation-delay: 0.8s; font-size: 1rem; }
.word-4 { top: 18%; left: 8%; color: #7C3AED; animation-delay: 1.2s; }

/* Southeast Asian Languages - Top Right Quadrant */
.word-5 { top: 3%; right: 5%; color: #059669; animation-delay: 1.6s; }
.word-6 { top: 10%; right: 18%; color: #DB2777; animation-delay: 2s; font-size: 1.1rem; }
.word-7 { top: 15%; right: 30%; color: #0EA5E9; animation-delay: 2.4s; }
.word-8 { top: 22%; right: 10%; color: #8B5CF6; animation-delay: 2.8s; font-size: 1.2rem; }
.word-9 { top: 6%; right: 35%; color: #F59E0B; animation-delay: 3.2s; }
.word-10 { top: 25%; right: 25%; color: #EC4899; animation-delay: 3.6s; }
.word-11 { top: 30%; right: 15%; color: #10B981; animation-delay: 4s; font-size: 1.1rem; }
.word-12 { top: 20%; right: 40%; color: #F97316; animation-delay: 4.4s; }

/* South Asian Languages - Middle Band */
.word-13 { top: 35%; left: 5%; color: #4F46E5; animation-delay: 4.8s; font-size: 1.2rem; }
.word-14 { top: 40%; left: 20%; color: #DC2626; animation-delay: 5.2s; font-size: 1.1rem; }
.word-15 { top: 45%; left: 35%; color: #059669; animation-delay: 5.6s; }
.word-16 { top: 38%; right: 35%; color: #7C3AED; animation-delay: 6s; font-size: 1rem; }
.word-17 { top: 42%; right: 20%; color: #EA580C; animation-delay: 6.4s; font-size: 1.1rem; }
.word-18 { top: 48%; right: 8%; color: #0891B2; animation-delay: 6.8s; }
.word-19 { top: 35%; left: 48%; color: #10B981; animation-delay: 7.2s; font-size: 1.2rem; }

/* European Languages - Lower Middle Band */
.word-20 { top: 55%; left: 10%; color: #0EA5E9; animation-delay: 7.6s; font-size: 1.3rem; }
.word-21 { top: 60%; left: 25%; color: #F59E0B; animation-delay: 8s; font-size: 1.1rem; }
.word-22 { top: 52%; left: 40%; color: #8B5CF6; animation-delay: 8.4s; font-size: 1.2rem; }
.word-23 { top: 58%; right: 40%; color: #EC4899; animation-delay: 8.8s; }
.word-24 { top: 65%; right: 25%; color: #DB2777; animation-delay: 9.2s; font-size: 1.1rem; }
.word-25 { top: 55%; right: 12%; color: #10B981; animation-delay: 9.6s; }
.word-26 { top: 62%; right: 50%; color: #F97316; animation-delay: 10s; }

/* Eastern European Languages - Bottom Section */
.word-27 { bottom: 25%; left: 8%; color: #DC2626; animation-delay: 10.4s; font-size: 1.1rem; }
.word-28 { bottom: 20%; left: 22%; color: #0891B2; animation-delay: 10.8s; }
.word-29 { bottom: 28%; left: 38%; color: #059669; animation-delay: 11.2s; }
.word-30 { bottom: 15%; left: 50%; color: #7C3AED; animation-delay: 11.6s; }

/* Middle Eastern & African Languages - Bottom Right */
.word-31 { bottom: 30%; right: 35%; color: #EA580C; animation-delay: 12s; font-size: 1.2rem; }
.word-32 { bottom: 22%; right: 20%; color: #4F46E5; animation-delay: 12.4s; font-size: 1.1rem; }
.word-33 { bottom: 18%; right: 45%; color: #DB2777; animation-delay: 12.8s; }
.word-34 { bottom: 10%; right: 30%; color: #10B981; animation-delay: 13.2s; font-size: 1.1rem; }
.word-35 { bottom: 25%; right: 10%; color: #F59E0B; animation-delay: 13.6s; font-size: 1.2rem; }

/* Special RTL text styling */
.word[data-lang="ar"],
.word[data-lang="fa"],
.word[data-lang="he"],
.word[data-lang="ur"] {
    direction: rtl;
}

/* Sparkles */
.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 3s infinite;
}

.sparkle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 0.5s;
}

.sparkle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.sparkle-4 {
    top: 40%;
    right: 30%;
    animation-delay: 1.5s;
}

/* Animations */
/* Shared animations for consistent feel */
@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes wordFloat {
    0% {
        opacity: 0;
        transform: translateY(30px) translateX(0) scale(0.7) rotate(-5deg);
    }
    10% {
        opacity: 0.8;
        transform: translateY(15px) translateX(10px) scale(0.9) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: translateY(0) translateX(5px) scale(1) rotate(3deg);
    }
    30% {
        opacity: 1;
        transform: translateY(-10px) translateX(-5px) scale(1.05) rotate(-2deg);
    }
    40% {
        opacity: 1;
        transform: translateY(-5px) translateX(8px) scale(1.02) rotate(1deg);
    }
    50% {
        opacity: 1;
        transform: translateY(0) translateX(-3px) scale(1) rotate(0deg);
    }
    60% {
        opacity: 1;
        transform: translateY(5px) translateX(5px) scale(1.02) rotate(-1deg);
    }
    70% {
        opacity: 1;
        transform: translateY(-8px) translateX(-8px) scale(1.05) rotate(2deg);
    }
    80% {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    }
    90% {
        opacity: 0.8;
        transform: translateY(15px) translateX(-10px) scale(0.9) rotate(-3deg);
    }
    100% {
        opacity: 0;
        transform: translateY(30px) translateX(0) scale(0.7) rotate(5deg);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(251, 176, 64, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(251, 176, 64, 0.5);
    }
    100% {
        box-shadow: 0 10px 30px rgba(251, 176, 64, 0.3);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Removed glow animation - no longer needed */

.gradient-text {
    background: linear-gradient(45deg, #FFE066, #FA7921);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-btn .line-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cta-btn.primary {
    background: var(--line-gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 185, 0, 0.2);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 185, 0, 0.3);
}

/* Introduction Section */
.introduction-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF9FC 0%, #FFF5F0 50%, #FFF0F8 100%);
    position: relative;
    overflow: hidden;
}

.introduction-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 207, 232, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.introduction-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 235, 205, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.intro-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.intro-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    animation: bounceIn 1s ease;
    position: relative;
}

.intro-decoration {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.deco-icon {
    font-size: 2rem;
    animation: sparkle 3s infinite;
}

.deco-icon:nth-child(1) {
    position: absolute;
    left: -100px;
    animation-delay: 0s;
}

.deco-icon:nth-child(2) {
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.deco-icon:nth-child(3) {
    position: absolute;
    right: -100px;
    animation-delay: 2s;
}

.intro-content {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.intro-main-text {
    margin-bottom: 2.5rem;
}

.intro-text-line1,
.intro-text-line2 {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.highlight-gradient {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
    animation: glow 2s ease-in-out infinite;
}

.dream-text {
    color: #FF6B6B;
    font-weight: bold;
    font-size: 1.4rem;
    position: relative;
}

.dream-text::after {
    content: '✨';
    position: absolute;
    right: -25px;
    top: -5px;
    font-size: 0.8rem;
    animation: twinkle 2s infinite;
}

.challenge-text {
    color: #FFD93D;
    font-weight: bold;
    font-size: 1.4rem;
    position: relative;
}

.challenge-text::after {
    content: '🚀';
    position: absolute;
    right: -30px;
    top: -5px;
    font-size: 0.8rem;
    animation: rocket 3s infinite;
}

.intro-cta-wrapper {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 217, 61, 0.1) 100%);
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.intro-image-container {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInScale 1s ease;
}

.intro-feature-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.arrow-decoration {
    margin: 0;
    display: flex;
    justify-content: center;
}

.arrow-icon {
    font-size: 2.5rem;
    color: #FF6B6B;
    display: inline-block;
    animation: bounce 2s infinite;
}

.intro-cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    margin-top: 0;
}

.dream-highlight,
.challenge-highlight {
    font-weight: bold;
    position: relative;
    padding: 0 0.3rem;
}

.dream-highlight {
    background: linear-gradient(180deg, transparent 50%, rgba(255, 107, 107, 0.3) 50%);
}

.challenge-highlight {
    background: linear-gradient(180deg, transparent 50%, rgba(255, 217, 61, 0.3) 50%);
}

.cta-emphasis {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

.intro-visual {
    position: relative;
    height: 100px;
    margin-top: -2rem;
}

.language-bubbles {
    position: relative;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    background: white;
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: bubbleFloat 6s infinite ease-in-out;
    white-space: nowrap;
}

.bubble-1 {
    top: 0;
    left: 10%;
    background: linear-gradient(135deg, #FFE5EC 0%, #FFD4E1 100%);
    animation-delay: 0s;
}

.bubble-2 {
    top: 20px;
    left: 30%;
    background: linear-gradient(135deg, #E8F4FD 0%, #D4E8FC 100%);
    animation-delay: 1s;
}

.bubble-3 {
    top: 0;
    left: 50%;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4CC 100%);
    animation-delay: 2s;
}

.bubble-4 {
    top: 20px;
    right: 30%;
    background: linear-gradient(135deg, #F0E6FF 0%, #E6D4FF 100%);
    animation-delay: 3s;
}

.bubble-5 {
    top: 0;
    right: 15%;
    background: linear-gradient(135deg, #FFE6F0 0%, #FFD4E6 100%);
    animation-delay: 4s;
}

.bubble-6 {
    top: 40px;
    right: 5%;
    background: linear-gradient(135deg, #E6FFF0 0%, #D4FFE6 100%);
    animation-delay: 5s;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-15px) scale(1.05);
    }
    50% {
        transform: translateY(5px) scale(0.95);
    }
    75% {
        transform: translateY(-10px) scale(1.02);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2) rotate(180deg);
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F7 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: float-gentle 20s ease-in-out infinite;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

@media (max-width: 767px) {
    .problem-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-image {
        height: 180px;
    }
    
    .problem-card p {
        font-size: 1.1rem;
        margin: 1rem 0.5rem 0.5rem;
    }
    
    .but-text {
        font-size: 0.85rem;
        padding: 0 0.5rem 1rem;
    }
}

.problem-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.problem-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.problem-card:hover .problem-image img {
    transform: scale(1.05);
}

.problem-card p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 1rem 0.5rem;
    padding: 0 1rem;
}

.but-text {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    padding: 0 1rem 1.5rem;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d2d2d;
    animation: fadeIn 1s ease-out 0.6s both;
}

.highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(255, 215, 0, 0.3) 60%);
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 2px;
}

/* Affinity Section - Warm Connection */
.affinity-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F3 50%, #FAF7F0 100%);
    position: relative;
    overflow: hidden;
}

.affinity-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 181, 167, 0.08) 0%, transparent 50%);
    animation: pulse-glow 6s ease-in-out infinite;
}

.affinity-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(255, 181, 167, 0.1);
}

.quote-mark {
    font-size: 6rem;
    background: linear-gradient(135deg, #FFB5A7 0%, #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: -20px;
}

.affinity-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8B6F47 0%, #FFB5A7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.affinity-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #5A5A5A;
}

.emphasis {
    font-size: 1.3rem !important;
    font-weight: bold;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB5A7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 2rem 0 !important;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Mobile override for emphasis text */
@media (max-width: 768px) {
    .emphasis {
        font-size: 0.95rem !important;
        margin: 1.5rem 0 !important;
    }
}

/* Solution Section - Redesigned */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #FFF5F0 50%, #F5F3FF 100%);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
}

.solution-flow {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    margin: 4rem 0;
    flex-wrap: wrap;
    position: relative;
}

.flow-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.flow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flow-item:hover::before {
    opacity: 1;
}

.flow-item-1 {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.flow-item-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.15);
}

.flow-item-2 {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.flow-item-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
}

.flow-item-3 {
    animation: fadeInUp 0.6s ease 0.6s both;
}

.flow-item-3:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.15);
}

.flow-number-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.flow-number {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 2;
}

.flow-item-2 .flow-number {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.flow-item-3 .flow-number {
    background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.flow-spark {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.5rem;
    animation: sparkle 2s infinite;
    z-index: 3;
}

.flow-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.time-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFE5EC 0%, #FFD4E1 100%);
    color: #EC4899;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.time-badge.optimal {
    background: linear-gradient(135deg, #D4F4E7 0%, #BFF0D6 100%);
    color: #059669;
}

.flow-content {
    text-align: left;
}

.flow-main {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.flow-sub {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.waku-text {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    animation: pulse 2s infinite;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 -0.5rem;
}

.arrow-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    position: relative;
    animation: arrowPulse 2s infinite;
}

.arrow-tip {
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: -10px;
    animation: arrowMove 2s infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.solution-caption {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #6B46C1 0%, #F97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 3rem;
    animation: fadeIn 1s ease 0.8s both;
}

/* Benefit Section - Warm Cards */
.benefit-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.benefit-section .section-title {
    color: #4A4A4A;
}

.benefit-section .section-title::after {
    background: linear-gradient(90deg, #FFB5A7, #FFD700);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.benefit-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFF8F3 0%, #FFFFFF 100%);
    border: 1px solid rgba(255, 181, 167, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 181, 167, 0.15);
}

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

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 181, 167, 0.25);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F3 100%);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFB5A7 0%, #FFD700 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 181, 167, 0.25);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #4A4A4A;
    font-weight: 600;
}

.benefit-card p {
    color: #6B6B6B;
    line-height: 1.8;
    font-size: 1rem;
}

/* Evidence Section - Warm Testimonials */
.evidence-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF8F3 0%, #FAF7F0 100%);
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 181, 167, 0.15);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 181, 167, 0.2);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(255, 181, 167, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 181, 167, 0.25);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.language-tag {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.name {
    font-weight: bold;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.stars i {
    margin: 0 2px;
    text-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

/* Font Awesome icon styling */
.benefit-icon i {
    color: #FFFFFF;
    opacity: 1;
    font-size: 2rem;
}

.arrow i,
.arrow-icon i,
.arrow-tip i {
    font-size: 0.9em;
    vertical-align: middle;
}

.sparkle i,
.deco-icon i,
.flow-spark i {
    color: #FFD700;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.evidence-caption {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* Contents Section - Warm Details */
.contents-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F0 100%);
    position: relative;
}

.contents-section .section-title {
    color: #4A4A4A;
}

.contents-section .section-title::after {
    background: linear-gradient(90deg, #FFB5A7, #FFD700);
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.content-box {
    background: linear-gradient(135deg, #FFF8F3 0%, #FFFFFF 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 181, 167, 0.2);
    box-shadow: 0 8px 25px rgba(255, 181, 167, 0.15);
    transition: all 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 181, 167, 0.25);
}

.content-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8B6F47 0%, #FFB5A7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.content-box ul {
    list-style: none;
}

.content-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5A5A5A;
}

.content-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFB5A7;
    font-weight: bold;
}

.language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.language-item {
    background: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid #FFB5A7;
    color: #8B6F47;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-item:hover {
    background: linear-gradient(135deg, #FFB5A7 0%, #FFD700 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 181, 167, 0.3);
}

.more {
    display: block;
    margin-top: 1rem;
    color: #8B6F47;
    font-style: italic;
}

/* Service Image Section - Warm Feature */
.service-image-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8F3 0%, #FFE5E0 50%, #FAF7F0 100%);
    position: relative;
    overflow: hidden;
}

.service-image-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: float-gentle 20s ease-in-out infinite;
}

.service-image-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 181, 167, 0.25);
    border: 2px solid rgba(255, 181, 167, 0.2);
}

.service-feature-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(139, 111, 71, 0.95) 0%, 
        rgba(139, 111, 71, 0.7) 50%, 
        transparent 100%);
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
}

.service-image-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
    background: linear-gradient(90deg, #FFB5A7, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-image-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

@media (max-width: 767px) {
    .service-image-section {
        padding: 60px 0;
    }
    
    .service-image-wrapper {
        border-radius: 0;
        margin: 0 -20px;
    }
    
    .service-image-overlay {
        padding: 40px 20px 30px;
    }
    
    .service-image-overlay h3 {
        font-size: 1.5rem;
    }
    
    .service-image-overlay p {
        font-size: 0.95rem;
    }
    
    .service-image-overlay br {
        display: none;
    }
}

/* Offer Section - Warm Campaign */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFB5A7 100%);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    pointer-events: none;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 50px;
    background: #FF0000;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    animation: pulse 2s infinite;
    z-index: 1;
}

@media (max-width: 767px) {
    .offer-badge {
        position: static;
        display: inline-block;
        margin: 0 auto 1rem;
        right: auto;
        top: auto;
    }
}

.offer-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

.offer-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.5;
    animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.offer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.arrow {
    font-size: 2rem;
    color: var(--secondary-color);
}

.new-price {
    font-size: 3rem;
    font-weight: bold;
    color: #FF0000;
}

.offer-note {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Narrowing Section - Warm Urgency */
.narrowing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F3 100%);
    position: relative;
}

.narrowing-content {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.limited-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB5A7 100%);
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.limited-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.limited-badge .big {
    font-size: 2rem;
    font-weight: bold;
}

.narrowing-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #4A4A4A;
    font-weight: 600;
}

.alternative-offer {
    background: linear-gradient(135deg, #FAF7F0 0%, #FFF8F3 100%);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 181, 167, 0.2);
    box-shadow: 0 10px 30px rgba(255, 181, 167, 0.15);
}

.alternative-offer p {
    color: #5A5A5A;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.autumn-campaign {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
    border: 2px solid #FFB5A7;
    position: relative;
}

.autumn-campaign::before {
    content: '🍂';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.autumn-campaign h4 {
    background: linear-gradient(135deg, #FF8C00 0%, #FFB5A7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.discount-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF6B6B;
    text-shadow: 0 2px 5px rgba(255, 107, 107, 0.2);
}

.autumn-campaign i {
    color: #FFB5A7;
    margin: 0 0.5rem;
}

/* CTA Section - Warm Call to Action */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FFB5A7 0%, #FFD700 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.cta-title {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.cta-title-line1,
.cta-title-line2 {
    display: block;
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-title-line1 {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .cta-title-line2 {
        display: block;
    }
}

.cta-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out 0.3s both;
}

.cta-btn.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #00C300 0%, #00B300 100%);
    border-radius: 60px;
    box-shadow: 0 15px 40px rgba(0, 180, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn.large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.cta-btn.large:hover::before {
    animation: shine 0.5s ease-in-out;
}

.cta-btn.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 180, 0, 0.4);
}

.cta-btn.large .line-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cta-note {
    color: var(--white);
    margin-top: 1.5rem;
    opacity: 0.9;
}

/* Secondary CTA */
.cta-secondary {
    margin-top: 2rem;
}

.cta-or {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 12px 30px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.cta-btn.secondary i {
    font-size: 1rem;
}

/* Footer - Warm Finish */
.footer {
    background: linear-gradient(135deg, #8B6F47 0%, #6B5B5B 100%);
    color: #FFFFFF;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 181, 167, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFB5A7, transparent);
    animation: shine-line 3s ease-in-out infinite;
}

@keyframes shine-line {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
}

.footer-company {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

.footer-company a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-company a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer-logo-image {
        height: 60px;
    }
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .language-badges {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 400px;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-visual {
        max-width: 300px;
    }
    
    .floating-words {
        display: block;
    }
    
    .floating-words .word {
        font-size: 0.8rem !important;
        padding: 0.2rem 0.5rem;
    }
    
    .floating-words .word:nth-child(n+20) {
        display: none;
    }
    
    .sparkles {
        display: none;
    }
    
    .cta-btn.primary.pulse {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .language-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-visual {
        max-width: 250px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* LINE Registration Styles */
.line-registration {
    text-align: center;
    padding: 1rem 0;
}

.line-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.qr-code-container {
    margin: 2rem 0;
}

.qr-code {
    width: 200px;
    height: 200px;
    border: 3px solid #00B900;
    border-radius: 10px;
    padding: 10px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 185, 0, 0.1);
}

.qr-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.or-text {
    margin: 1.5rem 0;
    font-size: 1rem;
    color: var(--text-light);
    position: relative;
}

.or-text::before,
.or-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #E5E7EB;
}

.or-text::before {
    left: 0;
}

.or-text::after {
    right: 0;
}

.line-add-button {
    display: inline-block;
    margin: 1rem 0;
    transition: transform 0.3s;
}

.line-add-button:hover {
    transform: scale(1.05);
}

.line-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed #E5E7EB;
}

.line-benefits h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #00B900;
}

.line-benefits ul {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.line-benefits li {
    padding: 0.5rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.line-benefits li::before {
    content: '';
    margin-right: 0.5rem;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Introduction Section Responsive */
@media (max-width: 1024px) {
    .intro-decoration {
        display: none;
    }
    
    .intro-content {
        padding: 1.5rem;
    }
    
    .language-bubbles {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        height: auto;
    }
    
    .bubble {
        position: relative;
        animation: none;
    }
}

@media (max-width: 767px) {
    .introduction-section {
        padding: 60px 0;
    }
    
    .intro-badge {
        font-size: 1.5rem;
        padding: 0.6rem 2rem;
    }
    
    .intro-text-line1,
    .intro-text-line2 {
        font-size: 1.1rem;
    }
    
    .highlight-gradient,
    .dream-text,
    .challenge-text {
        font-size: 1.2rem;
    }
    
    .dream-text::after,
    .challenge-text::after {
        display: none;
    }
    
    .intro-cta-text {
        font-size: 1rem;
    }
    
    .cta-emphasis {
        font-size: 1.2rem;
    }
    
    .arrow-icon {
        font-size: 2rem;
    }
    
    .intro-visual {
        margin-top: 1rem;
    }
    
    .bubble {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .introduction-section {
        padding: 40px 0;
    }
    
    .solution-section {
        padding: 60px 0;
    }
    
    .flow-item {
        padding: 2rem 1.5rem;
        min-width: 260px;
    }
    
    .flow-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .flow-item h4 {
        font-size: 1.2rem;
    }
    
    .time-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .flow-main {
        font-size: 0.9rem;
    }
    
    .flow-sub {
        font-size: 0.8rem;
    }
    
    .waku-text {
        font-size: 1rem;
    }
    
    .solution-caption {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .intro-badge {
        font-size: 1.2rem;
        padding: 0.5rem 1.5rem;
    }
    
    .intro-text-line1,
    .intro-text-line2 {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .highlight-gradient,
    .dream-text,
    .challenge-text {
        font-size: 1rem;
    }
    
    .intro-cta-wrapper {
        padding: 1.5rem;
    }
    
    .intro-image-container {
        max-width: 100%;
    }
    
    .intro-cta-text {
        font-size: 0.9rem;
    }
    
    .cta-emphasis {
        font-size: 1.1rem;
    }
    
    .language-bubbles {
        gap: 0.5rem;
    }
    
    .bubble {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Mobile Menu Styles - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    opacity: 0;
}

/* Mobile Fixed Footer CTA - Hidden on Desktop */
.mobile-footer-cta {
    display: none;
}

/* Responsive */
@media (max-width: 767px) {
    /* Hero Section Mobile Fixes */
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .title-line1,
    .title-line2 {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .lala-highlight {
        display: inline-block;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .hero-actions {
        width: 100%;
        padding: 0 20px;
    }
    
    .cta-btn.primary.pulse {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .language-badges {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 1.5rem;
    }
    
    .badge {
        width: 200px;
        text-align: center;
    }
    
    .hero-visual {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 20px;
        margin-bottom: 2rem;
    }
    
    /* Mobile header adjustments */
    .header {
        position: relative;
        top: 0 !important;
        left: 0;
        right: 0;
        background: var(--white) !important;
        z-index: 9999 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .header .container {
        padding: 0.75rem 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 56px;
    }
    
    .logo {
        position: relative;
        display: flex !important;
        align-items: center;
        flex-shrink: 0;
        z-index: 1001;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .logo-image {
        height: 35px;
        width: auto;
    }
    
    .logo-text {
        font-weight: 800;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #F97316 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        letter-spacing: -0.5px;
        display: inline-block !important;
        white-space: nowrap;
        animation: shimmer 3s ease-in-out infinite;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.9rem;
    }
    
    /* Remove underline on mobile for cleaner look */
    .logo-text::after {
        display: none;
    }
    
    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
    
    @keyframes shimmer {
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }
    
    @keyframes underlineExpand {
        0%, 100% {
            transform: scaleX(0);
            opacity: 0;
        }
        50% {
            transform: scaleX(1);
            opacity: 1;
        }
    }
    
    /* Show mobile menu toggle on mobile */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--text-dark);
        transition: all 0.3s;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Mobile navigation menu - initially hidden */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
    }
    
    .mobile-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-nav a {
        display: block;
        padding: 1rem 20px;
        color: var(--text-dark);
        text-decoration: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        font-size: 1rem;
    }
    
    /* Remove CTA from mobile navigation menu */
    .mobile-nav .cta-btn-header {
        display: none;
    }
    
    /* Mobile Fixed Footer CTA Bar */
    .mobile-footer-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1001;
        padding: 0.75rem 1rem;
        animation: slideInUp 0.5s ease;
    }
    
    .mobile-footer-cta-button {
        width: 100%;
        background: linear-gradient(135deg, #00C853 0%, #00B749 100%);
        color: var(--white);
        padding: 1.1rem 1.5rem;
        border: none;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        animation: pulse-glow 2s ease-in-out infinite;
        letter-spacing: 0.5px;
    }
    
    @keyframes pulse-glow {
        0%, 100% {
            box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        50% {
            box-shadow: 0 8px 25px rgba(0, 185, 0, 0.6), 0 3px 10px rgba(0, 0, 0, 0.15);
        }
    }
    
    .mobile-footer-cta-button:active {
        transform: scale(0.98);
        background: linear-gradient(135deg, #00B749 0%, #00A540 100%);
    }
    
    .mobile-footer-cta-button .line-icon {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }
    
    /* Add padding to body to prevent content from being hidden behind footer CTA */
    body {
        padding-bottom: 80px;
    }
    
    /* Hide desktop nav on mobile */
    .nav {
        display: none;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .solution-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .flow-item {
        width: 100%;
        max-width: 400px;
    }
    
    .flow-content {
        text-align: center;
    }
    
    .flow-main {
        font-size: 0.95rem;
    }
    
    .flow-sub {
        font-size: 0.85rem;
    }
    
    .price-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit-grid,
    .contents-grid {
        grid-template-columns: 1fr;
    }
}