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

:root {
    /* Sushi Daily Brand Colors */
    --primary-color: #1E3A5F; /* Indigo Blue - Primary */
    --primary-dark: #152A47; /* Darker Indigo */
    --primary-light: #2E4A8C; /* Lighter Indigo */
    --accent-color: #FF8C94; /* Salmon Pink - Accent */
    --accent-dark: #FF6B75; /* Darker Salmon */
    --background-beige: #F5F5DC; /* Beige Background */
    --background-cream: #FEF9E7; /* Cream */
    --secondary-color: #4A90A4; /* Complementary Blue */
    --dark-color: #1E3A5F;
    --light-color: #F5F5DC;
    --white: #ffffff;
    --text-dark: #1E3A5F;
    --text-light: #6B7A8F;
    --success-color: #2E8B57; /* Sea Green */
    --error-color: #DC3545;
    --shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    --shadow-hover: 0 15px 40px rgba(30, 58, 95, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--background-beige) 0%, var(--background-cream) 50%, #E8E4D3 100%);
    min-height: 100vh;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(30, 58, 95, 0.05);
    border-radius: 50%;
    animation: wave-animation 20s infinite;
}

.wave1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.wave2 {
    top: -40%;
    left: -40%;
    animation-delay: 5s;
    background: rgba(255, 140, 148, 0.08);
}

.wave3 {
    top: -30%;
    left: -30%;
    animation-delay: 10s;
    background: rgba(30, 58, 95, 0.03);
}

@keyframes wave-animation {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-50px, -50px) rotate(180deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0 20px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.logo i {
    font-size: 2.5rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 32px 0 48px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 24px;
    padding: 64px 40px;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(30, 58, 95, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 148, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: 0 4px 15px rgba(255, 140, 148, 0.3);
    animation: fadeInDown 0.6s ease-out 0.4s both;
}

.hero-badge i {
    font-size: 0.9rem;
    animation: sparkle 2s ease-in-out infinite;
}

.unlock-icon {
    position: relative;
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 32px;
    animation: bounce 2s infinite;
    filter: drop-shadow(2px 2px 8px rgba(255, 140, 148, 0.4));
    z-index: 1;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 140, 148, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    z-index: -1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.7;
    padding: 0 16px;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 0.6s ease-out 1.2s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.1);
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.hero-feature i {
    color: var(--success-color);
    font-size: 1rem;
}

/* Email Section */
.email-section {
    margin: 48px 0 64px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 24px;
    padding: 52px 40px 40px;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(20px);
    max-width: 540px;
    margin: 0 auto;
    border: 2px solid rgba(30, 58, 95, 0.08);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.25);
    animation: scaleIn 0.5s ease-out;
}

.form-header h3 {
    font-size: 1.9rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.input-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding-left: 4px;
}

.input-label .optional {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    color: var(--text-light);
    font-size: 1.1rem;
    z-index: 1;
    transition: color 0.3s ease;
}

.input-wrapper input {
    width: 100%;
    padding: 18px 20px 18px 56px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.05);
}

.input-wrapper input:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.08);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1), 0 4px 12px rgba(30, 58, 95, 0.1);
    transform: translateY(-1px);
}

.input-wrapper:has(input:focus) .input-icon {
    color: var(--primary-color);
}

.input-wrapper input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 140, 148, 0.4), 0 0 0 0 rgba(255, 140, 148, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 12px;
    width: 100%;
}

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

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 148, 0.5), 0 0 0 4px rgba(255, 140, 148, 0.2);
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 140, 148, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover .btn-shine {
    left: 100%;
}

.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-message {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
    line-height: 1.5;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    display: block;
}

.form-footer {
    margin-top: 28px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(30, 58, 95, 0.1);
}

.form-footer p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits {
    margin: 64px 0 80px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.benefits h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 0;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(30, 58, 95, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.2);
    border-color: rgba(255, 140, 148, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.benefit-card:hover .benefit-icon::after {
    opacity: 0.3;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Google Review Section */
.review-section {
    margin: 64px 0 80px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.review-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 220, 0.95) 100%);
    border-radius: 20px;
    padding: 48px 32px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border: 2px solid rgba(30, 58, 95, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-container:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.review-icon {
    font-size: 4rem;
    color: #4285F4;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.review-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.review-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.8;
    line-height: 1.5;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #357AE8 0%, #2E8B47 100%);
}

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

.review-btn i {
    font-size: 1.2rem;
}

.review-btn i.fa-star {
    color: #FFC107;
}

/* Social Media Section */
.social-section {
    margin: 64px 0 80px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.social-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.social-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.5;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    min-width: 140px;
    justify-content: center;
    line-height: 1.4;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: var(--white);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: var(--white);
}

.social-link.youtube:hover {
    background: #ff0000;
    color: var(--white);
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: var(--white);
}

.social-link.tiktok:hover {
    background: #000000;
    color: var(--white);
}

.social-link.threads:hover {
    background: #000000;
    color: var(--white);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 48px 0 32px;
    margin-top: 32px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 1s both;
    opacity: 0.8;
}

.footer p {
    margin: 8px 0;
    line-height: 1.6;
}

.footer-links {
    margin-top: 16px;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    animation: scaleIn 0.3s ease 0.2s both;
    filter: drop-shadow(2px 2px 6px rgba(255, 140, 148, 0.3));
}

.modal-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.modal-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.7;
}

.modal-subtext {
    font-size: 0.95rem !important;
    margin-top: 16px;
    margin-bottom: 0;
}

.modal-btn {
    margin-top: 32px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 148, 0.4);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 148, 0.5);
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
}

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

@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 slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

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

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

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

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

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 32px 20px;
    }

    .header {
        padding: 32px 0 16px;
        margin-bottom: 16px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 24px 0 40px;
        margin-bottom: 24px;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .title-line,
    .title-highlight {
        display: block;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 8px;
    }

    .hero-features {
        gap: 12px;
        margin-top: 28px;
    }

    .hero-feature {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 24px;
    }

    .unlock-icon {
        font-size: 4rem;
        margin-bottom: 24px;
    }

    .icon-glow {
        width: 100px;
        height: 100px;
    }

    .email-section {
        margin: 40px 0 56px;
    }

    .form-container {
        padding: 40px 24px;
    }

    .form-header {
        margin-bottom: 28px;
    }

    .form-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .input-label {
        font-size: 0.9rem;
    }

    .benefits {
        margin: 56px 0 64px;
    }

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

    .benefits-grid {
        gap: 20px;
    }

    .benefit-card {
        padding: 28px 20px;
    }

    .review-section {
        margin: 56px 0 64px;
    }

    .review-container {
        padding: 40px 24px;
    }

    .review-icon {
        font-size: 3.5rem;
        margin-bottom: 16px;
    }

    .review-section h3 {
        font-size: 1.75rem;
    }

    .review-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .review-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .social-section {
        margin: 56px 0 64px;
    }

    .social-subtitle {
        margin-bottom: 32px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .social-link {
        width: 100%;
        max-width: 300px;
    }

    .unlock-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .footer {
        padding: 40px 0 24px;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 24px 16px;
    }

    .header {
        padding: 24px 0 12px;
    }

    .hero {
        padding: 20px 0 32px;
    }

    .hero-content {
        padding: 32px 20px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .title-line,
    .title-highlight {
        display: block;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
    }

    .hero-feature {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .unlock-icon {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    .icon-glow {
        width: 90px;
        height: 90px;
    }

    .email-section {
        margin: 32px 0 48px;
    }

    .form-container {
        padding: 32px 20px;
    }

    .form-header {
        margin-bottom: 24px;
    }

    .form-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .form-header h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .input-label {
        font-size: 0.85rem;
    }

    .form-footer {
        margin-top: 24px;
        padding-top: 20px;
    }

    .form-footer p {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .email-form {
        gap: 20px;
    }

    .benefits {
        margin: 48px 0 56px;
    }

    .benefits h3 {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }

    .benefit-card {
        padding: 24px 16px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .review-section {
        margin: 48px 0 56px;
    }

    .review-container {
        padding: 32px 20px;
    }

    .review-icon {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .review-section h3 {
        font-size: 1.5rem;
    }

    .review-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .review-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        flex-direction: column;
        gap: 8px;
    }

    .social-section {
        margin: 48px 0 56px;
    }

    .social-section h3 {
        font-size: 1.75rem;
    }

    .social-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .footer {
        padding: 32px 0 20px;
    }
}

