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

body {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: #465166;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background: #ffffff;
}

/* White Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #ffffff;
}

/* Star Accent */
.star-accent {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgba(70, 81, 102, 0.3);
    z-index: 1;
    /* Animation removed for less distraction */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 4rem;
}

.subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #6366f1;
}

.title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4.5rem; /* 72px - 20% increase from 60px */
    font-weight: 800;
    margin-bottom: 1.65rem;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem; /* 48px on mobile - 20% increase */
    }
}

.description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 400;
}

/* Cards */
.card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(70, 81, 102, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(70, 81, 102, 0.12);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    color: #465166;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="number"]:focus,
select:focus {
    outline: none;
    background: #ffffff;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

input::placeholder {
    color: #adb5bd;
}

select option {
    background: #ffffff;
    color: #465166;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.btn-primary {
    background: #4F46E5;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    background: #4338CA;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.35);
}

.btn-secondary {
    background: #f8f9fa;
    color: #465166;
    border: 1px solid #dee2e6;
}

.btn-secondary:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.25rem;
}

/* Search Section (Google-style) */
.search-section {
    margin-bottom: 6rem;
    display: flex;
    justify-content: center;
}

.search-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.search-inputs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #ffffff;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 0.5rem;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.08);
    transition: box-shadow 0.2s ease;
}

.search-inputs:hover {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.16);
}

.search-inputs:focus-within {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: transparent;
}

.search-select {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #202124;
    outline: none;
    cursor: pointer;
    min-width: 140px;
}

.search-select:first-child {
    min-width: 180px;
}

.search-select:invalid {
    color: #5f6368;
}

.search-select option {
    color: #202124;
}

.search-select option[disabled] {
    color: #5f6368;
}

.search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #4F46E5;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(79, 70, 229, 0.3);
    margin: 0 auto;
}

.search-button:hover {
    background: #4338CA;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
}

.search-button:active {
    transform: scale(0.98);
}

/* Why This Works Section */
.why-section {
    margin-bottom: 6rem;
    padding: 4rem 0;
}

.why-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.why-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.comparison-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
}

.chatgpt-card {
    border: 2px solid #e9ecef;
}

.winner-card {
    border: 2px solid #4F46E5;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.winner-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #465166;
    line-height: 1.6;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.winner-card .comparison-list li strong {
    color: #4F46E5;
}

.data-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

/* AI Generator Section */
.generator-section {
    margin-bottom: 6rem;
    display: flex;
    justify-content: center;
}

.generator-container {
    max-width: 800px;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.generator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.generator-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.generator-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.credits-display {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
}

.credits-icon {
    font-size: 1.25rem;
}

.generator-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
}

.form-group-gen {
    margin-bottom: 1.5rem;
}

.form-row-gen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-gen label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group-gen textarea,
.form-group-gen input[type="text"],
.form-group-gen select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    color: #202124;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    resize: vertical;
}

.form-group-gen textarea:focus,
.form-group-gen input[type="text"]:focus,
.form-group-gen select:focus {
    outline: none;
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group-gen textarea::placeholder,
.form-group-gen input::placeholder {
    color: #adb5bd;
}

.generate-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    margin-top: 0.5rem;
}

.generate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.4);
}

.generate-button:active {
    transform: translateY(0);
}

.generate-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.generated-results {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.generated-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.generated-grid {
    display: grid;
    gap: 1rem;
}

.generated-hook-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.generated-hook-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.generated-hook-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 500;
}

.generated-hook-actions {
    display: flex;
    gap: 0.75rem;
}

.copy-button {
    padding: 0.5rem 1rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background: #5568d3;
}

.copy-button.copied {
    background: #10b981;
}

/* Sections */
.results-section,
.setup-guide,
.features-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Setup Steps */
.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid #dee2e6;
    color: #465166;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.api-link {
    color: #465166;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.api-link:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(70, 81, 102, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.result-platform {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.result-hook {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.result-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.result-pattern {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    color: #465166;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0;
    opacity: 0.6;
    font-size: 0.875rem;
}

.footer-links {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
    text-decoration: underline;
}

.footer-links span {
    margin: 0 0.75rem;
    color: #999;
}

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

    .description {
        font-size: 1rem;
    }

    .card {
        padding: 2rem;
    }

    .search-inputs {
        flex-direction: column;
        gap: 0;
        padding: 0.75rem;
    }

    .search-select {
        min-width: auto !important;
        padding: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .search-select:last-child {
        border-bottom: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .step {
        flex-direction: column;
    }

    .generator-container {
        padding: 2rem 1.5rem;
    }

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

    .generator-form {
        padding: 1.5rem;
    }

    .form-row-gen {
        grid-template-columns: 1fr;
    }

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

    .data-proof {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }
}

/* Loading Animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
}

/* ============================================
   AUTHENTICATION STYLES
   ============================================ */

/* Auth Section in Header */
.auth-section {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 10;
}

.auth-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.auth-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.auth-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

.auth-button.primary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #63408b 100%);
    transform: translateY(-2px);
}

/* User Menu */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.user-info:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.user-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.user-credits {
    color: #fbbf24;
    font-weight: 700;
    font-size: 14px;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    overflow: hidden;
    z-index: 1000;
}

.user-dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #4A5A7A;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.user-dropdown a:hover {
    background: #f3f4f6;
}

/* Auth Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.auth-modal {
    padding: 3rem;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 28px;
    color: #9CA3AF;
    cursor: pointer;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #4A5A7A;
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.auth-modal-header p {
    color: #6B7280;
    font-size: 14px;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form label {
    display: block;
    font-weight: 600;
    color: #4A5A7A;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.auth-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.auth-submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.auth-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.auth-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #6B7280;
    font-size: 14px;
}

.auth-footer a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E5E7EB;
}

.auth-divider span {
    padding: 0 1rem;
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 500;
}

.auth-social-button {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.auth-social-button:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

.auth-social-button.google {
    color: #4A5A7A;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-section {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }

    .auth-button {
        padding: 0.5rem 1rem;
        font-size: 14px;
    }

    .user-info {
        padding: 0.4rem 0.75rem;
    }

    .user-name {
        display: none;
    }

    .auth-modal {
        padding: 2rem 1.5rem;
    }
}

/* Sign-up CTA */
.signup-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: slideDown 0.5s ease;
}

.signup-cta p {
    color: white;
    margin-bottom: 1rem;
    font-size: 16px;
}

.cta-button {
    background: white;
    color: #667eea;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-logo:hover {
    opacity: 0.8;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: white;
    border-bottom-color: #667eea;
}

.nav-link.active {
    color: white;
    border-bottom-color: #667eea;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Add spacing to account for fixed navbar */
body {
    padding-top: 80px;
}

.container {
    padding-top: 0;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-logo {
        font-size: 16px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 32, 44, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 16px;
        width: 100%;
        padding: 0.75rem 0;
    }

    .nav-auth {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .auth-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .user-menu {
        width: 100%;
    }

    body {
        padding-top: 70px;
    }
}

/* Benefits Section Hover Effects */
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2) !important;
    border-color: #667eea !important;
}

.benefit-card {
    cursor: default;
}

.benefit-icon {
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}
