:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: rgba(17, 17, 17, 0.8);
    --bg-card: rgba(17, 17, 17, 0.95);
    --border-soft: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #ffffff;
    --accent-hover: #e0e0e0;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gradient-start: #1a1a1a;
    --gradient-end: #0a0a0a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--text-primary);
    text-decoration: none;
}

a:hover {
    color: var(--text-secondary);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

main {
    flex: 1;
}

.container {
    width: min(1100px, 90%);
    margin: 0 auto;
    padding: 3rem 0;
}

.glass-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 2rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.6);
    color: #f87171;
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(248, 113, 113, 0.8);
    color: #ffe4e6;
}

.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.8rem, 4vw, 3.75rem);
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-secondary);
    border-radius: 18px;
    padding: 1.8rem;
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, border 0.25s ease;
    min-height: 220px;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 20, 0.9);
}

.feature-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.faq {
    margin-top: 4rem;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(12px);
    margin-bottom: 1rem;
}

.faq-item h4 {
    margin: 0 0 0.75rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Hero Enhancements */
.hero-description {
    color: var(--text-primary);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.hero-subdescription {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.1rem 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Video Section */
.video-section {
    background: rgba(15, 15, 15, 0.5);
    padding: 4rem 0;
    margin: 2rem 0;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.video-container {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-soft);
}

/* Screenshots Section */
.screenshots-section {
    padding: 3rem 0;
}

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

.screenshot-item {
    text-align: center;
}

.screenshot-item img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
    background: var(--bg-secondary);
    aspect-ratio: 16/9;
    object-fit: cover;
}

.screenshot-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.screenshot-item h4 {
    margin: 0.75rem 0 0.5rem;
    font-size: 1.1rem;
}

.screenshot-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Enhanced Feature Cards */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.feature-list li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-list li::before {
    content: "✓ ";
    color: var(--text-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    background: rgba(15, 15, 15, 0.5);
    padding: 4rem 0;
    margin: 3rem 0;
}

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

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--text-primary);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.pricing-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-badge.popular {
    background: var(--text-primary);
    color: #000000;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin: 0.5rem 0 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

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

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

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

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-note a {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
}

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

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 2rem;
    backdrop-filter: blur(12px);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author strong {
    color: var(--text-primary);
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Footer Enhancements */
.site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-soft);
    background: #0a0a0a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin: 0 0 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.social-link.discord:hover {
    background: #5865F2;
}

.social-link.youtube:hover {
    background: #FF0000;
}

.social-link svg {
    color: var(--text-primary);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-cta-text {
    margin-bottom: 1rem;
}

.btn-footer {
    margin-top: 0.5rem;
}

.footer-subtext {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.doc-section {
    background: var(--bg-secondary);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(12px);
    margin-top: 2rem;
}

.code-block {
    position: relative;
    background: rgba(5, 5, 5, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    overflow-x: auto;
    font-family: 'Fira Code', 'Consolas', 'Courier New', monospace;
    color: #e0e0e0;
    line-height: 1.6;
}

.code-block[data-copy] {
    cursor: pointer;
    user-select: all;
}

[data-copy].copied {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

[data-copy].copied::after {
    content: 'Kopyalandı';
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 0.75rem;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

/* Login Page */
.login-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

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

.login-header h1 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem;
    color: var(--text-primary);
}

.login-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.login-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 2.4rem;
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.login-card .input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-card .input-group label svg {
    opacity: 0.7;
}

.login-card input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Register Prompt Card */
.login-register-prompt {
    margin-top: 2rem;
}

.register-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
}

.register-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    background: rgba(88, 101, 242, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-icon svg {
    color: #5865F2;
}

.register-card h3 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
    color: var(--text-primary);
}

.register-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-discord {
    background: #5865F2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    box-shadow: 0 15px 30px -12px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(88, 101, 242, 0.6);
    color: white;
}

.register-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.login-back-home {
    text-align: center;
    margin-top: 2rem;
}

.link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.link-secondary:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.role-switch {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(10, 10, 10, 0.9);
    padding: 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.role-switch__btn {
    flex: 1;
    padding: 0.55rem 1.1rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.role-switch__btn.active {
    background: var(--text-primary);
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.role-switch__btn:hover {
    color: var(--text-primary);
}

.login-card form {
    display: none;
    margin-top: 1.8rem;
}

.login-card form.active {
    display: block;
}

.login-card p.helper {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pill.aktif {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
}

.status-pill.yakinda {
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
}

.status-pill.sonlandi {
    background: rgba(239, 68, 68, 0.18);
    color: #f87171;
}

.status-pill.kapali {
    background: rgba(148, 163, 184, 0.18);
    color: #cbd5f5;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table thead {
    background: rgba(255, 255, 255, 0.05);
}

.table th,
.table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    font-size: 0.9rem;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.3rem;
}

.input-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group input,
.input-group textarea,
.input-group select {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.8);
    color: var(--text-primary);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.alert {
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.27);
    color: #34d399;
}

.alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.27);
    color: #f87171;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.45rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:focus {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.nav-toggle__bar {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 999px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo img {
    height: 42px;
}

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

.nav-links a.nav-link {
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-links a.nav-link:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links .nav-login {
    margin-left: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.92rem;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.nav-links .nav-login:hover {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        margin-top: 0.75rem;
        background: var(--bg-secondary);
        border: 1px solid var(--border-soft);
        border-radius: 16px;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        z-index: 40;
        pointer-events: none;
        transform: translateY(0.35rem);
        transition: opacity 0.2s ease, max-height 0.2s ease, padding 0.2s ease, transform 0.2s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }

    .nav-links.open {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        padding: 1rem;
        transform: translateY(0);
    }

    .nav-links .nav-link {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .nav-links .btn {
        width: 100%;
        justify-content: center;
    }
}

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

    .hero-description {
        font-size: 1.15rem;
    }

    .hero-subdescription {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .top-nav {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
    }

    .nav-links .nav-login {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .login-card {
        padding: 2rem;
    }

    .role-switch {
        flex-direction: column;
        align-items: stretch;
    }

    .role-switch__btn {
        width: 100%;
    }

    .container {
        width: min(95%, 600px);
        padding: 2.5rem 0;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .video-container iframe {
        height: 300px;
    }

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

    .login-page {
        min-height: auto;
        padding: 2rem 0;
    }

    .login-header h1 {
        font-size: 2rem;
    }

    .login-header p {
        font-size: 1rem;
    }

    .login-card {
        padding: 1.8rem;
    }

    .register-card {
        padding: 2rem;
    }

    .register-features {
        flex-direction: column;
        gap: 1rem;
    }

    .register-card h3 {
        font-size: 1.5rem;
    }

    .register-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
    }

    .stat-item {
        width: 100%;
    }

    .video-container iframe {
        height: 220px;
    }

    .pricing-card {
        padding: 1.8rem;
    }

    .testimonial-card {
        padding: 1.8rem;
    }

    .faq .faq-item {
        padding: 1.25rem;
    }
}
