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

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

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

/* Header with Navigation */
.header {
    width: 100%;
    padding: 16px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f5f5f5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    flex-shrink: 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    order: 2;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Menu */
.navigation-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
    margin: 0 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #000000;
}

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

.nav-item.dropdown .nav-link::after {
    content: '▼';
    font-size: 10px;
    color: #666;
    transition: transform 0.2s ease;
    margin-left: 4px;
}

.nav-item.dropdown:hover .nav-link::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 14px 20px;
    color: #2d2d2d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: width 0.3s ease;
}

.dropdown-link:hover {
    background-color: #fffbf0;
    color: #000000;
    padding-left: 24px;
}

.dropdown-link:hover::before {
    width: 4px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.auth-link {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.auth-link:hover {
    color: #000000;
}

.auth-link:hover::before {
    left: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #000000;
}

.btn-primary:hover::before {
    left: 0;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-text {
    space-y: 32px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.btn-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    margin-bottom: 32px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    color: #ffffff;
}

.btn-gradient:hover::before {
    left: 0;
}

.user-count {
    color: #666666;
    font-weight: 500;
    margin-bottom: 32px;
    font-size: 16px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 22px;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
}

.rating-text {
    color: #666666;
    font-weight: 600;
    font-size: 15px;
}

.btn-upload {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border: 2px dashed #FFD700;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-upload:hover {
    border-color: #FFA500;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

/* Laptop Mockup */
.hero-mockup {
    position: relative;
}

.laptop {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 20px 20px 0 0;
    padding: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.laptop::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 22px 22px 2px 2px;
    z-index: -1;
}

.laptop-screen {
    background-color: #2a2a2a;
    border-radius: 16px 16px 0 0;
    padding: 16px;
}

.browser-bar {
    margin-bottom: 16px;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f57; }
.dot.yellow { background-color: #FFD700; }
.dot.green { background-color: #28ca42; }

.resume-preview {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 32px;
    height: 400px;
    overflow: hidden;
}

.resume-header {
    height: 24px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 4px;
    width: 75%;
    margin-bottom: 16px;
}

.resume-subtitle {
    height: 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 4px;
    width: 50%;
    margin-bottom: 24px;
}

.resume-lines {
    margin-bottom: 24px;
}

.resume-lines .line {
    height: 12px;
    background-color: #e8e8e8;
    border-radius: 4px;
    margin-bottom: 8px;
}

.resume-lines .line.full { width: 100%; }
.resume-lines .line.medium { width: 85%; }
.resume-lines .line.large { width: 80%; }
.resume-lines .line.small { width: 75%; }

.resume-section {
    height: 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 4px;
    width: 65%;
    margin-bottom: 16px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.feature-card {
    text-align: center;
    position: relative;
}

.feature-header {
    margin-bottom: 32px;
}

.feature-label {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-title {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-visual {
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 32px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 24px;
}

.feature-visual::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.visual-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.visual-line {
    height: 14px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.visual-line.gray {
    background-color: #e8e8e8;
    width: 80%;
}

.visual-line.full {
    width: 100%;
}

.visual-line.highlight-purple {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    width: 100%;
    font-weight: 600;
}

.visual-line.highlight-yellow {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    width: 60%;
}

.visual-line.highlight-green {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    width: 100%;
    font-weight: 600;
}

.visual-line.highlight-blue {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    width: 100%;
    font-weight: 600;
}

.visual-line.error {
    background-color: #ffe6e6;
    width: 80%;
    border: 1px solid #ffcccc;
}

.visual-line.success {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    width: 100%;
    font-weight: 600;
}

.error-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4444;
    border-radius: 50%;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.ai-icon {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.ai-icon svg {
    width: 28px;
    height: 28px;
    padding: 6px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.feature-description {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Templates Section */
.templates {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.template-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.template-preview {
    height: 200px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.template-preview.modern {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.template-preview.classic {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.template-preview.creative {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.template-preview.minimal {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
}

.template-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.template-description {
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

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

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: #cccccc;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 80px;
    color: #FFD700;
    font-weight: 800;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 32px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

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

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.step-description {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #FFD700;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
}

.price-period {
    font-size: 18px;
    color: #666666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    color: #333333;
    position: relative;
    padding-left: 32px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: 700;
    font-size: 18px;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    border: 2px solid #000000;
    border-radius: 50px;
    background: transparent;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #000000;
    color: #ffffff;
}

.btn-pricing.featured {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
    color: #000000;
}

.btn-pricing.featured:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #FFD700;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #FFD700;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 24px 0;
    color: #666666;
    line-height: 1.6;
}

/* Blog Section */
.blog-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.blog-content {
    padding: 32px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-category {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-date {
    color: #666666;
    font-size: 14px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-excerpt {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #000000;
}

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

/* Footer CTA Section */
.footer-cta {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
}

.footer-cta .btn-gradient {
    margin-bottom: 40px;
}

.footer-cta .rating {
    justify-content: center;
    margin-bottom: 0;
}

.footer-cta .rating-text {
    color: #cccccc;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 300px;
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    transform: translateY(-2px);
}

.footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #FFD700;
}

.footer-link:hover::before {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #333333;
    color: #888888;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-link {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #FFD700;
}

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

    /* Mobile Header */
    .header-content {
        position: relative;
    }

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

    .navigation-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border: 1px solid #e5e7eb;
        border-top: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navigation-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item {
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 16px 24px;
        font-size: 16px;
        justify-content: space-between;
    }

    .nav-item.dropdown .nav-link::after {
        font-size: 12px;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background-color: #fffbf0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nav-item.dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .dropdown-link {
        padding: 12px 40px;
        font-size: 15px;
        border-bottom: 1px solid #e5e7eb;
    }

    .header-actions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border: 1px solid #e5e7eb;
        border-top: none;
        padding: 16px 24px;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .navigation-menu.active + .header-actions {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .auth-link {
        padding: 12px 24px;
        font-size: 16px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }

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

    .section-subtitle {
        font-size: 18px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-cta {
        padding: 80px 0;
    }
    
    .footer-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .btn-gradient {
        font-size: 16px;
        padding: 16px 32px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .footer-cta {
        padding: 60px 0;
    }
    
    .footer-title {
        font-size: 28px;
    }

    .nav-link {
        padding: 14px 20px;
    }

    .dropdown-link {
        padding: 10px 32px;
    }

    .header-actions {
        padding: 14px 20px;
        gap: 16px;
    }

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

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

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