/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0e27;
    --bg-darker: #050812;
    --bg-card: #1a1f3a;
    --text-primary: #ffffff;
    --text-secondary: #b0b8d4;
    --accent-orange: #ff6b35;
    --accent-purple: #a855f7;
    --accent-cyan: #06b6d4;
    --border-color: #2a3052;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.hero-image-1 {
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    animation-delay: 0s;
}

.hero-image-2 {
    top: -50px;
    right: 10%;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    animation-delay: 2s;
}

.hero-image-3 {
    bottom: 0;
    right: 20%;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 14, 39, 0.3) 0%, rgba(10, 14, 39, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Bar */
.search-bar {
    margin: 2rem 0;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-btn-main {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.search-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Search Suggestions */
.search-suggestions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.suggestion-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-icon {
    width: 6px;
    height: 6px;
    opacity: 0.6;
}

.suggestion-tag:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Categories Section */
.how-it-works {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(168, 85, 247, 0.1) 100%);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(168, 85, 247, 0.08) 100%);
    border: 1px solid var(--accent-cyan);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(168, 85, 247, 0.12) 100%);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

.faq-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: rgba(6, 182, 212, 0.08);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    margin: 0;
    flex: 1;
    color: var(--text-primary);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: rgba(6, 182, 212, 0.2);
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-header {
        padding: 1.2rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-content p {
        padding: 0 1.2rem 1.2rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Magnific Assets Section */
.magnific-assets-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.assets-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.assets-text {
    line-height: 1.8;
}

.assets-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.assets-text p:first-child {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.assets-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
}

.assets-list {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
}

.assets-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
    position: relative;
}

.assets-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.1rem;
}

.assets-conclusion {
    color: var(--text-secondary);
    font-style: italic;
    padding: 1.5rem;
    border-left: 3px solid var(--accent-cyan);
    background: rgba(6, 182, 212, 0.05);
    border-radius: 6px;
}

.assets-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid var(--accent-cyan);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.15);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.15));
}

.feature-number {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.feature-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Assets Section */
@media (max-width: 1024px) {
    .assets-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .assets-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .magnific-assets-section {
        padding: 3rem 0;
    }

    .assets-text p {
        font-size: 0.95rem;
    }

    .assets-text p:first-child {
        font-size: 1rem;
    }

    .assets-subheading {
        font-size: 1.1rem;
    }

    .assets-list li {
        padding: 0.6rem 0;
        padding-left: 1.8rem;
        font-size: 0.9rem;
    }

    .assets-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-number {
        font-size: 1.5rem;
    }

    .feature-label {
        font-size: 0.85rem;
    }
}

/* Pre-Footer Section */
.pre-footer {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pre-footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pre-footer-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pre-footer-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 600px;
}

.btn-large {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(5, 8, 18, 0.95) 100%);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .pre-footer {
        padding: 2.5rem 0;
    }

    .pre-footer-content h2 {
        font-size: 1.5rem;
    }

    .pre-footer-content p {
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 0 1.5rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}
.benefits-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.03) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.7) 0%, rgba(168, 85, 247, 0.1) 100%);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.15));
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.benefit-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Benefits */
@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .benefit-title {
        font-size: 1.05rem;
    }

    .benefit-description {
        font-size: 0.85rem;
    }
}

/* Page Hero Section */
.page-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-bottom: 1px solid var(--border-color);
    margin-top: 60px;
}

.page-header {
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.values-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid var(--accent-cyan);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.philosophy-section {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.philosophy-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.philosophy-section > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    padding: 2rem;
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(26, 31, 58, 0.5);
}

.philosophy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 6px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(6, 182, 212, 0.2);
}

.support-topics {
    margin-top: 4rem;
}

.support-topics h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.topic-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.1);
}

.topic-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.topic-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* How It Works - Detailed Guide */
.detailed-guide {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.detailed-guide h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.guide-step {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.guide-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.guide-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.guide-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.guide-content ol {
    margin-left: 2rem;
    color: var(--text-secondary);
}

.guide-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.guide-content a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.guide-content a:hover {
    text-decoration: underline;
}

.tips-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tips-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--accent-cyan);
    border-radius: 8px;
    padding: 1.5rem;
}

.tip-card p {
    margin: 0;
    color: var(--text-secondary);
}

.supported-formats {
    margin-top: 4rem;
}

.supported-formats h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.format-group {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.format-group:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
}

.format-group h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-cyan);
}

.format-group p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Responsive Pages */
@media (max-width: 1024px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 25vh;
        margin-top: 50px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .detailed-guide {
        padding: 1.5rem;
    }

    .guide-header {
        flex-direction: column;
        text-align: center;
    }

    .guide-content ol {
        margin-left: 1.5rem;
    }

    .formats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(26, 31, 58, 0.95);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: none;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.toast.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toast.hide {
    animation: slideOut 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .auth-buttons {
        order: 2;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        width: 250px;
        height: 250px;
    }

    .search-suggestions {
        gap: 0.5rem;
    }

    .suggestion-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .search-input {
        font-size: 0.9rem;
    }

    .search-actions {
        gap: 0.25rem;
    }

    .search-btn {
        font-size: 1rem;
        padding: 0.3rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}
