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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: #3b82f6;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
    font-weight: 600;
    border-radius: 10px;
    border-width: 2px;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

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

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.nav {
    padding: 1rem 0;
}

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

.nav-brand {
    margin-left: 20px;
}

.nav-brand a {
    text-decoration: none;
}

.nav-brand h2 {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.free-trial-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 1.5rem 0;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.trial-icon {
    font-size: 1.1rem;
}

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

@keyframes glow {
    from {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    to {
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Modern Automation Visual */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.automation-visual {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-150px);
}

.orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* AI Center Hub */
.ai-center {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.ai-icon {
    color: white;
    font-size: 40px;
}

.ai-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(59, 130, 246, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Platform Orbits */
.platform-orbit {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.orbit-1 {
    width: 160px;
    height: 160px;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 240px;
    height: 240px;
    animation: rotate 25s linear infinite reverse;
}

.orbit-3 {
    width: 320px;
    height: 320px;
    animation: rotate 30s linear infinite;
}

.orbit-4 {
    width: 400px;
    height: 400px;
    animation: rotate 35s linear infinite reverse;
}

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

/* Platform Icons */
.platform-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    top: -28px;
    left: calc(50% - 28px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: counter-rotate 20s linear infinite;
}

.orbit-2 .platform-icon {
    animation: counter-rotate 25s linear infinite;
}

.orbit-3 .platform-icon {
    animation: counter-rotate 30s linear infinite;
}

.orbit-4 .platform-icon {
    animation: counter-rotate 35s linear infinite;
}

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

.platform-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.platform-icon.facebook {
    background: #1877f2;
}

.platform-icon.twitter {
    background: #1da1f2;
}

.platform-icon.linkedin {
    background: #0077b5;
}

/* Connection Lines */
.connection-line {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.6), transparent);
    transform-origin: bottom;
    opacity: 0.6;
}

.line-1 {
    height: 80px;
    top: 50px;
    left: calc(50% - 1px);
    transform: rotate(0deg);
}

.line-2 {
    height: 120px;
    top: 40px;
    left: calc(50% - 1px);
    transform: rotate(90deg);
}

.line-3 {
    height: 160px;
    top: 20px;
    left: calc(50% - 1px);
    transform: rotate(180deg);
}

.line-4 {
    height: 200px;
    top: 0px;
    left: calc(50% - 1px);
    transform: rotate(270deg);
}

/* AI Greeting */
.ai-greeting {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.greeting-bubble {
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    margin-bottom: 8px;
    position: relative;
}

.greeting-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.greeting-subtext {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Modern Buttons */
.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.modern-btn i {
    font-size: 16px;
}

.btn-primary.modern-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary.modern-btn:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline.modern-btn {
    border-color: #667eea;
    color: #667eea;
}

.btn-outline.modern-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    background: white;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: #f8fafc;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.step h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-featured {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b7280;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 4px;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.price-note {
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
    margin-bottom: 2rem;
}

.free-trial-note {
    background: #d1fae5;
    color: #065f46;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
    border: 1px solid #10b981;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
}

.pricing-features i {
    color: #10b981;
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-title {
    font-size: 14px;
    color: #6b7280;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1f2937 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: #e5e7eb;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem !important;
    font-size: 14px !important;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #3b82f6;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active,
    .nav-actions.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }
    
    .nav-actions {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        border-top: 1px solid #e5e7eb;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .automation-visual {
        width: 300px;
        height: 300px;
    }
    
    .orbit-container {
        width: 250px;
        height: 250px;
    }
    
    .orbit-1 {
        width: 100px;
        height: 100px;
    }
    
    .orbit-2 {
        width: 150px;
        height: 150px;
    }
    
    .orbit-3 {
        width: 200px;
        height: 200px;
    }
    
    .orbit-4 {
        width: 250px;
        height: 250px;
    }
    
    .platform-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: -18px;
        left: calc(50% - 18px);
    }
    
    .ai-center {
        width: 60px;
        height: 60px;
    }
    
    .ai-icon {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps,
    .pricing-cards,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

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

.hero-text,
.feature-card,
.step,
.pricing-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Blog Styles */
.blog-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 8px 20px;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.featured-articles,
.all-articles {
    background: white;
    padding: 80px 0;
}

.featured-grid,
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.featured-article,
.article-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-article:hover,
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    overflow: hidden;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    font-size: 3rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.placeholder-image.featured {
    font-size: 4rem;
}

.placeholder-image i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.article-card:hover .placeholder-image i,
.featured-article:hover .placeholder-image i {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #3b82f6;
}

.article-content {
    padding: 1.25rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 14px;
    color: #6b7280;
}

.article-content h3 {
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-size: 1.25rem;
    line-height: 1.3;
}

.article-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-content h3 a:hover {
    color: #3b82f6;
}

.article-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.read-more,
.read-more-btn {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.read-more:hover,
.read-more-btn:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}

.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.coming-soon:hover {
    transform: none;
    color: #3b82f6;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

.articles-count {
    color: #6b7280;
    margin-bottom: 1rem;
}

.newsletter-signup {
    background: #f8fafc;
    padding: 60px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: #4b5563;
    font-size: 1.125rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.email-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
}

.email-form input::placeholder {
    color: #9ca3af;
}

.newsletter-note {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .blog-categories {
        justify-content: center;
    }
}

/* Additional Blog Styles */
.blog-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.blog-cta p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

.articles-count {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.coming-soon {
    background: #6b7280 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.coming-soon:hover {
    background: #6b7280 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Blog responsive improvements */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .blog-header p {
        font-size: 1rem;
    }
    
    .featured-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-cta {
        padding: 1.5rem;
    }
    
    .blog-cta p {
        font-size: 1rem;
    }
}

/* Article Page Styles */
.breadcrumb {
    background: #f8fafc;
    padding: 100px 0 20px;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    color: #6b7280;
    font-size: 14px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #9ca3af;
}

.breadcrumb-list a {
    color: #3b82f6;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list .current {
    color: #1f2937;
    font-weight: 500;
}

.article-header {
    background: #f8fafc;
    padding: 40px 0 60px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.article-header .article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 14px;
    color: #6b7280;
    flex-wrap: wrap;
}

.article-header .category {
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-excerpt {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.author-title {
    color: #6b7280;
    font-size: 13px;
}

.article-content {
    background: white;
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-body {
    max-width: none;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 2.5rem 0 1.5rem;
    scroll-margin-top: 100px;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem;
    scroll-margin-top: 100px;
}

.article-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.5rem 0 1rem;
}

.article-body p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: #1f2937;
    font-weight: 600;
}

.article-body blockquote {
    border-left: 4px solid #3b82f6;
    background: #f8fafc;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.article-body blockquote p {
    font-style: italic;
    color: #374151;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.tool-comparison {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.tool-features h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tool-features ul {
    margin-bottom: 1rem;
}

.pricing-info {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 1rem;
}

.warning-box {
    background: #fef3cd;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #f59e0b;
}

.warning-box h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.warning-box p {
    color: #78350f;
    margin-bottom: 0;
}

.example-box {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #059669;
}

.example-box h4 {
    color: #047857;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.example-box p {
    color: #065f46;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-section .btn {
    background: white;
    color: #3b82f6;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-section .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Sidebar Styles */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-section h4 {
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    padding: 0.25rem 0;
    display: block;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.toc-list a:hover {
    color: #3b82f6;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.related-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-article h5 {
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.related-article h5 a {
    color: #1f2937;
    text-decoration: none;
}

.related-article h5 a:hover {
    color: #3b82f6;
}

.related-article .read-time {
    font-size: 12px;
    color: #6b7280;
}

.cta-widget {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

.cta-widget h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-header .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-excerpt {
        font-size: 1.1rem;
    }
    
    .content-wrapper {
        padding: 0 16px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-comparison,
    .warning-box,
    .example-box {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.terms-page {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-header h1 i {
    color: #3b82f6;
}

.subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.content-section {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.75rem;
}

.content-section h2 i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.content-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.5rem 0 1rem 0;
}

.section-content {
    color: #4b5563;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.section-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.section-content strong {
    color: #1f2937;
    font-weight: 600;
}

.definition-list dt {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.definition-list dd {
    margin-bottom: 1rem;
    margin-left: 1.5rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.contact-info {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.contact-info p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.contact-email {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-email:hover {
    text-decoration: underline;
}

/* Plan Cards for Refunds Page */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plan-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.plan-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.plan-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-content p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.plan-content strong {
    color: #1f2937;
    font-weight: 600;
}

/* Contact Section for Refunds Page */
.contact-section {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    text-align: center;
}

.contact-section h2 {
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-section p {
    color: #4b5563;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.25rem;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-text {
    color: #4b5563;
    font-size: 0.9rem;
    margin: 0;
}

/* Update footer links to work with legal pages */
.nav-brand a {
    text-decoration: none;
}

.nav-brand a h2 {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Calendly Popup Customizations */
.calendly-overlay {
    z-index: 9999 !important;
}

.calendly-popup {
    max-width: 500px !important;
    max-height: 600px !important;
    width: 90vw !important;
    height: 85vh !important;
    margin: auto !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.calendly-popup .calendly-inline-widget {
    height: 100% !important;
    min-height: auto !important;
    overflow: hidden !important;
}

.calendly-popup iframe {
    height: 100% !important;
    border-radius: 12px !important;
}

.calendly-close-overlay {
    background: rgba(0, 0, 0, 0.7) !important;
}

@media (max-width: 768px) {
    .calendly-popup {
        max-width: 95vw !important;
        max-height: 80vh !important;
        width: 95vw !important;
        height: 80vh !important;
    }
}

/* How It Works Page Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.header-content h1 i {
    color: #3b82f6;
}

.subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.automation-features {
    padding: 80px 0;
    background: white;
}

.how-it-works .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.feature-showcase:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.feature-showcase:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.feature-showcase:nth-child(even) .feature-visual {
    order: 2;
}

.feature-showcase:nth-child(even) .feature-info {
    order: 1;
}

.feature-showcase.coming-soon {
    opacity: 0.7;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #1c1c1e 0%, #2c2c2e 100%);
    border-radius: 40px;
    padding: 4px;
    margin: 0 auto;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* iPhone Dynamic Island */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* iPhone Screen */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #000;
    border-radius: 36px;
    z-index: 1;
}

.mockup-header {
    background: #fff;
    padding: 40px 16px 12px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    text-align: center;
    position: relative;
    z-index: 2;
    border-radius: 36px 36px 0 0;
    margin-top: 4px;
}

.mockup-content {
    background: #fff;
    height: calc(100% - 90px);
    overflow: hidden;
    position: relative;
    z-index: 2;
    border-radius: 0 0 36px 36px;
}

/* Comment Mockup Styles */
.comment-thread {
    padding: 16px;
}

.comment-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.comment-item.reply {
    margin-left: 20px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.user-avatar.brand {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.comment-content {
    flex: 1;
}

.username {
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 4px;
}

.time {
    font-weight: 400;
    color: #6b7280;
    font-size: 12px;
}

.comment-text {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
    line-height: 1.4;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reply-btn {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
}

.heart-icon {
    font-size: 16px;
}

/* Story Mockup Styles */
.story-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 8px);
    border-radius: 36px;
    margin: 4px;
    position: relative;
    z-index: 2;
}

.story-reaction-popup {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.reaction-emoji {
    font-size: 48px;
    margin-bottom: 12px;
}

.reaction-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.reaction-subtitle {
    color: #d1d5db;
    font-size: 14px;
}

.story-reply-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
}

.story-actions {
    display: flex;
    gap: 12px;
}

.story-actions i {
    color: #6b7280;
    font-size: 16px;
}

/* Live Mockup Styles */
.live-header {
    background: #1f2937;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 16px 12px;
    position: relative;
    z-index: 2;
    border-radius: 36px 36px 0 0;
    margin-top: 4px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ef4444;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.live-dot {
    color: white;
    animation: pulse 2s infinite;
}

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

.live-content {
    background: linear-gradient(180deg, #1f2937 0%, #374151 100%);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: calc(100% - 90px);
    border-radius: 0 0 36px 36px;
    position: relative;
    z-index: 2;
}

/* Video Preview in Live */
.live-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    z-index: 1;
}

.live-video-preview {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.video-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clothing-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 24px;
    opacity: 0.8;
}

.live-overlay-elements {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}

.viewer-count {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.heart-animation {
    color: #ef4444;
    font-size: 16px;
    animation: heartFloat 2s infinite;
}

@keyframes heartFloat {
    0% { transform: translateY(0px) scale(1); opacity: 1; }
    100% { transform: translateY(-30px) scale(0.8); opacity: 0; }
}

.live-comments {
    margin-bottom: 20px;
}

.live-comment {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px 12px;
    border-radius: 16px;
    margin-bottom: 8px;
    font-size: 14px;
}

.live-comment .username {
    color: #fbbf24;
    font-weight: 600;
    margin-right: 8px;
}

.live-comment-input {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.live-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    outline: none;
}

.live-input::placeholder {
    color: #d1d5db;
}

/* DM Mockup Styles */
.dm-content {
    padding: 50px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 8px);
    border-radius: 36px;
    margin: 4px;
    position: relative;
    z-index: 2;
    background: #fff;
}

.dm-conversation {
    flex: 1;
    margin-bottom: 20px;
}

.dm-message {
    margin-bottom: 12px;
    display: flex;
}

.dm-message.received {
    justify-content: flex-start;
}

.dm-message.sent {
    justify-content: flex-end;
}

.message-text {
    background: #e5e7eb;
    padding: 10px 16px;
    border-radius: 18px;
    max-width: 80%;
    font-size: 14px;
    color: #1f2937;
}

.dm-message.sent .message-text {
    background: #3b82f6;
    color: white;
}

.dm-input-area {
    background: #f3f4f6;
    border-radius: 20px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dm-input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 14px;
    outline: none;
}

.dm-actions {
    display: flex;
    gap: 12px;
}

.dm-actions i {
    color: #6b7280;
    font-size: 16px;
}

/* Follow Mockup Styles */
.follow-content {
    padding: 50px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 8px);
    border-radius: 36px;
    margin: 4px;
    position: relative;
    z-index: 2;
    background: #fff;
}

/* Retrigger Mockup Styles */
.retrigger-content {
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 36px;
    margin: 4px;
    position: relative;
    z-index: 2;
}

.retrigger-diagram {
    text-align: center;
}

.diagram-icon {
    font-size: 48px;
    color: #3b82f6;
    margin-bottom: 16px;
}

.diagram-text {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.diagram-arrows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.arrow-line {
    width: 40px;
    height: 2px;
    background: #3b82f6;
    position: relative;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #3b82f6;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* AI Mockup Styles */
.ai-content {
    padding: 60px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 36px;
    margin: 4px;
    position: relative;
    z-index: 2;
}

.ai-branding {
    text-align: center;
}

.ai-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.sparkle {
    font-size: 24px;
}

/* Email Mockup Styles */
.email-content {
    padding: 50px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 8px);
    border-radius: 36px;
    margin: 4px;
    position: relative;
    z-index: 2;
    background: #fff;
}

/* Feature Info Styles */
.feature-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.coming-soon-badge {
    background: #fbbf24;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-info p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 14px;
}

.benefit-item i {
    color: #10b981;
    font-size: 16px;
    width: 16px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-showcase:nth-child(even) .feature-visual {
        order: 1;
    }
    
    .feature-showcase:nth-child(even) .feature-info {
        order: 2;
    }
    
    .phone-mockup {
        width: 240px;
        height: 430px;
    }
    
    .phone-mockup::before {
        width: 80px;
        height: 24px;
        top: 6px;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .automation-features {
        padding: 60px 0;
    }
    
    .how-it-works .features-grid {
        gap: 3rem;
    }
    
    .feature-showcase {
        padding: 1.5rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 360px;
    }
    
    .phone-mockup::before {
        width: 70px;
        height: 20px;
        top: 5px;
    }
    
    .feature-info h3 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}