:root {
    --primary-color: #000000;
    --secondary-color: #5856D6;
    --background-color: #FFFFFF;
    --text-color: #000000;
    --gray-1: #8E8E93;
    --gray-2: #C7C7CC;
    --gray-3: #E5E5EA;
    --danger-color: #FF3B30;
    --success-color: #34C759;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-3);
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 32px;
    width: auto;
    display: block;
}

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

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--gray-2);
}

.nav-links a.active {
    color: var(--gray-2);
}

.nav-links a[href="/pages/profile.html"] {
    color: #000000;
}

.nav-links a[href="/pages/profile.html"].active {
    color: #000000;
}

.nav-links a[href="/pages/profile.html"]:hover {
    opacity: 0.9;
    background-color: #deff37;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-login {
    color: #FFFFFF;
}

.btn-signup {
    background-color: #deff37;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.btn-signup:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0051D0, #4A3DB8);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px - 100px);
}

/* Auth Pages Styles */
.auth-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
}

.auth-box {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
}

.auth-box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    font-size: 16px;
    color: #6e6e73;
    text-align: center;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
    background-color: white;
    color: #1d1d1f;
    height: 48px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group input.error {
    border-color: var(--danger-color);
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: var(--gray-2);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    color: var(--gray-1);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.social-auth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 24px;
}

.social-button-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.btn-social {
    width: 100%;
    height: 48px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
    background-color: white;
    color: #1d1d1f;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
    background-color: #f8f9fa;
    border-color: #d0d0d0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-apple {
    background-color: #000;
    color: white;
    border-color: #000;
}

.btn-apple:hover {
    background-color: #1a1a1a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.btn-social img {
    width: 20px;
    height: 20px;
}

.divider {
    position: relative;
    width: 100%;
    height: 1px;
    background: #e5e5e7;
    margin: 32px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider span {
    position: absolute;
    background: white;
    color: #86868b;
    font-size: 14px;
    font-weight: 400;
    padding: 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.auth-footer a {
    color: #2997ff;
    text-decoration: none;
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    color: var(--gray-1);
    margin-bottom: 2rem;
}

/* Footer Styles */
.footer {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    text-align: center;
    margin-bottom: 3rem;
}

.newsletter-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.newsletter-section p {
    color: #666;
    margin-bottom: 1.5rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #000;
    outline: none;
}

.btn-subscribe {
    padding: 0.8rem 1.5rem;
    background-color: #000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 2rem 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 16px;
    height: auto;
}

.footer-brand h3 {
        font-size: 1.2rem;
    color: #333;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column ul li a:hover {
    color: #000;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background-color: #eee;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
} 

/* About Page Styles */
.about-hero {
    padding-top: 2rem;
    padding-bottom: 80px;
}

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

.about-container h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.003em;
    margin-bottom: 16px;
    text-align: center;
}

.about-container .subtitle {
    font-size: 24px;
    line-height: 1.4;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto 64px;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-card p {
    color: var(--gray-1);
    line-height: 1.6;
}

.team-section {
    text-align: center;
    margin-top: 4rem;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--gray-1);
}

@media (max-width: 768px) {
    .about-container h1 {
        font-size: 2rem;
    }
    
    .about-container .subtitle {
        font-size: 1.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
} 

/* Contact Page Styles */
.contact-hero {
    padding: 4rem 2rem;
}

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

.contact-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-container .subtitle {
    font-size: 1.5rem;
    color: var(--gray-1);
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 24px;
    height: 100%;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.info-card p {
    color: #6e6e73;
    margin-bottom: 8px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-container,
    .info-card {
        padding: 32px;
    }

    .contact-info {
        gap: 16px;
    }
} 

/* Help Page Styles */
.help-hero {
    padding: 4rem 2rem;
}

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

.help-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.help-container .subtitle {
    font-size: 1.5rem;
    color: var(--gray-1);
    text-align: center;
    margin-bottom: 2rem;
}

.help-search {
    max-width: 600px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 1rem;
}

.help-search input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--gray-2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.help-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.help-search .btn {
    padding: 0.75rem 2rem;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.faq-content details {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: var(--gray-3);
}

.faq-content details:last-child {
    margin-bottom: 0;
}

.faq-content summary {
    font-weight: 500;
    cursor: pointer;
    padding-right: 2rem;
    position: relative;
}

.faq-content summary::-webkit-details-marker {
    display: none;
}

.faq-content summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.faq-content details[open] summary::after {
    transform: rotate(45deg);
}

.faq-content p {
    margin-top: 1rem;
    color: var(--gray-1);
    line-height: 1.6;
}

.help-contact {
    text-align: center;
    padding: 4rem 0 2rem;
}

.help-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.help-contact p {
    color: var(--gray-1);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .help-container h1 {
        font-size: 2rem;
    }
    
    .help-container .subtitle {
        font-size: 1.2rem;
    }
    
    .help-search {
        flex-direction: column;
    }
    
    .help-search .btn {
        width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
} 

/* Products Page Styles */
.products-hero {
    padding: 2rem;
}

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

.products-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.products-container .subtitle {
    font-size: 1.5rem;
    color: var(--gray-1);
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid #000;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #000;
    color: #deff37;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

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

.pricing-name {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.pricing-name h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.price {
    text-align: right;
}

.price strong {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.price .period {
    font-size: 16px;
    color: #666;
    margin-left: 4px;
}

.pricing-description {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #333;
    font-size: 16px;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features i {
    color: #000;
    font-size: 14px;
}

.pricing-card .btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .btn-primary {
    background: #000;
    color: #fff;
    border: none;
}

.pricing-card .btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.pricing-card.featured .btn-primary {
    background: #000;
    color: #fff;
}

.pricing-card.featured .btn-primary:hover {
    background: #333;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px;
    }

    .pricing-name {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .price {
        text-align: center;
    }
} 

/* Blog Page Styles */
.blog-hero {
    padding: 4rem 2rem;
}

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

.blog-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.blog-container .subtitle {
    font-size: 1.5rem;
    color: var(--gray-1);
    text-align: center;
    margin-bottom: 2rem;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.search-box input {
    padding: 0.75rem;
    border: 1px solid var(--gray-2);
    border-radius: 8px;
    width: 300px;
}

.category-filters {
    display: flex;
    gap: 1rem;
}

.btn-filter {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-2);
    background: white;
    color: var(--gray-1);
}

.btn-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    color: var(--gray-1);
    font-size: 0.9rem;
}

.blog-meta .category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--gray-1);
    margin-bottom: 1rem;
}

.btn-text {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.btn-pagination {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-2);
    border-radius: 8px;
    background: white;
}

.btn-pagination.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Profile Links Styles */
.profile-links {
    display: flex;
    gap: 20px;
    margin-left: 20px;
}

.profile-link,
.logout-link {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 12px;
}

.profile-link {
    background: #deff37;
    color: #000000;
    opacity: 1;
    font-weight: 600;
}

.profile-link:hover {
    background: #c7e020;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(222, 255, 55, 0.3);
}

.logout-link:hover {
    opacity: 1;
}

.logout-link {
    color: #ff6b6b;
}

.logout-link:hover {
    color: #ff5252;
}



.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #deff37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    color: #000000;
}

.profile-avatar:hover {
    border-color: #000000;
    opacity: 0.9;
}



.profile-info {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-info .user-name {
    font-weight: 750;
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.profile-info .user-email {
    font-size: 12px;
    color: #666;
}

.profile-hero {
    padding: 4rem 2rem;
}

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

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-details h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profile-email {
    color: var(--gray-1);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.auth-provider {
    color: var(--gray-1);
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--gray-3);
    border-radius: 12px;
    display: inline-block;
}

.profile-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    background: var(--gray-3);
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--gray-2);
    transform: translateY(-1px);
}

.profile-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-2);
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    color: var(--gray-1);
    font-weight: 500;
    cursor: pointer;
}

.tab-btn.active {
    color: var(--primary-color);
    position: relative;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}

.stat-card h3 {
    font-size: 1.1rem;
    color: var(--gray-1);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-1);
    font-size: 0.9rem;
}

.recent-activity {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.recent-activity h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-3);
    border-radius: 8px;
}

.activity-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.activity-icon.success {
    background: var(--success-color);
}

.activity-icon.warning {
    background: #FFB020;
}

.activity-icon.info {
    background: var(--primary-color);
}

.activity-details {
    flex: 1;
}

.activity-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.activity-time {
    color: var(--gray-1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .profile-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .profile-details h1 {
        font-size: 1.75rem;
    }
} 

.typewriter-text {
    font-size: 4.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    height: auto;
    display: inline-block;
    position: relative;
    line-height: 1.2;
    width: 100%;
    max-width: 800px;
    overflow: visible;
    text-align: center;
}

.typewriter-text::after {
    content: '|';
    position: absolute;
    top: 0;
    margin-left: 0.1rem;
    color: #000000;
    font-weight: 400;
    animation: cursor-blink 0.8s infinite;
    font-size: inherit;
    line-height: 1;
    right: auto;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f5f5f7;
}

.feature-icon i {
    font-size: 28px;
    color: #000;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content .subtitle {
        font-size: 20px;
    }

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

/* Video Section Styles */
.video-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-content {
    margin-bottom: 3rem;
}

.video-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.video-content p {
    font-size: 1.25rem;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.video-wrapper:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-section {
        padding: 4rem 1.5rem;
    }
    
    .video-content h2 {
        font-size: 2rem;
    }
    
    .video-content p {
        font-size: 1.1rem;
    }
    
    .video-content {
        margin-bottom: 2rem;
    }
}

.hero-section {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    background: #ffffff;
}

/* Hero section'ın alt gradient'ini kaldırıyorum */
.hero-section::after {
    display: none;
}

.typewriter-container {
    height: 5rem;
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .typewriter-text {
        font-size: 2.5rem;
        height: 4rem;
        margin-bottom: 1rem;
    }

    .hero-section {
        min-height: 300px;
    }

    .typewriter-container {
        height: 4rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .typewriter-text {
        font-size: 2rem;
        height: 3rem;
    }

    .typewriter-container {
        height: 3rem;
    }
} 

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    width: 30px;
    height: 30px;
    position: relative;
}

/* Desktop'ta nav-links'i görünür yap */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        position: static !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        background-color: transparent !important;
        padding: 0 !important;
        flex-direction: row !important;
        gap: 2rem !important;
        transition: none !important;
        z-index: auto !important;
        overflow: visible !important;
        overscroll-behavior: auto !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-auth-buttons,
    .mobile-profile-links {
        display: none !important;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 8px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-btn span:nth-child(3) {
    bottom: 8px;
}

/* Mobile auth buttons - default hidden */
.mobile-auth-buttons {
    display: none;
    visibility: hidden;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding: 2rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile profile links - default hidden */
.mobile-profile-links {
    display: none;
    visibility: hidden;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding: 2rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop'ta mobil linkler hiç görünmemeli */
@media (min-width: 769px) {
    .mobile-profile-links,
    .mobile-auth-buttons {
        display: none !important;
        visibility: hidden !important;
    }
}

.mobile-profile-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    padding: 0.75rem 0;
    text-align: center;
    width: 100%;
}

.mobile-profile-link:hover {
    opacity: 1;
}

.mobile-logout-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    padding: 0.75rem 0;
    text-align: center;
    width: 100%;
}

.mobile-logout-link:hover {
    opacity: 1;
}

/* Mobile profile menu - default hidden on desktop */


.mobile-auth-buttons a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    padding: 0.75rem 0;
    text-align: center;
    width: 100%;
}

.mobile-auth-buttons a:hover {
    opacity: 1;
}

.mobile-auth-buttons .btn-signup {
    color: #000000;
    background-color: #deff37;
    padding: 0.75rem 0;
    border-radius: 8px;
    opacity: 1;
}

.mobile-auth-buttons .btn-signup:hover {
    opacity: 0.9;
    color: #000000;
}

.mobile-profile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000000 !important;
    text-decoration: none;
    font-size: 1.1rem;
    background-color: #deff37;
    padding: 0.75rem 0;
    text-align: center;
    width: 100%;
    border-radius: 8px;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.mobile-profile-link:hover {
    opacity: 0.9;
}

.mobile-logout-link {
    color: var(--danger-color) !important;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    padding: 0.75rem 0;
    text-align: center;
    width: 100%;
}

.mobile-logout-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .header .auth-buttons {
        display: none !important;
    }

    .profile-links {
        display: none !important;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        max-height: 100vh;
        max-height: 100dvh;
        background-color: #000000;
        padding: 80px 2rem 0;
        flex-direction: column;
        gap: 1.5rem;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        /* Prevent body scroll when menu is open */
        overscroll-behavior: contain;
    }



    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        opacity: 0.8;
        text-align: left;
        padding-left: 1rem;
    }

    .nav-links a:hover {
        opacity: 1;
    }

    .nav-links a.active {
        opacity: 1;
        color: #deff37;
    }

    .mobile-profile-menu {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        margin-top: auto;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-profile-link,
    .mobile-logout-link {
        display: flex !important;
    }

    .mobile-profile-info {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-profile-name {
        font-size: 1.2rem;
        font-weight: 500;
        color: #FFFFFF;
        margin: 0;
    }

    .mobile-profile-email {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
    }

    .mobile-profile-actions {
        display: flex;
        flex-direction: column;
    }

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

    .mobile-profile-link:hover {
        opacity: 0.9;
        background-color: #deff37;
    }

    .mobile-logout-link {
        color: #FF3B30 !important;
    }

    .mobile-auth-buttons,
    .mobile-profile-links {
        /* Bu elementlerin görünürlüğü JavaScript tarafından kontrol edilir */
        flex-direction: column;
        gap: 1rem;
        margin-top: auto;
        padding: 1.5rem 2rem 2rem;
        width: 100%;
        position: sticky;
        bottom: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        flex-shrink: 0;
    }

    .nav-links .mobile-profile-links a.mobile-profile-link,
    .nav-links .mobile-profile-links a.mobile-logout-link {
        font-size: 1.2rem !important;
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .mobile-auth-buttons a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 1.2rem;
        opacity: 0.8;
        transition: opacity 0.2s ease;
        padding: 0.75rem 0;
        text-align: center;
        width: 100%;
    }

    .mobile-auth-buttons a:hover {
        opacity: 1;
    }

    .mobile-auth-buttons .btn-signup {
        color: #000000;
        background-color: #deff37;
        padding: 0.75rem 0;
        border-radius: 8px;
        opacity: 1;
    }

    .mobile-auth-buttons .btn-signup:hover {
        opacity: 0.9;
        color: #000000;
    }

    .logo {
        position: relative;
        z-index: 1000;
    }
} 

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.testimonial-header p {
    font-size: 1.25rem;
    color: #6e6e73;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #FFD700;
    font-size: 1.25rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #1d1d1f;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.author-info p {
    font-size: 0.875rem;
    color: #6e6e73;
    margin: 0;
}

.testimonial-date {
    font-size: 0.875rem;
    color: #6e6e73;
    margin-top: 0.25rem;
}

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 1.5rem;
    }

    .testimonial-header h2 {
        font-size: 2rem;
    }

    .testimonial-header p {
        font-size: 1.125rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
} 

/* Product Demo Section */
.product-demo-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.demo-content {
    padding-right: 3rem;
}

.demo-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.demo-content p {
    font-size: 1.25rem;
    color: #6e6e73;
    margin-bottom: 1rem;
    line-height: 1.6;
}



.demo-video {
    position: relative;
}

.demo-video .video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.demo-video .video-wrapper:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.demo-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mobile-review-button {
    display: none;
    margin-top: 1rem;
    text-align: center;
}

.mobile-review-button .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .product-demo-section {
        padding: 2rem 1rem;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
    }

    .demo-content {
        padding-right: 0;
        order: 1;
    }
    
    .demo-video {
        order: 2;
    }

    .demo-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .demo-content p {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-review-button {
        display: block;
    }
} 

.product-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(to bottom, #ffffff, #f5f5f7);
    border-radius: 24px;
}

.product-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #000000, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-header p {
    font-size: 1.25rem;
    color: #6e6e73;
    margin-bottom: 2rem;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    font-size: 1.1rem;
    color: #1d1d1f;
    padding: 0.5rem 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .product-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .product-header h2 {
        font-size: 2rem;
    }

    .product-header p {
        font-size: 1.125rem;
    }

    .product-features {
        gap: 1rem;
    }

    .product-features li {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
} 

/* Info Bar Styles */
.info-bar {
    position: fixed;
    top: 120px;
    left: 0;
    transform: translateX(-100%);
    width: auto;
    background-color: rgba(29, 29, 31, 0.95);
    color: white;
    padding: 12px 35px 12px 15px;
    z-index: 1001;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 280px;
}

.info-bar.show {
    transform: translateX(0);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.info-item span {
    font-weight: 600;
    color: #deff37;
}

.info-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s ease;
}

.info-close:hover {
    color: white;
}

.info-close::before,
.info-close::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: currentColor;
    transform-origin: center;
}

.info-close::before {
    transform: rotate(45deg);
}

.info-close::after {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .info-bar {
        top: 100px;
        padding: 10px 30px 10px 12px;
        max-width: 250px;
    }
    
    .info-content {
        font-size: 12px;
    }
} 

.license-details {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.license-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.license-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.license-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.license-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f7;
}

.license-label {
    font-size: 14px;
    color: #6e6e73;
}

.license-value {
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
}

.license-key-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-view-key {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6e6e73;
    transition: color 0.2s ease;
}

.btn-view-key:hover {
    color: #1d1d1f;
}

.license-value.status-active {
    color: #34c759;
}

@media (max-width: 768px) {
    .license-details {
        padding: 16px;
    }
    
    .license-header h3 {
        font-size: 18px;
    }
    
    .license-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: #e8f5e9;
    color: #34c759;
}

.license-badge.premium {
    background-color: #000f;
    color: #af52de;
}

.license-value.status-active {
    color: #34c759;
    font-weight: 500;
}

.device-management {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-3);
}

.device-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.device-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.device-count {
    font-size: 0.9rem;
    color: var(--gray-1);
}

.device-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.device-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: var(--gray-3);
    border-radius: 10px;
}

.device-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.device-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 0;
    margin: 0;
}

.device-details {
    font-size: 0.85rem;
    color: var(--gray-1);
    padding: 0;
    margin: 0;
}

.device-current {
    font-size: 0.85rem;
    color: var(--success-color);
    background-color: rgba(52, 199, 89, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.btn-remove-device {
    padding: 0.4rem 0.75rem;
    border: none;
    background-color: var(--danger-color);
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-remove-device:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .license-details {
        padding: 1rem;
    }

    .license-header h3 {
        font-size: 1.1rem;
    }

    .license-item {
        padding: 0.6rem;
    }

    .device-item {
        padding: 0.6rem;
    }

    .device-name {
        font-size: 0.9rem;
    }

    .device-details,
    .device-current {
        font-size: 0.8rem;
    }
} 

.status-badge {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    background-color: var(--text-color);
    color: white;
}

.license-badge.premium {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    background-color: rgba(52, 199, 89, 0.1);
    color: var(--success-color);
}

.license-value.status-active {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    background-color: var(--text-color);
    color: rgb(0, 0, 0);
}

.device-current {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    background-color: var(--text-color);
    color: white;
}

/* Modal Styles */
.modal {
        display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 10vh auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-1);
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 1.5rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

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

#editProfileForm label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

#editProfileForm input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

#editProfileForm input:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 5vh auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-actions button {
        width: 100%;
    }
} 

.forgot-password-link {
    display: block;
    text-align: right;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin: -0.5rem 0 1rem;
    transition: opacity 0.2s ease;
}

.forgot-password-link:hover {
        opacity: 0.8;
    }

#resetPasswordForm {
    margin-bottom: 1.5rem;
}

.reset-success {
    background-color: rgba(52, 199, 89, 0.1);
    color: var(--success-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.reset-error {
    background-color: rgba(255, 59, 48, 0.1);
    color: var(--danger-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Desktop only class */
.desktop-only {
    display: none;
}

@media (min-width: 769px) {
    .desktop-only {
        display: flex;
    }
}

/* Mobile Profile Menu Styles */
.mobile-profile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-profile-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    padding: 0.75rem 0;
    text-align: center;
    width: 100%;
}

.mobile-profile-link:hover {
    opacity: 1;
}

.mobile-logout-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    padding: 0.75rem 0;
    text-align: center;
    width: 100%;
}

.mobile-logout-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .profile-menu.desktop-only {
        display: none !important;
    }

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

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    border-radius: 6px;
    background: #333;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background: #28a745;
}

.toast-error {
    background: #dc3545;
}

.toast-info {
    background: #17a2b8;
}

@media (max-width: 480px) {
    .toast {
        left: 20px;
        right: 20px;
        text-align: center;
    }
} 

/* Blog Detail Styles */
.blog-detail {
    padding: 4rem 0;
}

.blog-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-detail .blog-meta {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-detail h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.3;
}

.blog-hero-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.blog-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail .blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.blog-detail .blog-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.blog-detail .blog-content p {
    margin-bottom: 1.5rem;
}

.blog-detail .blog-content ul,
.blog-detail .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-detail .blog-content li {
    margin-bottom: 0.5rem;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.blog-navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.blog-navigation a:hover {
    color: var(--primary-color);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.blog-author .author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.blog-author .author-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.blog-author .author-info p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-detail h1 {
        font-size: 2rem;
    }

    .blog-detail .blog-content {
        font-size: 1rem;
    }

    .blog-author {
        flex-direction: column;
        text-align: center;
    }

    .blog-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
} 

.animation-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .animation-container {
        max-width: 400px;
    }
    
    .animation-container lottie-player {
        width: 400px !important;
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    .animation-container {
        max-width: 300px;
    }
    
    .animation-container lottie-player {
        width: 300px !important;
        height: 300px !important;
    }
} 

/* Legal Pages Styles */
.privacy-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 17px;
    line-height: 1.6;
    color: #1d1d1f;
}

.privacy-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.privacy-content p {
    margin-bottom: 24px;
}

.privacy-content ul {
    margin: 24px 0;
    padding-left: 24px;
}

.privacy-content li {
    margin-bottom: 12px;
    color: #1d1d1f;
}

.privacy-content strong {
    color: #6e6e73;
    font-weight: 400;
}

.privacy-contact {
    background: #f5f5f7;
    border-radius: 18px;
    padding: 32px;
    margin-top: 48px;
}

.privacy-contact p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #6e6e73;
}

.about-hero {
    padding-top: 2rem;
    padding-bottom: 80px;
}

.about-container h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.003em;
    margin-bottom: 16px;
    text-align: center;
}

.about-container .subtitle {
    font-size: 24px;
    line-height: 1.4;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto 64px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-container h1 {
        font-size: 36px;
    }
    
    .about-container .subtitle {
        font-size: 20px;
        margin-bottom: 48px;
    }
    
    .privacy-content {
        font-size: 16px;
    }
    
    .privacy-content h2 {
        font-size: 24px;
    }
} 

/* Page Header Styles */
.page-header {
    padding-top: 0.5rem;
    padding-bottom: 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.003em;
    margin-bottom: 16px;
    text-align: center;
}

.page-header .subtitle {
    font-size: 24px;
    line-height: 1.4;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto 32px;
    text-align: center;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header .subtitle {
        font-size: 20px;
        margin-bottom: 48px;
    }
}

/* Products Page Styles */
.products-hero {
    padding: 2rem;
}

/* About Page Styles */
.about-hero {
    padding-top: 2rem;
    padding-bottom: 80px;
}

/* Contact Page Styles */
.contact-hero {
    padding: 2rem;
}

/* Help Page Styles */
.help-hero {
    padding: 2rem;
}

/* Blog Page Styles */
.blog-hero {
    padding: 2rem;
}

/* Profile Page Styles */
.profile-hero {
    padding: 2rem;
}

/* Override existing page specific styles */
.products-container h1,
.about-container h1,
.contact-container h1,
.help-container h1,
.blog-container h1,
.profile-container h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.003em;
    margin-bottom: 16px;
    text-align: center;
}

.products-container .subtitle,
.about-container .subtitle,
.contact-container .subtitle,
.help-container .subtitle,
.blog-container .subtitle,
.profile-container .subtitle {
    font-size: 24px;
    line-height: 1.4;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto 64px;
    text-align: center;
}

@media (max-width: 768px) {
    .products-container h1,
    .about-container h1,
    .contact-container h1,
    .help-container h1,
    .blog-container h1,
    .profile-container h1 {
        font-size: 36px;
    }
    
    .products-container .subtitle,
    .about-container .subtitle,
    .contact-container .subtitle,
    .help-container .subtitle,
    .blog-container .subtitle,
    .profile-container .subtitle {
        font-size: 20px;
        margin-bottom: 48px;
    }
}

/* Milestone Styles */
.milestones {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.milestones::before {
    content: '';
    position: absolute;
    left: calc(140px + 20px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent,
        #e5e5e5 10%,
        #e5e5e5 90%,
        transparent
    );
}

.milestone {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.milestone:last-child {
    margin-bottom: 0;
}

.milestone::before {
    content: '';
    position: absolute;
    left: calc(140px + 20px);
    top: 8px;
    width: 9px;
    height: 9px;
    background: #000;
    border-radius: 50%;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.milestone:hover::before {
    background: #deff37;
    transform: translateX(-4px) scale(1.2);
}

.milestone-year {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-align: right;
}

.milestone-content {
    padding-bottom: 20px;
}

.milestone-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.milestone-content p {
    font-size: 17px;
    line-height: 1.5;
    color: #6e6e73;
    margin: 0;
}

@media (max-width: 768px) {
    .milestones {
        padding: 0 16px;
    }

    .milestones::before {
        left: 20px;
    }

    .milestone {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-left: 48px;
        margin-bottom: 48px;
    }

    .milestone::before {
        left: 20px;
    }

    .milestone-year {
        text-align: left;
        font-size: 18px;
    }

    .milestone-content h3 {
        font-size: 20px;
    }

    .milestone-content p {
        font-size: 16px;
    }
}

/* About CTA Styles */
.about-cta {
    text-align: center;
    max-width: 600px;
    margin: 120px auto 0;
    padding: 60px 20px;
}

.about-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 18px;
    line-height: 1.5;
    color: #6e6e73;
    margin-bottom: 32px;
}

.about-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #000;
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta .btn-primary:hover {
    transform: translateY(-2px);
    background: #333;
}

@media (max-width: 768px) {
    .about-cta {
        margin-top: 80px;
        padding: 40px 20px;
    }

    .about-cta h2 {
        font-size: 28px;
    }

    .about-cta p {
        font-size: 16px;
    }

    .about-cta .btn-primary {
        padding: 14px 28px;
        font-size: 16px;
    }
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1d1d1f;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 32px;
    }

    .contact-form .form-group {
        margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 15px;
    }
}

.features {
    padding-top: 80px;
    padding-bottom: 80px;
}

.features .testimonial-header {
    margin-bottom: 80px;
}

/* Lazy Loading Styles */
.lazy-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lazy-section.visible {
    opacity: 1;
    transform: translateY(0);
}

img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

img:not(.lazy) {
    opacity: 1;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Skeleton Loading */
.skeleton-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.btn-facebook {
    background-color: #1877f2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-facebook:hover {
    background-color: #166fe5;
    transform: translateY(-1px);
}

.btn-facebook i {
    font-size: 1.2rem;
}

.auth-form {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.auth-form .form-group {
    width: 100%;
}

.auth-form input {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--gray-2);
    border-radius: 4px;
    font-size: 14px;
}

.auth-form .btn-primary {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    font-size: 14px;
}