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

:root {
    --primary-color: #3D15AF;
    --primary-dark: #2A0F7A;
    --primary-light: #6B47FF;
    --secondary-color: #FF6B35;
    --accent-color: #00D9FF;
    --text-primary: #1a0f4d;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f3ff;
    --bg-dark: #1a0f4d;
    --border-color: #e0d7ff;
    --success-color: #10b981;
    --gradient-primary: linear-gradient(135deg, #3D15AF 0%, #6B47FF 100%);
    --gradient-secondary: linear-gradient(135deg, #2A0F7A 0%, #3D15AF 100%);
    --gradient-hero: linear-gradient(135deg, #3D15AF 0%, #6B47FF 50%, #8B6FFF 100%);
    --gradient-accent: linear-gradient(135deg, #3D15AF 0%, #FF6B35 100%);
    --gradient-card: linear-gradient(135deg, rgba(61, 21, 175, 0.05) 0%, rgba(107, 71, 255, 0.05) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(61, 21, 175, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(61, 21, 175, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(61, 21, 175, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(61, 21, 175, 0.4);
    --shadow-purple: 0 0 40px rgba(61, 21, 175, 0.3);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.8); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(61, 21, 175, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 71, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Navigation */
.navigation {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(61, 21, 175, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(61, 21, 175, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-image {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    background: var(--gradient-primary);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 800;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
    padding: 8px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

/* Hero Section */
.hero-section {
    padding: 120px 0 140px;
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    animation: float 25s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 10%;
    animation: float 30s ease-in-out infinite;
    animation-delay: 5s;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slide-up 0.8s ease-out;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 56px;
    opacity: 0.98;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slide-up 0.8s ease-out 0.2s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    animation: slide-up 0.8s ease-out 0.4s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-bounce);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 15px;
    opacity: 0.95;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slide-up 0.8s ease-out 0.6s backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    font-size: 17px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(61, 21, 175, 0.4);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(61, 21, 175, 0.6);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 20px 56px;
    font-size: 20px;
    box-shadow: 0 10px 40px rgba(61, 21, 175, 0.5);
}

.btn-large:hover {
    box-shadow: 0 15px 50px rgba(61, 21, 175, 0.7);
}

/* Section Styles */
.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 72px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, white 100%);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.step-card {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(61, 21, 175, 0.12);
    transition: var(--transition-bounce);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(61, 21, 175, 0.25);
    border-color: var(--primary-light);
}

.step-number {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(61, 21, 175, 0.3);
}

.step-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.step-card:nth-child(2) .step-icon {
    animation-delay: 0.5s;
}

.step-card:nth-child(3) .step-icon {
    animation-delay: 1s;
}

.step-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px;
    background: var(--gradient-card);
    border-radius: 20px;
    transition: var(--transition-bounce);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(61, 21, 175, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(61, 21, 175, 0.2);
    border-color: var(--primary-color);
    background: white;
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 24px;
    background: var(--gradient-primary);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(61, 21, 175, 0.3);
    transition: var(--transition-bounce);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    animation: pulse-glow 2s infinite;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* Viral Triggers Section */
.viral-triggers-section {
    padding: 120px 0;
    background: linear-gradient(180deg, white 0%, var(--bg-secondary) 100%);
}

.triggers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 64px;
}

.trigger-box {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(61, 21, 175, 0.15);
    border: 2px solid var(--border-color);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.trigger-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.trigger-box:hover::before {
    opacity: 0.05;
}

.trigger-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(61, 21, 175, 0.25);
    border-color: var(--primary-color);
}

.trigger-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.trigger-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.trigger-list li {
    padding: 16px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    line-height: 1.7;
    transition: var(--transition-base);
}

.trigger-list li:hover {
    color: var(--text-primary);
    padding-left: 44px;
}

.trigger-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 900;
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
}

.cta-box {
    text-align: center;
    padding: 64px 48px;
    background: var(--gradient-accent);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
    border-radius: 32px;
    color: white;
    box-shadow: 0 20px 60px rgba(61, 21, 175, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.cta-text {
    font-size: 24px;
    margin-bottom: 32px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Success Stories Section */
.success-stories-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, white 100%);
}

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

.success-card {
    text-align: center;
    padding: 56px 40px;
    background: white;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(61, 21, 175, 0.1);
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.success-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(61, 21, 175, 0.3);
}

.success-stat {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-primary);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    animation: gradient-shift 5s ease infinite;
    text-shadow: 0 4px 20px rgba(61, 21, 175, 0.2);
}

.success-label {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite reverse;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

.final-cta-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.final-cta-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.98;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.final-cta-section .btn-primary {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0d2e 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 56px;
    margin-bottom: 56px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

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

.footer-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    display: inline-block;
}

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

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

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

.footer-email {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 15px;
}

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

/* Contact Page */
.contact-section {
    padding: 140px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 56px;
    line-height: 1.8;
}

.contact-email-box {
    background: white;
    padding: 64px 56px;
    border-radius: 32px;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(61, 21, 175, 0.15);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.contact-email-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.contact-email-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(61, 21, 175, 0.25);
    border-color: var(--primary-color);
}

.contact-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.contact-email-link {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
}

.contact-email-link:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Legal Pages (Privacy and Terms) */
.legal-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, white 50%, var(--bg-secondary) 100%);
}

.legal-header {
    text-align: center;
    margin-bottom: 80px;
}

.legal-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: var(--text-secondary);
    font-size: 17px;
    font-weight: 600;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 64px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(61, 21, 175, 0.1);
    border: 2px solid var(--border-color);
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 56px;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-left: 20px;
}

.legal-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.legal-content ul {
    margin-left: 28px;
    margin-bottom: 20px;
}

.legal-content li {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 16px;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Blog Page */
.blog-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, white 100%);
}

.blog-header {
    text-align: center;
    margin-bottom: 80px;
}

.blog-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-bounce);
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(61, 21, 175, 0.1);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(61, 21, 175, 0.25);
    border-color: var(--primary-color);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    overflow: hidden;
}

.blog-card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.blog-card-content {
    padding: 36px;
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
    background: linear-gradient(to right, var(--primary-color), var(--primary-color)) no-repeat;
    background-size: 0% 2px;
    background-position: left bottom;
}

.blog-card-title a:hover {
    background-size: 100% 2px;
}

.blog-card:hover .blog-card-title a {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.blog-card-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .triggers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 100px;
    }

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

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

    .hero-stats {
        gap: 24px;
    }

    .stat-item {
        padding: 20px 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 20px;
        font-size: 15px;
    }

    .logo {
        gap: 10px;
    }

    .logo-image {
        height: 38px;
    }

    .logo-text {
        font-size: 24px;
    }

    .final-cta-title {
        font-size: 40px;
    }

    .final-cta-subtitle {
        font-size: 18px;
    }

    .contact-title,
    .legal-title,
    .blog-title {
        font-size: 40px;
    }

    .contact-email-link {
        font-size: 22px;
        word-break: break-all;
    }

    .contact-email-box {
        padding: 48px 32px;
    }

    .legal-content {
        padding: 40px 32px;
    }

    .legal-content h2 {
        font-size: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .btn-large {
        padding: 16px 40px;
        font-size: 18px;
    }

    .step-card,
    .feature-card,
    .trigger-box {
        padding: 32px 24px;
    }

    .cta-box {
        padding: 48px 32px;
    }

    .footer-content {
        gap: 40px;
    }
}

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

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

    .section-title {
        font-size: 28px;
    }

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .logo {
        gap: 8px;
    }

    .logo-image {
        height: 32px;
    }

    .logo-text {
        font-size: 20px;
    }

    .step-icon,
    .feature-icon {
        font-size: 48px;
    }

    .contact-email-box {
        padding: 32px 24px;
    }

    .legal-content {
        padding: 32px 24px;
    }
}
