
:root {
    --primary: #FF6B35;
    --secondary: #F7931E;
    --success: #10B981;
    --dark: #1a1a1a;
}

* {
    font-family: 'Inter', sans-serif;
}

body {
    background: #fff;
    color: #1a1a1a;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.trust-badge i {
    color: var(--success);
    font-size: 20px;
}

/* Generator Tool Section */
.tool-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.tool-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-label {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 15px;
}

.form-control, .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.btn-generate {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-generate:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Results Section */
.results-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px dashed #e5e7eb;
}

.result-card {
    border: 3px solid #e5e7eb;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
    animation: fadeInUp 0.4s ease-out;
}

.result-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intent-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.intent-transactional {
    background: #D1FAE5;
    color: #065F46;
}

.intent-informational {
    background: #DBEAFE;
    color: #1E40AF;
}

.intent-commercial {
    background: #E9D5FF;
    color: #6B21A8;
}

.intent-navigational {
    background: #FEF3C7;
    color: #92400E;
}

.meta-text {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin: 15px 0;
    padding: 15px;
    background: #F9FAFB;
    border-radius: 10px;
}

.meta-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #6B7280;
    margin-top: 15px;
}

.meta-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-stat.good {
    color: var(--success);
    font-weight: 600;
}

.btn-copy {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.btn-copy:hover {
    background: var(--primary);
    color: white;
}

.btn-copy.copied {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-desc {
    color: #6B7280;
    line-height: 1.6;
}

/* SEO Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

.content-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-subtitle {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 40px;
}

.content-text {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.content-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.content-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--dark);
}

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

.content-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.6;
    color: #374151;
}

.content-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 900;
    font-size: 18px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    background: white;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    background: white;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #6B7280;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.loading-state.show {
    display: block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f4f6;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.toast {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    min-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid #EF4444;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

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

    .tool-container {
        padding: 25px;
    }

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

/* Simple Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
}
