/* Legal Pages */
.document-type {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: -0.5rem auto 0.5rem;
    padding: 0.25rem 1rem;
    background-color: #f5f5f5;
    display: table;
    border-radius: 4px;
    border-left: 3px solid #4a6cf7;
    text-align: center;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.legal-container h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    font-size: 2.2rem;
}

.legal-container .last-updated {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 20px;
    font-style: italic;
}

.legal-container section {
    margin-bottom: 20px;
}

.legal-container h2 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.legal-container h3 {
    color: var(--primary-color);
    margin: 25px 0 10px;
    font-size: 1.2rem;
}

.legal-container p, .legal-container ul, .legal-container ol {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-container ul, .legal-container ol {
    padding-left: 30px;
}

.legal-container li {
    margin-bottom: 8px;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-container th, .legal-container td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.legal-container th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.legal-container tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-container {
        padding: 100px 15px 30px; /* Increased top padding to account for fixed header */
    }
    
    .legal-container h1 {
        font-size: 1.8rem;
        margin-top: 0;
    }
    
    .legal-container h2 {
        font-size: 1.3rem;
        margin-top: 25px;
    }
    
    .legal-container h3 {
        font-size: 1.1rem;
        margin-top: 20px;
    }
}

/* Base Styles */
:root {
    --primary-color: #005A9E;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --light-text: #6c757d;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #004a80; /* Slightly darker shade of the primary color */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

p {
    margin-bottom: 15px;
    color: var(--light-text);
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    padding: 2px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
    text-align: center;
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 5% 60px;
    }
    
    .hero-content {
        text-align: left;
        margin: 0;
    }
    
    .download-buttons {
        justify-content: flex-start;
    }
}

.hero-content {
    flex: 1;
    padding: 0 60px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin: 30px auto 0;
    justify-content: center;
}

.download-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-image img {
    max-width: 100%;
    max-height: 60vh; /* Ekran yüksekliğinin %60'ı kadar maksimum yükseklik */
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    object-fit: contain;
}

.hero-image img:hover {
    transform: translateY(-10px);
}

/* Features Section */
.features {
    background-color: var(--white);
}

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

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    position: relative;
    border: 1px solid #eaeaea;
}

.feature.highlight-feature {
    background: white;
    border: 1px solid #eaeaea;
    position: relative;
}

.feature.highlight-feature i {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature.highlight-feature h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

/* Screenshots Section */
.screenshots {
    background-color: var(--secondary-color);
}

.screenshot-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.screenshot-container img {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.screenshot-container img:hover {
    transform: translateY(-10px);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.contact h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 2.2rem;
}

.contact-email {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-email p {
    margin: 0 0 15px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.email-link {
    display: inline-block;
    font-size: 1.3rem;
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #4a6cf7;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background-color: #4a6cf7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 108, 247, 0.3);
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 15px;
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-email {
        padding: 20px 15px;
    }
    
    .email-link {
        font-size: 1.1rem;
        padding: 8px 16px;
    }
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo-img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    padding: 2px;
    background-color: white;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 20px 0;
}

.footer-links a {
    position: relative;
    padding: 0 12px;
}

.footer-links a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -4px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.footer-links a:last-child {
    padding-right: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.4);
}

@media (max-width: 768px) {
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-image img {
        max-height: 50vh;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

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

@media (max-width: 768px) {
    .hero-image img {
        max-height: 45vh;
        margin: 0 auto;
    }
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 20px;
        margin-bottom: 40px;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 30px;
        text-align: center;
        padding: 0 10px;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .download-buttons .btn {
        justify-content: center;
    }
}

.subscription-section {
    background: var(--secondary-color);
    padding: 80px 0;
}
.subscription-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
}
.subscription-container h2 {
    margin-bottom: 24px;
}
.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.subscription-form input,
.subscription-form select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
}
.subscription-form button {
    margin-top: 12px;
}
.subscription-success {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 18px;
}

/* Modern Pricing Table Styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 8px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

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

.pricing-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 90, 158, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 90, 158, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--light-text);
}

.plan-description {
    color: var(--light-text);
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features i {
    color: #28a745;
    font-size: 1rem;
}

.billing-period {
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.yearly-total {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 12px 0;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    width: 100%;
    padding: 14px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #004a80; /* Slightly darker shade of the primary color */
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 90, 158, 0.3);
}

/* FAQ Section */
.faq-section {
margin-top: 60px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
padding: 0 20px;
}

.faq-section h3 {
text-align: center;
margin-bottom: 32px;
color: #1a1a2e;
font-size: 2rem;
}

.faq-item {
border: 1px solid #e0e0e0;
border-radius: 8px;
margin-bottom: 16px;
overflow: hidden;
background: white;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item.active {
border-color: #4a90e2;
}

.faq-question {
padding: 20px;
background: white;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
border: none;
width: 100%;
text-align: left;
font-size: 1.1rem;
font-weight: 500;
color: #1a1a2e;
}

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

.faq-question i {
transition: transform 0.3s ease;
margin-left: 10px;
color: #4a90e2;
}

.faq-answer {
padding: 0 20px;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
background: #f8f9fa;
color: #4a4a4a;
line-height: 1.6;
font-size: 1rem;
}

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

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.faq-section {
margin-top: 40px;
padding: 0 15px;
}
.faq-section h3 {
font-size: 1.5rem;
margin-bottom: 24px;
}
.faq-question {
padding: 16px;
font-size: 1rem;
}
.faq-answer {
padding: 0 16px;
font-size: 0.95rem;
}
.faq-item.active .faq-answer {
padding: 0 16px 16px;
}
}

/* Responsive Design for Pricing */
@media (max-width: 1024px) {
.pricing-cards {
grid-template-columns: 1fr 1fr;
gap: 20px;
padding: 0 15px;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 28px 20px;
        min-height: 550px;
    }
    
    .amount {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .pricing-card {
        padding: 24px 20px;
        min-height: auto;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .plan-features {
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .pricing-cards {
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 20px 16px;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .plan-header h3 {
        font-size: 1.3rem;
    }
}

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

/* Style for subscription plan durations */
.billing-period {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1.1em;
    margin: 10px 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.auth-buttons .btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    min-width: 100px;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    line-height: 1;
    text-decoration: none;
}

.auth-buttons .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.auth-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 90, 158, 0.3);
}

.auth-buttons .btn-outline.active {
    background: var(--primary-color);
    color: white;
}

.auth-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.auth-buttons .btn-primary:hover {
    background: #3a5bff;
    border-color: #3a5bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 90, 158, 0.3);
}

.auth-buttons .btn-primary.active {
    background: var(--primary-color);
    color: white;
}

/* Auth Pages Styles */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
}

.auth-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.12);
    padding: 48px;
    max-width: 520px;
    width: 100%;
    position: relative;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 0;
}

.auth-header h2 {
    margin-bottom: 16px;
    color: var(--text-color);
    font-size: 2.2rem;
    font-weight: 700;
}

.auth-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.form-group input {
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 90, 158, 0.1);
}

.form-group input:hover {
    border-color: #d0d0d0;
    background: white;
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--light-text);
    transition: var(--transition);
    font-size: 1.1rem;
    padding: 4px;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin: 8px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.5;
    flex: 1;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label:hover .checkmark {
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    margin: 8px 0;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 32px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider span {
    background: white;
    padding: 0 20px;
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-google {
    background: white;
    color: var(--text-color);
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.auth-message {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
    font-size: 0.95rem;
}

.auth-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.auth-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive Auth */
@media (max-width: 768px) {
    .auth-section {
        padding: 120px 16px 40px;
    }
    
    .auth-container {
        padding: 40px 32px;
        margin: 0 8px;
        border-radius: 16px;
        max-width: 100%;
    }
    
    .auth-header {
        margin-bottom: 32px;
    }
    
    .auth-header h2 {
        font-size: 1.9rem;
    }
    
    .auth-header p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .forgot-password {
        align-self: flex-end;
    }
    
    .form-group input {
        padding: 14px 18px;
    }
    
    .btn-full {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 100px 12px 30px;
    }
    
    .auth-container {
        padding: 32px 24px;
        border-radius: 12px;
    }
    
    .auth-header {
        margin-bottom: 28px;
    }
    
    .auth-header h2 {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .auth-header p {
        font-size: 0.95rem;
    }
    
    .auth-form {
        gap: 20px;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .form-group input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .btn-full {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .auth-divider {
        margin: 24px 0;
    }
    
    .auth-footer {
        margin-top: 24px;
        padding-top: 20px;
    }
    
    .auth-message {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.user-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .user-info {
        display: none;
    }
}

.optional {
    color: var(--light-text);
    font-weight: 400;
    font-size: 0.85rem;
}

.btn-full i, .btn-google i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .auth-buttons {
        display: none;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--secondary-color);
    padding: 80px 0;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-section > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--light-text);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eaeaea;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

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

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.billing-period {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 15px 0;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
    color: var(--primary-color);
}

.price .period {
    align-self: flex-end;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 5px;
    margin-left: 5px;
}

.plan-savings {
    color: #4CAF50;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
}

.plan-features {
    list-style: none;
    margin: 25px 0 30px;
    padding: 0;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.plan-features i {
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.plan-features i.fa-check {
    color: #4CAF50;
}

.plan-features i.fa-times {
    color: #f44336;
}

.pricing-card .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
}

.pricing-card .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.pricing-card .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* App Store Buttons in Pricing Cards */
.pricing-card .app-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.pricing-card .app-store-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-card .app-store-buttons .btn i {
    font-size: 1.2rem;
}

/* Responsive adjustments for app store buttons */
@media (max-width: 768px) {
    .pricing-card .app-store-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .pricing-card .app-store-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .pricing-card .app-store-buttons {
        flex-direction: column;
    }
    
    .pricing-card .app-store-buttons .btn {
        width: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .price .amount {
        font-size: 2.2rem;
    }
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 90, 158, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top-btn:hover {
    background: #004a80; /* Slightly darker shade of the primary color */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 90, 158, 0.4);
}

.back-to-top-btn.show {
    display: flex;
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}