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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-logo h2 {
    color: #2563eb;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.language-selector select {
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    min-width: 160px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23667eea' viewBox='0 0 16 16'%3e%3cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 14px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.language-selector select:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.language-selector select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Language selector always visible - desktop and mobile */
.language-selector {
    position: relative;
    z-index: 1001;
}

/* Mobile optimization - keep selector visible outside hamburger menu */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        position: relative;
    }
    
    .language-selector {
        position: absolute;
        right: 60px; /* Space for hamburger menu */
        top: 50%;
        transform: translateY(-50%);
    }
    
    .language-selector select {
        min-width: 120px;
        padding: 8px 12px;
        font-size: 0.8rem;
        border: 1px solid #e5e7eb;
    }
}

/* Support for RTL languages like Arabic */
[lang="ar"] {
    direction: rtl;
    text-align: right;
}

[lang="ar"] .nav-menu {
    direction: ltr;
}

/* Enhanced RTL support for Arabic */
[lang="ar"] .hero-content {
    text-align: right;
}

[lang="ar"] .step-content {
    text-align: right;
}

[lang="ar"] .benefit {
    text-align: right;
}

[lang="ar"] .footer-content {
    text-align: right;
}

[lang="ar"] .nav-link {
    text-align: center;
}

[lang="ar"] .cta-button {
    text-align: center;
}

[lang="ar"] .trust-badges {
    direction: ltr;
}

/* RTL support for CV templates */
[lang="ar"] .template-preview {
    direction: ltr; /* Keep layout LTR to preserve design */
}

[lang="ar"] .template-preview .template-text,
[lang="ar"] .template-preview text {
    text-anchor: end;
    direction: rtl;
}

[lang="ar"] .template-preview .template-header h3,
[lang="ar"] .template-preview .template-header p {
    text-align: right;
}

[lang="ar"] .template-preview .template-section h4,
[lang="ar"] .template-preview .template-section p {
    text-align: right;
}

/* RTL adjustments for mobile */
@media (max-width: 768px) {
    [lang="ar"] .hero-content {
        text-align: right;
    }
    
    [lang="ar"] .steps-timeline {
        direction: rtl;
    }
}

/* Improved language selector styling */
.language-selector select option {
    padding: 5px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-users {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-weight: 500;
    color: #fbbf24;
}

.cta-button {
    display: inline-block;
    background: #fbbf24;
    color: #1f2937;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    font-size: 8rem;
    opacity: 0.3;
}

/* Enhanced Hero Styling */
.hero {
    position: relative;
    overflow: hidden;
}

.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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23a)"/><circle cx="800" cy="200" r="80" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: heroFloat 20s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

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

.badge-icon {
    font-size: 16px;
    animation: trophyRotate 3s ease-in-out infinite;
}

@keyframes trophyRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: statCountUp 1s ease-out 0.5s both;
}

@keyframes statCountUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700 !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-cta {
    margin-top: 40px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    animation: trustFadeIn 1s ease-out 1s both;
}

@keyframes trustFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.trust-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

.hero-animation {
    position: relative;
    width: 300px;
    height: 400px;
}

.cv-preview {
    width: 200px;
    height: 280px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    animation: cvFloat 3s ease-in-out infinite;
}

@keyframes cvFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.cv-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 20px;
    animation: headerGlow 2s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.6); }
}

.cv-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cv-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    animation: lineWrite 1.5s ease-in-out infinite;
}

.cv-line.short {
    width: 60%;
}

.cv-line.medium {
    width: 80%;
}

@keyframes lineWrite {
    0% { width: 0; }
    100% { width: 100%; }
}

.cv-line.short {
    animation-delay: 0.5s;
}

.cv-line.medium {
    animation-delay: 1s;
}

.ai-magic {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
}

.magic-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.magic-sparkle:nth-child(1) {
    top: 10px;
    left: 10px;
    animation-delay: 0s;
}

.magic-sparkle:nth-child(2) {
    top: 30px;
    right: 10px;
    animation-delay: 0.7s;
}

.magic-sparkle:nth-child(3) {
    bottom: 10px;
    left: 30px;
    animation-delay: 1.4s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px; /* Reduced from default gap */
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: -20px; /* Reduce bottom margin */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        margin-top: -20px; /* Pull content closer to visual */
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
        color: #FFD700 !important;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .hero-animation {
        width: 220px; /* Slightly smaller */
        height: 280px; /* Reduced height */
        margin: 0 auto; /* Center the animation */
    }
    
    .cv-preview {
        width: 140px; /* Slightly smaller */
        height: 200px; /* Reduced height */
        padding: 12px; /* Reduced padding */
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px; /* Reduce overall hero padding */
    }
    
    .hero-container {
        gap: 15px; /* Even smaller gap */
        padding: 0 15px;
    }
    
    .hero-visual {
        margin-bottom: -30px; /* Pull even closer */
    }
    
    .hero-content {
        margin-top: -30px; /* Pull content even closer */
    }
    
    .hero-animation {
        width: 180px; /* Smaller for very small screens */
        height: 240px; /* Reduced height */
    }
    
    .cv-preview {
        width: 120px; /* Smaller preview */
        height: 170px; /* Reduced height */
        padding: 10px; /* Minimal padding */
    }
    
    .hero-title {
        font-size: 2.2rem; /* Slightly smaller title */
        margin-bottom: 0.8rem;
    }
    
    .hero-badge {
        margin-bottom: 15px; /* Reduce badge margin */
    }
}

/* Global Features Section */
.global-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.global-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.global-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-top: 16px;
    font-weight: 500;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.global-stat {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.global-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.global-stat:hover::before {
    opacity: 1;
}

.global-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.stat-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 600;
}

.global-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.global-feature {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.global-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.global-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.global-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
    position: relative;
    z-index: 1;
}

.global-feature p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Enhanced CTA Button */
.cta-button {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

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

/* Mobile responsiveness for Steps */
@media (max-width: 768px) {
    .steps {
        padding: 60px 0;
    }
    
    .steps-timeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-card {
        min-width: auto;
        max-width: 100%;
        margin: 0 20px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .steps-cta .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .global-features {
        padding: 60px 0;
    }
    
    .global-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .global-stat {
        padding: 30px 20px;
    }
    
    .stat-big {
        font-size: 2.5rem;
    }
    
    .global-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Price Comparison Compact Section */
.price-comparison-compact {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.price-table-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.price-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background-color: #f9fafb;
    font-weight: 500;
    color: #374151;
    font-size: 0.85rem;
}

.provider-header.highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    position: relative;
}

.provider-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-label {
    font-weight: 500;
    color: #374151;
    text-align: left;
    padding-left: 16px;
    font-size: 0.9rem;
}

.value-cell {
    position: relative;
}

.value-cell.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-left: 3px solid #667eea;
    border-right: 3px solid #667eea;
}

.price-main {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f2937;
    margin-bottom: 4px;
}

.value-cell.highlight .price-main {
    color: #667eea;
    font-size: 1rem;
}

.price-note {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
}

.status-no {
    color: #10b981;
    font-weight: 500;
    font-size: 0.9rem;
}

.status-yes {
    color: #ef4444;
    font-weight: 500;
    font-size: 0.9rem;
}

.price-action {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.action-text {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .price-comparison-compact {
        padding: 40px 0;
    }
    
    .price-table-card {
        margin: 0 15px;
        padding: 20px 15px;
    }
    
    .price-title {
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    .price-subtitle {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .provider-name {
        font-size: 0.8rem;
    }
    
    .price-main {
        font-size: 0.8rem;
    }
    
    .value-cell.highlight .price-main {
        font-size: 0.85rem;
    }
    
    .feature-label {
        padding-left: 8px;
        font-size: 0.8rem;
    }
    
    .price-note {
        font-size: 0.7rem;
    }
    
    .status-no, .status-yes {
        font-size: 0.8rem;
    }
    
    .action-text {
        font-size: 0.8rem;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .price-table-card {
        margin: 0 10px;
        padding: 15px 10px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 4px;
        font-size: 0.75rem;
    }
    
    .price-title {
        font-size: 1.2rem;
    }
    
    .price-subtitle {
        font-size: 0.8rem;
    }
    
    .provider-name {
        font-size: 0.75rem;
    }
    
    .price-main {
        font-size: 0.75rem;
    }
    
    .value-cell.highlight .price-main {
        font-size: 0.8rem;
    }
    
    .feature-label {
        font-size: 0.75rem;
        padding-left: 6px;
    }
    
    .price-note {
        font-size: 0.65rem;
    }
    
    .status-no, .status-yes {
        font-size: 0.75rem;
    }
    
    .action-text {
        font-size: 0.75rem;
    }
}

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

.steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.05' fill-rule='nonzero'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.steps-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.steps-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-top: 15px;
    font-weight: 500;
}

.steps-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    max-width: 320px;
    flex: 1;
    min-width: 280px;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.step-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
    line-height: 1.3;
}

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

.step-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #4b5563;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #d1d5db;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
    margin: 0 10px;
    opacity: 0.7;
}

.steps-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.steps-cta .cta-button {
    margin-bottom: 20px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-guarantee {
    color: #6b7280;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-guarantee i {
    color: #10b981;
}

/* Clean Blog Styling */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    line-height: 1.7;
}

.blog-content h1 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-content h2 {
    font-size: 1.6rem;
    color: #374151;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #4b5563;
    margin: 1.5rem 0 0.8rem;
}

.blog-content p {
    margin-bottom: 1.2rem;
    color: #4b5563;
}

.blog-content ul, .blog-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #4b5563;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    border-left: 4px solid #667eea;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.blog-content blockquote p {
    margin: 0 0 0.5rem;
    font-style: italic;
    color: #374151;
}

.blog-content cite {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.simple-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    color: white;
}

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

.simple-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Templates Section */
.templates {
    padding: 80px 0;
    background: white;
}

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

.template-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.template-preview {
    height: 300px;
    background: #f8fafc;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.template-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.creative-header {
    flex-direction: column;
    text-align: center;
}

.business-header {
    flex-direction: row;
}

.template-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d1d5db;
    margin-bottom: 10px;
}

.template-info {
    flex: 1;
}

.template-name {
    height: 20px;
    background: #374151;
    border-radius: 4px;
    margin-bottom: 8px;
    width: 80%;
}

.template-title {
    height: 16px;
    background: #6b7280;
    border-radius: 4px;
    width: 60%;
}

.template-sections {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.template-section {
    height: 40px;
    background: #e5e7eb;
    border-radius: 4px;
}

.template-card h3 {
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
}

/* Blog styles - Clean and minimal */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.blog-content h1 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.blog-content h2 {
    color: #2c2c2c;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-content h3 {
    color: #3c3c3c;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.blog-content p {
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    font-size: 1rem;
}

.blog-content ul, .blog-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.blog-content blockquote {
    background: #f8f9fa;
    border-left: 3px solid #667eea;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.blog-content blockquote p {
    margin: 0;
}

.blog-content blockquote cite {
    display: block;
    margin-top: 0.8rem;
    font-weight: 600;
    color: #667eea;
    font-style: normal;
}

/* Simple CTA */
.simple-cta {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #e9ecef;
}

.simple-cta h3 {
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.simple-cta p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #667eea;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background: #5a6fd8;
}

.template-card p {
    padding: 0 20px 20px;
    color: #6b7280;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8fafc;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit p {
    color: #6b7280;
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
}

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

.blog-header-text {
    text-align: left;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-header-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-header-visual svg {
    max-width: 100%;
    height: auto;
}

.blog-content {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.post-image {
    height: 200px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured .post-image {
    height: auto;
}

.post-image-placeholder {
    font-size: 3rem;
    color: #d1d5db;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-date {
    color: #6b7280;
}

.post-category {
    color: #2563eb;
    font-weight: 500;
}

.post-content h2,
.post-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-content h2 {
    font-size: 1.8rem;
}

.post-content h3 {
    font-size: 1.3rem;
}

.post-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}

.blog-cta {
    text-align: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
}

.blog-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.blog-cta p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Privacy and Terms Styles */
.privacy-content, .terms-content {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

.privacy-content h1, .terms-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.terms-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.terms-intro p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-caps {
    font-weight: 800;
    text-transform: uppercase;
    color: #dc2626;
    font-size: 1.1rem;
}

.disclaimer-box {
    background: #fef2f2;
    border: 2px solid #dc2626;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.disclaimer-box h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.privacy-section, .terms-section {
    margin-bottom: 3rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.terms-wrapper .terms-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    margin-bottom: 30px;
}

.privacy-section h2, .terms-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2563eb;
}

.privacy-section p, .terms-section p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul, .terms-section ul {
    color: #6b7280;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li, .terms-section li {
    margin-bottom: 0.5rem;
}

.privacy-section a, .terms-section a {
    color: #2563eb;
    text-decoration: none;
}

.privacy-section a:hover, .terms-section a:hover {
    text-decoration: underline;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

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

.social-links a {
    color: #d1d5db;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fbbf24;
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

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

    .templates-container {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-header p {
        font-size: 1rem;
    }

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

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .step,
    .benefit {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.nav-link:focus,
.cta-button:focus,
.read-more:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Blog Article Styles - Modern Design */
.blog-article {
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
}

.blog-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    z-index: 1;
}

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

.article-header {
    text-align: center;
    padding: 120px 2rem 80px;
    color: white;
    position: relative;
    z-index: 2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-date, .article-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.article-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin: 2rem 0;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-lead {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.article-content {
    max-width: 1000px;
    margin: -100px auto 0;
    background: white;
    padding: 80px 60px;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

.article-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
}

.article-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 50px 0 25px 0;
    padding-left: 20px;
    border-left: 4px solid #8B5A96;
    position: relative;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #8B5A96;
    border-radius: 50%;
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 24px;
    font-weight: 400;
}

.article-content p:first-of-type {
    font-size: 1.25rem;
    color: #1f2937;
    font-weight: 500;
    border-left: 3px solid #f59e0b;
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #8B5A96 0%, #667eea 100%);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.benefit-item i {
    color: #ffffff;
    font-size: 28px;
    margin-top: 5px;
    background: linear-gradient(135deg, #8B5A96 0%, #667eea 100%);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(139, 90, 150, 0.3);
    min-width: 52px;
    text-align: center;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #6b7280;
    margin: 0;
}

.steps-container {
    display: grid;
    gap: 30px;
    margin: 50px 0;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(135deg, #8B5A96 0%, #667eea 100%);
    opacity: 0.3;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #8B5A96 0%, #667eea 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(139, 90, 150, 0.4);
    position: relative;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.step-content p {
    color: #6b7280;
    margin: 0;
}

.simple-text {
    font-style: italic;
    text-align: center;
    color: #8B5A96;
    font-weight: 500;
    font-size: 1.1rem;
}

.tips-list {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #bae6fd;
    position: relative;
    list-style: none;
}

.tips-list::before {
    content: '💡';
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    padding: 12px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.tips-list li {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #0f172a;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 3px solid #0ea5e9;
    transition: all 0.3s ease;
}

.tips-list li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.tips-list strong {
    color: #0ea5e9;
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, #8B5A96 0%, #6b46c1 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 90, 150, 0.3);
}

.cta-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 6s ease-in-out infinite;
}

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

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-section .cta-button {
    background: white;
    color: #8B5A96;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Mobile Responsive Design for Blog Articles */
@media (max-width: 768px) {
    .blog-article::before {
        height: 300px;
    }
    
    .article-header {
        padding: 100px 1rem 60px;
    }
    
    .article-header h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin: 1.5rem 0;
    }
    
    .article-lead {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .article-content {
        margin: -80px 1rem 0;
        padding: 60px 30px;
        border-radius: 20px 20px 0 0;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
        margin: 40px 0 20px 0;
        padding-left: 16px;
    }
    
    .article-content h2::before {
        width: 12px;
        height: 12px;
        left: -6px;
    }
    
    .article-content p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .benefit-item {
        gap: 20px;
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item i {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .step {
        gap: 20px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .step:hover {
        transform: translateY(-5px);
    }
    
    .step-number {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .tips-list {
        padding: 30px 20px;
    }
    
    .tips-list li {
        font-size: 1.05rem;
        padding: 12px 16px;
    }
    
    .cta-section {
        padding: 40px 20px;
        margin: 40px 0;
        border-radius: 16px;
    }
    
    .cta-section .cta-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .article-content {
        margin: -60px 0.5rem 0;
        padding: 40px 20px;
    }
    
    .article-header h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .article-lead {
        font-size: 1.1rem;
    }
    
    .benefit-item, .step {
        padding: 20px 15px;
    }
    
    .tips-list {
        padding: 25px 15px;
    }
}
    transition: all 0.3s ease;
}

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

.related-articles {
    padding: 80px 0;
    background: white;
}

.related-articles h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 50px;
}

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

.related-post {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post .post-image {
    height: 200px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-post .post-image-placeholder {
    font-size: 48px;
    color: #8B5A96;
}

.related-post .post-content {
    padding: 25px;
}

.related-post h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.4;
}

.related-post p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.related-post .read-more {
    color: #8B5A96;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.related-post .read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-content {
        padding: 30px 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
}

/* CV Builder AI Section */
.cv-builder-ai {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.cv-builder-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cv-builder-ai .section-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cv-builder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
    min-height: 600px;
}

.cv-builder-info {
    padding-right: 20px;
}

.ai-features {
    margin-bottom: 50px;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.ai-feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.ai-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s;
}

.ai-feature:hover::before {
    left: 100%;
}

.ai-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
}

.ai-feature .feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.ai-feature .feature-icon i {
    font-size: 28px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.ai-feature .feature-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.ai-feature .feature-content p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.company-story {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.08);
    position: relative;
    overflow: hidden;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.story-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.story-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.company-story p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.media-coverage h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.media-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.media-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-weight: 500;
    color: #374151;
}

.cv-preview-showcase {
    text-align: center;
}

.cv-preview-header {
    margin-bottom: 30px;
}

.cv-preview-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.cv-preview-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.cv-showcase {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.cv-showcase::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cv-showcase::after {
    content: '✨ AI Generated';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cv-showcase:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 35px 90px rgba(102, 126, 234, 0.2);
}

.cv-showcase:hover::before {
    opacity: 1;
}

.cv-showcase svg {
    max-width: 100%;
    height: auto;
}

.cv-action {
    text-align: center;
}

.cv-action .cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 45px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cv-action .cta-button::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.6s;
}

.cv-action .cta-button:hover::before {
    left: 100%;
}

.cv-action .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.6);
}

.guarantee-text {
    color: #4b5563;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 15px 25px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    display: inline-block;
}

/* Responsive for CV Builder AI */
@media (max-width: 1200px) {
    .cv-builder-content {
        gap: 60px;
    }
    
    .ai-feature .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .ai-feature .feature-content p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .cv-builder-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 40px;
    }
    
    .cv-builder-info {
        padding-right: 0;
        order: 2;
    }
    
    .cv-preview-showcase {
        order: 1;
    }
    
    .ai-features {
        margin-bottom: 40px;
    }
    
    .company-story {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .cv-builder-ai {
        padding: 50px 0;
    }
    
    .cv-builder-ai .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .cv-builder-ai .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .ai-feature {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .ai-feature .feature-icon {
        margin: 0 auto 15px;
        width: 60px;
        height: 60px;
    }
    
    .ai-feature .feature-icon i {
        font-size: 24px;
    }
    
    .ai-feature .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .ai-feature .feature-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .company-story {
        padding: 25px 20px;
        text-align: center;
    }
    
    .story-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .story-header h3 {
        font-size: 1.5rem;
    }
    
    .company-story p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .media-coverage h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .media-logos {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .media-item {
        padding: 10px;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .cv-preview-header h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .cv-preview-header p {
        font-size: 1rem;
    }
    
    .cv-showcase {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .cv-showcase::after {
        top: 15px;
        right: 15px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .cv-showcase svg {
        width: 280px;
        height: 390px;
    }
    
    .cv-action .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
        gap: 10px;
        border-radius: 50px;
    }
    
    .guarantee-text {
        font-size: 1rem;
        padding: 12px 20px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .cv-builder-ai {
        padding: 40px 0;
    }
    
    .cv-builder-ai .section-title {
        font-size: 1.7rem;
        padding: 0 10px;
    }
    
    .cv-builder-ai .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .ai-feature {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .ai-feature .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .ai-feature .feature-icon i {
        font-size: 20px;
    }
    
    .ai-feature .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .ai-feature .feature-content p {
        font-size: 0.9rem;
    }
    
    .company-story {
        padding: 20px 15px;
    }
    
    .story-header h3 {
        font-size: 1.3rem;
    }
    
    .tech-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .company-story p {
        font-size: 0.95rem;
    }
    
    .cv-showcase {
        padding: 20px 10px;
    }
    
    .cv-showcase svg {
        width: 250px;
        height: 350px;
    }
    
    .cv-action .cta-button {
        padding: 14px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .guarantee-text {
        font-size: 0.9rem;
        padding: 10px 15px;
        line-height: 1.4;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer .container {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-brand {
    text-align: left;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-stats {
    display: flex;
    gap: 30px;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700 !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-cta {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.footer-cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.footer-cta-content p {
    color: #d1d5db;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.footer-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.footer-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cv-floating {
    animation: cvFloat 4s ease-in-out infinite;
}

@keyframes cvFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.cv-mini {
    width: 120px;
    height: 160px;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cv-mini-header {
    width: 100%;
    height: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    margin-bottom: 15px;
}

.cv-mini-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cv-mini-line {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
}

.cv-mini-line.short {
    width: 70%;
}

.ai-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 60%;
    left: 10%;
    animation-delay: 0.7s;
}

.sparkle:nth-child(3) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.4s;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.security-badge,
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
}

.security-badge i,
.guarantee-badge i {
    font-size: 1rem;
}

/* Footer Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer .container {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-stats {
        gap: 20px;
        justify-content: center;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-cta {
        padding: 30px 20px;
    }
    
    .footer-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .cv-mini {
        width: 100px;
        height: 140px;
        padding: 12px;
    }
}

/* FAQ Page Styles */
.faq-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.faq-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='nonzero'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.faq-header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.faq-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.faq-search {
    position: relative;
    z-index: 2;
}

.search-box {
    position: relative;
    max-width: 500px;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
}

.faq-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.faq-icon {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: iconFloat 3s ease-in-out infinite;
}

.faq-icon i {
    font-size: 4rem;
    color: white;
}

.faq-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faq-sparkles .sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.faq-sparkles .sparkle:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.faq-sparkles .sparkle:nth-child(2) {
    top: 60%;
    left: 10%;
    animation-delay: 0.7s;
}

.faq-sparkles .sparkle:nth-child(3) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.4s;
}

.faq-content {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-categories {
    margin-bottom: 60px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question-icon i {
    color: white;
    font-size: 1.2rem;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.expand-icon {
    color: #667eea;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .expand-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 30px;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.answer-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    padding: 8px 15px;
    border-radius: 20px;
    color: #0369a1;
    font-weight: 600;
    font-size: 0.9rem;
}

.highlight-item i {
    color: #10b981;
}

.pricing-showcase {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.price-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 300px;
    border: 2px solid #667eea;
}

.price-header h4 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4b5563;
}

.price-features i {
    color: #10b981;
}

.process-steps {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1f2937;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: #6b7280;
    margin: 0;
}

.process-note {
    background: #ecfdf5;
    color: #065f46;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tip-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.tip-icon i {
    color: white;
    font-size: 1.2rem;
}

.tip-card h4 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1rem;
}

.tip-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.tip-note {
    background: #fef3c7;
    color: #92400e;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
}

.editing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-weight: 600;
}

.feature-item i {
    color: #10b981;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 12px 15px;
    border-radius: 10px;
    color: #4b5563;
    font-weight: 600;
}

.industry-item i {
    color: #667eea;
}

.speed-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.speed-stat {
    text-align: center;
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

.speed-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700 !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 5px;
}

.speed-stat .stat-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.faq-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
    color: white;
}

.faq-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.faq-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #667eea;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-guarantee i {
    color: #10b981;
}

/* FAQ Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-header {
        padding: 100px 0 60px;
    }
    
    .faq-header-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 25px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 25px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .speed-stats {
        grid-template-columns: 1fr;
    }
    
    .faq-cta {
        padding: 40px 20px;
    }
    
    .faq-cta h2 {
        font-size: 2rem;
    }
    
    .faq-icon {
        width: 120px;
        height: 120px;
    }
    
    .faq-icon i {
        font-size: 3rem;
    }
}

/* FOMO Notification Styles */
.fomo-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateX(-120%);
    transition: transform 0.3s ease;
    max-width: 350px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.fomo-notification.show {
    transform: translateX(0);
}

.fomo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fomo-pulse {
    color: #4ade80;
    animation: pulse 2s infinite;
    font-size: 8px;
}

.fomo-text {
    flex: 1;
    font-weight: 500;
}

.fomo-close {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    font-size: 12px;
}

.fomo-close:hover {
    opacity: 1;
}

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

/* Sticky CTA Styles */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #8B5A96 0%, #6b46c1 50%, #8B5A96 100%);
    color: white;
    padding: 12px 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -8px 32px rgba(139, 90, 150, 0.3), 0 -4px 16px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #ffd700;
    animation: shimmer 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    position: relative;
}

.sticky-cta-text {
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1f2937;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.sticky-cta-button:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

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

.sticky-cta-button:hover::before {
    left: 100%;
}

@keyframes shimmer {
    0%, 100% { 
        background: linear-gradient(135deg, #8B5A96 0%, #6b46c1 50%, #8B5A96 100%);
        border-top-color: #ffd700;
    }
    50% { 
        background: linear-gradient(135deg, #6b46c1 0%, #8B5A96 50%, #6b46c1 100%);
        border-top-color: #ffed4e;
    }
}

/* Mobile responsive adjustments for sticky CTA */
@media (max-width: 768px) {
    .sticky-cta {
        padding: 10px 16px;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .sticky-cta-text {
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
    }
    
    .sticky-cta-button {
        font-size: 15px;
        padding: 8px 20px;
        width: 100%;
        max-width: 250px;
    }
}

/* Exit Intent Popup Styles */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-intent-popup.show {
    opacity: 1;
    visibility: visible;
}

.exit-intent-popup.show .exit-popup-content {
    transform: translate(-50%, -50%) scale(1);
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.exit-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 60px 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 650px;
    width: 95%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 10px 40px rgba(139, 90, 150, 0.15);
    border: 3px solid rgba(139, 90, 150, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exit-popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 90, 150, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.exit-popup-close:hover {
    color: #8B5A96;
    background: rgba(255, 255, 255, 1);
    border-color: #8B5A96;
    transform: scale(1.1);
}

.exit-popup-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8B5A96, #6b46c1, #ffd700, #8B5A96);
    border-radius: 26px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
    opacity: 0.7;
}

.exit-popup-content h3 {
    margin: 0 0 25px 0;
    color: #1f2937;
    font-size: 32px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.exit-popup-content p {
    margin: 0 0 40px 0;
    color: #4b5563;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.exit-popup-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.exit-popup-cta {
    background: linear-gradient(135deg, #8B5A96 0%, #6b46c1 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(139, 90, 150, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.exit-popup-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 90, 150, 0.6);
    background: linear-gradient(135deg, #6b46c1 0%, #8B5A96 100%);
}

.exit-popup-cta::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;
}

.exit-popup-cta:hover::before {
    left: 100%;
}

.exit-popup-dismiss {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(139, 90, 150, 0.2);
    color: #6b7280;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.exit-popup-dismiss:hover {
    border-color: #8B5A96;
    color: #8B5A96;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

@keyframes borderGlow {
    0%, 100% { 
        background: linear-gradient(135deg, #8B5A96, #6b46c1, #ffd700, #8B5A96);
    }
    50% { 
        background: linear-gradient(135deg, #6b46c1, #ffd700, #8B5A96, #6b46c1);
    }
}

/* Mobile responsive for exit popup */
@media (max-width: 768px) {
    .exit-popup-content {
        padding: 40px 30px;
        max-width: 90%;
        margin: 20px;
    }
    
    .exit-popup-content h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .exit-popup-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .exit-popup-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .exit-popup-cta, .exit-popup-dismiss {
        width: 100%;
        max-width: none;
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #10b981;
    font-size: 12px;
    font-weight: 500;
}

.trust-badge i {
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fomo-notification {
        bottom: 80px;
        left: 15px;
        right: 15px;
        max-width: none;
        font-size: 13px;
    }
    
    .exit-popup-content {
        padding: 30px 20px;
        margin: 20px;
        width: auto;
    }
    
    .exit-popup-content h3 {
        font-size: 20px;
    }
    
    .exit-popup-actions {
        flex-direction: column;
    }
    
    .exit-popup-cta,
    .exit-popup-dismiss {
        width: 100%;
        text-align: center;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        font-size: 11px;
    }
}

/* Button improvements for better conversion */
.cta-button.primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.cta-button.primary:active {
    transform: translateY(-1px);
}

/* Mobile button improvements */
@media (max-width: 768px) {
    .cta-button.primary {
        padding: 18px 35px;
        font-size: 1.2rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}
