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

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #c06c84;
    --accent-color: #f67280;
    --dark: #1a1a2e;
    --light: #ffffff;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --pink-gradient: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ffc3a0 100%);
    --purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --premium-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fafbfc;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-btn-small {
    background: var(--pink-gradient);
    color: var(--light) !important;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.cta-btn-small::after {
    display: none;
}

.cta-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 999;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--light-gray);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #fff5f7 0%, #ffeef8 30%, #fff9f5 60%, #fffaf0 100%);
    padding: 180px 0 120px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.15), transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 114, 128, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(255, 107, 157, 0.12), transparent 60%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--dark);
    letter-spacing: -1.5px;
}

.highlight {
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 107, 157, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--gray);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 700px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 20px 46px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    letter-spacing: 0.2px;
}

.cta-btn-primary {
    background: var(--pink-gradient);
    color: var(--light);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::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;
}

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

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.45);
}

.cta-btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.cta-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
}

.hero-stats {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--pink-gradient);
    border-radius: 2px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 15px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 15px;
    color: var(--gray);
    margin-top: 8px;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-header p {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pink-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 0.03;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 157, 0.2);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
}

/* Videos Section */
.videos-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

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

.video-card {
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    position: relative;
}

.video-card::after {
    content: 'Watch on TikTok →';
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.video-card:hover::after {
    opacity: 1;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 177%;
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    position: absolute;
    font-size: 64px;
    color: white;
    z-index: 2;
    background: rgba(255, 107, 157, 0.9);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding-left: 8px;
}

.video-card:hover .play-icon {
    transform: scale(1.15);
    background: rgba(255, 107, 157, 1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.85));
    padding: 40px 24px 24px;
    color: white;
    backdrop-filter: blur(5px);
}

.video-overlay p {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.4;
    color: white;
}

.tiktok-cta {
    text-align: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: white;
    padding: 18px 38px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.social-btn:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.product-card {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pink-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 0.03;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 157, 0.2);
}

.product-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--premium-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
    letter-spacing: 0.5px;
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f7 100%);
    border-radius: 20px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.product-card p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
}

.product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Lead Magnet Section */
.lead-magnet-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lead-magnet-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.lead-magnet-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
}

.lead-magnet-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    padding: 70px 60px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.lead-magnet-content {
    text-align: center;
}

.lead-magnet-icon {
    font-size: 72px;
    margin-bottom: 24px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.lead-magnet-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.lead-magnet-content > p {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 36px;
    font-weight: 500;
}

.benefit-list {
    text-align: left;
    max-width: 550px;
    margin: 0 auto 48px;
    list-style: none;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-list li {
    padding: 16px 0;
    font-size: 17px;
    color: var(--dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-list li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.benefit-list li:last-child {
    border-bottom: none;
}

.email-form {
    display: flex;
    gap: 12px;
    max-width: 650px;
    margin: 0 auto 24px;
    background: white;
    padding: 8px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

#emailInput {
    flex: 1;
    padding: 20px 28px;
    border: 2px solid transparent;
    border-radius: 35px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: transparent;
}

#emailInput:focus {
    border-color: rgba(255, 107, 157, 0.3);
    background: rgba(255, 107, 157, 0.02);
}

.submit-btn {
    padding: 20px 48px;
    background: var(--premium-gradient);
    color: white;
    border: none;
    border-radius: 35px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.testimonial-card {
    background: white;
    padding: 45px 40px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: rgba(255, 107, 157, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 157, 0.2);
}

.stars {
    font-size: 22px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(255, 193, 7, 0.3));
}

.testimonial-card p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 24px;
    font-style: italic;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
    font-style: normal;
}

/* TikTok CTA Section */
.tiktok-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tiktok-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.15), transparent);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.tiktok-cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1), transparent);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.tiktok-cta-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    padding: 70px 60px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.tiktok-cta-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

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

.tiktok-cta-icon svg {
    color: white;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.tiktok-cta-card h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.tiktok-cta-card p {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tiktok-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--dark);
    color: white;
    padding: 22px 50px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(26, 26, 46, 0.3);
    margin-bottom: 50px;
    border: 2px solid transparent;
}

.tiktok-cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.5);
    border-color: var(--primary-color);
}

.tiktok-cta-button svg {
    width: 28px;
    height: 28px;
}

.tiktok-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.tiktok-stat-number {
    font-size: 38px;
    font-weight: 800;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.tiktok-stat-label {
    font-size: 15px;
    color: var(--gray);
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 0 35px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1), transparent);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 18px;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    border-color: var(--primary-color);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 60px 50px;
    border-radius: 35px;
    max-width: 550px;
    text-align: center;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-icon {
    font-size: 80px;
    margin-bottom: 24px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.modal-content h3 {
    font-size: 32px;
    margin-bottom: 18px;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.8;
    font-size: 17px;
}

.modal-btn {
    padding: 18px 48px;
    background: var(--premium-gradient);
    color: white;
    border: none;
    border-radius: 35px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.45);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .section-header p {
        font-size: 17px;
    }

    section {
        padding: 80px 0;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: 100%;
    }
    
    .tiktok-cta-card {
        padding: 50px 35px;
    }
    
    .tiktok-cta-card h2 {
        font-size: 32px;
    }
    
    .tiktok-cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .tiktok-stats {
        gap: 40px;
    }

    .lead-magnet-card {
        padding: 50px 35px;
    }

    .lead-magnet-content h2 {
        font-size: 32px;
    }

    .benefit-list {
        padding: 24px;
    }

    .email-form {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 20px;
        padding: 50px 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 16px 36px;
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 16px;
    }

    .feature-card,
    .product-card,
    .testimonial-card {
        padding: 35px 25px;
    }

    .lead-magnet-content h2 {
        font-size: 26px;
    }

    .modal-content h3 {
        font-size: 26px;
    }

    .modal-icon {
        font-size: 64px;
    }
    
    .tiktok-cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .tiktok-cta-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .tiktok-cta-card h2 {
        font-size: 26px;
    }
    
    .tiktok-cta-card p {
        font-size: 16px;
    }
    
    .tiktok-stats {
        flex-direction: column;
        gap: 30px;
    }
}
