/* Hero Section */

.hero {
    margin-top: 70px;
    padding: 80px 5% 60px;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 32px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-stat p {
    font-size: 14px;
    opacity: 0.9;
}


/* Builder Options */

.builder-options {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 60px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.option-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(53, 209, 209, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(53, 209, 209, 0.2);
    border-color: #35D1D1;
}

.option-header {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(53, 209, 209, 0.1) 0%, rgba(43, 184, 184, 0.05) 100%);
}

.option-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.option-header h3 {
    font-size: 28px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 8px;
}

.option-header p {
    font-size: 16px;
    color: #718096;
}

.option-body {
    padding: 32px 40px 40px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
    font-size: 15px;
}

.feature-list li::before {
    content: '✓';
    color: #35D1D1;
    font-weight: 700;
    font-size: 20px;
}

.btn-builder {
    width: 100%;
    padding: 16px;
    background: #35D1D1;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-builder:hover {
    background: #2bb8b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(53, 209, 209, 0.3);
}


/* Templates Showcase */

.templates-section {
    padding: 80px 5%;
    background: white;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.template-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(53, 209, 209, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(53, 209, 209, 0.15);
}

.template-preview {
    height: 320px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.template-preview.modern {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.template-preview.creative {
    background: white;
    display: flex;
}

.template-preview.minimal {
    background: #ffffff;
}

.template-preview.executive {
    background: #f8f9fa;
}

.template-preview.portfolio1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.template-preview.portfolio2 {
    background: #1a1a2e;
}

.template-header {
    margin-bottom: 20px;
}

.temp-name {
    font-size: 20px;
    font-weight: 700;
    color: #35D1D1;
    margin-bottom: 4px;
}

.temp-name-white {
    color: white;
}

.temp-title {
    font-size: 14px;
    color: #718096;
}

.temp-title-white {
    color: rgba(255, 255, 255, 0.8);
}

.template-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.temp-line {
    height: 8px;
    background: #cbd5e0;
    border-radius: 4px;
}

.temp-line-white {
    background: rgba(255, 255, 255, 0.3);
}

.temp-line.short {
    width: 70%;
}

.template-sidebar {
    width: 35%;
    background: #35D1D1;
    padding: 20px;
}

.template-main {
    flex: 1;
    padding: 20px;
}

.temp-circle {
    width: 50px;
    height: 50px;
    background: #35D1D1;
    border-radius: 50%;
    margin-bottom: 16px;
}

.temp-circle-white {
    background: white;
}

.template-info {
    padding: 20px;
}

.template-info h4 {
    font-size: 18px;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 8px;
}

.template-info p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 16px;
}

.template-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(53, 209, 209, 0.1);
    color: #35D1D1;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}


/* How It Works */

.how-it-works {
    padding: 80px 5%;
    background: #f7fffe;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 20px;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
}


/* CTA Section */

.cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
}

.btn-white {
    padding: 16px 40px;
    background: white;
    color: #35D1D1;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}


/* Responsive */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    .section-title {
        font-size: 32px;
    }
    .options-grid {
        grid-template-columns: 1fr;
    }
    .templates-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
}