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

:root {
    /* Logo Colors - Orange & Navy Blue */
    --primary: #FF9800;
    --primary-dark: #F57C00;
    --primary-light: #FFB74D;
    --secondary: #8B5CF6;
    --accent: #FFA726;
    --bg-dark: #1A2332;
    --bg-darker: #0D1117;
    --bg-card: #243447;
    --bg-card-hover: #2E4057;
    --text-white: #F1F5F9;
    --text-gray: #94A3B8;
    --text-light: #CBD5E1;
    --border-dark: #3A4A5C;
    --success: #4CAF50;
    --danger: #EF4444;
    --warning: #FF9800;
    
    /* Admin panel keeps original green */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-darker);
    font-size: 16px;
}

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

/* Navigation - Dark */
.navbar {
    background: var(--bg-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 152, 0, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 167, 38, 0.4);
    font-weight: 700;
}

.btn-accent:hover {
    background: #FFB74D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-dark);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Hero Section - Dark with Gradient */
.hero {
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    color: var(--text-white);
    padding: 6rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.15), transparent);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero h1 .highlight-green {
    color: var(--primary);
}

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

.hero .btn {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.guarantee-badge {
    display: inline-block;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Avatar Row */
.avatar-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0 1rem;
}

.avatar-row img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    margin-left: -12px;
}

.avatar-row img:first-child {
    margin-left: 0;
}

.avatar-count {
    background: var(--bg-card);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    border: 3px solid var(--bg-dark);
    margin-left: -12px;
}

.stars-rating {
    color: #FFC107;
    font-size: 1.125rem;
    margin-right: 0.5rem;
}

/* Statistics Section - Dark Cards */
.stats-section {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.stats-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 700;
    color: var(--text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card-dark {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-dark);
    transition: all 0.3s;
}

.stat-card-dark:nth-child(1) {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E293B 100%);
    border-color: #3B82F6;
}

.stat-card-dark:nth-child(2) {
    background: linear-gradient(135deg, #065F46 0%, #1E293B 100%);
    border-color: #10B981;
}

.stat-card-dark:nth-child(3) {
    background: linear-gradient(135deg, #581C87 0%, #1E293B 100%);
    border-color: #A78BFA;
}

.stat-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.stat-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-card-dark:nth-child(1) .stat-number {
    color: #60A5FA;
}

.stat-card-dark:nth-child(2) .stat-number {
    color: #34D399;
}

.stat-card-dark:nth-child(3) .stat-number {
    color: #C4B5FD;
}

.stat-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

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

/* Features Section - Dark */
.features {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.features h2 .highlight-green {
    color: var(--primary);
}

.features > .container > p {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.feature-card-dark {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: left;
    border: 1px solid var(--border-dark);
    transition: all 0.3s;
}

.feature-card-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--primary);
}

.feature-card-dark i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card-dark h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
}

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

/* Pricing - Dark */
.pricing {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.pricing-card-dark {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--border-dark);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-dark);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-darker);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-dark);
}

.pricing-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.pricing-info h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.pricing-info .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: line-through;
    text-decoration-color: #EF4444;
}

.pricing-info .price-new {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin-left: 1rem;
}

.pricing-info p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

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

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pricing-feature i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.pricing-feature-content h4 {
    font-size: 1.125rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.pricing-feature-content p {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.pricing-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
}

.pricing-footer .btn {
    font-size: 1.25rem;
    padding: 1rem 3rem;
}

/* Testimonials - Dark Cards */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.testimonials-section h2 .highlight-purple {
    color: var(--secondary);
}

.testimonials-section > .container > p {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

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

.testimonial-card-dark {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s;
}

.testimonial-card-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--primary);
}

.testimonial-header {
    margin-bottom: 1.5rem;
}

.testimonial-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info small {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* CTA Section - Gradient */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    background: white;
    color: var(--secondary);
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.cta-section .btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Dashboard - Dark */
.dashboard {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
    background: var(--bg-darker);
}

.dashboard-header h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.dashboard-header p {
    color: var(--text-gray);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.stat-card h3 {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

/* Orders - Dark Cards */
.orders-list {
    display: grid;
    gap: 1.5rem;
}

.order-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-dark);
    transition: all 0.3s;
}

.order-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    border-color: var(--primary);
}

.order-number {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-white);
}

.badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: capitalize;
}

.badge-warning {
    background: rgba(251, 191, 36, 0.1);
    color: #FCD34D;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.badge-info {
    background: rgba(59, 130, 246, 0.1);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: #34D399;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.order-detail label {
    font-size: 0.8125rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-detail span {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-white);
}

/* Messages - Dark */
.messages-container {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    max-height: 600px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-dark);
}

.message-text {
    background: var(--bg-darker);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    line-height: 1.6;
    color: var(--text-white);
    border: 1px solid var(--border-dark);
}

.message.admin .message-text {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.message-form {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--bg-darker);
    color: var(--text-white);
}

.form-control::placeholder {
    color: var(--text-gray);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    background: var(--bg-dark);
}

/* Auth Forms - Dark */
.auth-container {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background: var(--bg-darker);
}

.auth-card {
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    border: 1px solid var(--border-dark);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

.auth-card > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* Footer - Dark */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 0;
    border-top: 1px solid var(--border-dark);
}

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

.footer-col h4 {
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-white);
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.7;
}

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

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

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9375rem;
}

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

/* Testimonial read more functionality */
.testimonial-short,
.testimonial-full {
    transition: all 0.3s ease;
}

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

.read-more-btn:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    color: var(--text-gray);
    font-size: 0.9375rem;
}

/* Tables - Dark */
.table-container {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: var(--bg-darker);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8125rem;
    color: var(--text-gray);
    letter-spacing: 0.05em;
    padding: 1.125rem 1rem;
}

td {
    padding: 1.125rem 1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-dark);
}

tbody tr:hover {
    background: var(--bg-darker);
}

/* Alerts - Dark */
.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Laptop Mockup */
.laptop-mockup {
    max-width: 900px;
    margin: 4rem auto;
    position: relative;
}

.laptop-screen {
    background: var(--bg-darker);
    border: 12px solid #64748B;
    border-radius: 12px 12px 0 0;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.laptop-bottom {
    height: 20px;
    background: linear-gradient(to bottom, #94A3B8, #64748B);
    border-radius: 0 0 8px 8px;
    position: relative;
}

.laptop-bottom::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 10px;
    background: #475569;
    border-radius: 0 0 50% 50%;
}

/* Free Section - Dark */
.free-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.free-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.free-section h2 .highlight-green {
    color: var(--primary);
}

.free-section p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.free-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.free-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.free-feature i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Responsive Design - Mobile First Approach */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Small screens (768px to 991px) */
@media (max-width: 991px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 4rem 0 6rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile screens (576px to 767px) */
@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
    }

    /* Dashboard Mobile Menu Button */
    .mobile-menu-btn {
        display: flex !important;
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        z-index: 1000 !important;
        background: var(--primary) !important;
        color: white !important;
        border: none !important;
        padding: 0.75rem !important;
        border-radius: 12px !important;
        font-size: 1.25rem !important;
        cursor: pointer !important;
        box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4) !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(10px) !important;
        width: 48px !important;
        height: 48px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Force show mobile menu button on mobile */
    #mobile-menu-toggle {
        display: flex !important;
    }

    /* Hide sidebar on mobile by default */
    #sidebar {
        display: block !important;
    }

    .mobile-menu-btn:hover {
        transform: scale(1.05) !important;
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6) !important;
    }

    .mobile-menu-btn:active {
        transform: scale(0.95) !important;
    }

    /* Sidebar mobile behavior */
    #sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        height: 100vh !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 999 !important;
        width: 280px !important;
    }

    #sidebar.mobile-open {
        transform: translateX(0) !important;
    }

    /* Mobile overlay */
    #mobile-overlay {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0,0,0,0.5) !important;
        z-index: 998 !important;
    }

    /* Main content mobile adjustment */
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
        border-top: 1px solid var(--border-dark);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-dark);
    }
    
    .nav-menu .btn {
        margin-top: 1rem;
        text-align: center;
    }

    .hero {
        padding: 3rem 0 5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero .btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.25rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }

    .features h2,
    .testimonials-section h2,
    .cta-section h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .features > .container > p,
    .testimonials-section > .container > p {
        font-size: 1rem;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

/* Extra small screens (up to 575px) */
@media (max-width: 575px) {
    .mobile-menu-btn {
        top: 0.75rem !important;
        right: 0.75rem !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }
    
    #sidebar {
        width: 100% !important;
        max-width: 320px !important;
    }

    .pricing-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-dark {
        padding: 2rem;
    }
    
    .pricing-info .price {
        font-size: 2.5rem;
    }
    
    .pricing-info .price-new {
        font-size: 3rem;
    }
    
    .testimonial-card-dark {
        padding: 2rem;
    }
    
    .order-card {
        padding: 1.5rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .auth-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .free-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .free-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
}

/* Extra small screens (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 2rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }
    
    .guarantee-badge {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.125rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }

    .features h2,
    .testimonials-section h2,
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .features > .container > p,
    .testimonials-section > .container > p {
        font-size: 0.9rem;
    }

    .feature-card-dark,
    .testimonial-card-dark,
    .stat-card-dark {
        padding: 1.5rem;
    }
    
    .pricing-card-dark {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .pricing-info .price {
        font-size: 2rem;
    }
    
    .pricing-info .price-new {
        font-size: 2.5rem;
    }
    
    .order-card {
        padding: 1rem;
    }
    
    .auth-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .auth-card h2 {
        font-size: 1.75rem;
    }
    
    .free-section h2 {
        font-size: 2rem;
    }
    
    .free-section p {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
    
    .cta-section .btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-sm {
        width: auto;
        max-width: none;
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.125rem;
    }
    
    .logo img {
        height: 32px;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-col p,
    .footer-col a {
        font-size: 0.875rem;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .whatsapp-button,
    .mobile-toggle {
        display: none !important;
    }
    
    .hero,
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .hero h1,
    .cta-section h2 {
        color: black !important;
    }
}

/* Utility */
html {
    scroll-behavior: smooth;
}

*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Toggle visibility - NO !important */
.toggle-hidden {
    display: none;
}
