/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');

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

:root {
    --primary: #E1A2CD;
    --primary-dark: #D78BBF;
    --secondary: #EADFA5;
    --success: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --border: #e5e7eb;
    --gradient: linear-gradient(90deg, rgba(225, 162, 205, 1) 52%, rgba(234, 223, 165, 1) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-primary);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Yeseva One', serif;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 24px;
}

.logo-image {
    height: 32px;
    width: auto;
    margin-right: 4px;
}

.logo-text {
    font-family: 'Yeseva One', serif;
    font-size: 24px;
    color: black;
    font-weight: normal;
    letter-spacing: 1px;
}

.auth-logo .logo-text {
    font-size: 32px;
    display: block;
    text-align: center;
}

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

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

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

/* Buttons */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: black;
    color: white;
}

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

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    color: black;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: black;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Image / Dashboard Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.dashboard-mockup {
    width: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    overflow: hidden;
}

.mockup-header {
    padding: 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.mockup-content {
    padding: 40px;
    text-align: center;
}

.progress-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
}

.progress-circle svg {
    transform: rotate(-90deg);
}

.progress-circle circle {
    fill: none;
    stroke-width: 12;
}

.progress-circle circle:first-child {
    stroke: var(--bg-secondary);
}

.progress-circle circle.progress {
    stroke: url(#gradient);
    stroke-dasharray: 565.48;
    stroke-dashoffset: 150;
    stroke-linecap: round;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-text .hours {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.progress-text .label {
    font-size: 14px;
    color: var(--text-secondary);
}

.skill-label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.milestone-text {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Features Section */
.features {
    padding: 140px 0;
    background: url('img/bg2.jpg') center/cover no-repeat;
}

.features .section-title {
    color: white;
}

.features .section-subtitle {
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.feature-card {
    padding: 60px 48px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:nth-child(3n) {
    border-right: none;
}

.feature-card:nth-last-child(-n+3) {
    border-bottom: none;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.steps {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
    border: 6px solid white;
}

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

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.testimonials-slider {
    overflow: hidden;
    margin-top: 48px;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    animation: scroll 120s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.author-title {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.free-app-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.free-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.free-badge span:first-child {
    font-size: 24px;
}

.free-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.free-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.free-features {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.free-features li {
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
}

.free-cta-section {
    text-align: center;
    padding: 32px 0;
    border-bottom: 2px dashed var(--border);
    margin-bottom: 32px;
}

.free-cta-section .btn {
    font-size: 18px;
    padding: 16px 48px;
}

.free-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.support-section {
    text-align: center;
}

.support-divider {
    margin: 32px 0 24px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.support-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.btn-support {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--primary);
    color: black;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--gradient);
    color: black;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background: black;
    color: white;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: black;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 60px;
    margin-bottom: 40px;
}



.footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}


.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .free-app-card {
        padding: 40px 24px;
    }
    
    .free-content {
        padding: 20px 24px;
    }
    
    .free-features {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .steps::before {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .dashboard-mockup {
        width: 100%;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.legal-content {

    margin: 0 auto;
    background: var(--bg-primary);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.legal-content .last-updated {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

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

.legal-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.cookie-table thead {
    background: var(--bg-secondary);
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border);
}

.cookie-table td {
    padding: 12px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.cookie-table tbody tr:hover {
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 40px 24px;
    }
    
    .legal-content h1 {
        font-size: 32px;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
    
    .cookie-table {
        font-size: 12px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 140px 0 80px;
    background: url('img/headerbg1.jpeg') center/cover no-repeat;
    color: black;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 0;
}

.about-section.bg-light {
    background: var(--bg-secondary);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-grid.reverse {
    direction: rtl;
}

.about-content-grid.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-mission-story {
    padding: 0 !important;
}

.about-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.about-content-split .about-text {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: rgba(252, 187, 248, 0.63);
}

.about-content-split .about-text:first-child .container-half {
    margin-left: auto;
    margin-right: 80px;
}

.about-content-split .about-text:last-child .container-half {
    margin-left: 80px;
    margin-right: auto;
}

.container-half {
    max-width: 600px;
    padding: 0 40px;
}

.about-text-gradient h2,
.about-text-gradient p {
    color: var(--text-primary);
}

.about-story-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-story-centered h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-story-centered p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-mission-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-stats-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-stat {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.about-stat:last-child {
    border-bottom: none;
}

.about-stat-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.story-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.story-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.story-card p {
    font-size: 16px;
    color: var(--text-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(46%) sepia(84%) saturate(2519%) hue-rotate(227deg) brightness(99%) contrast(92%);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
    max-width: 300px;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.team-member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
}

.team-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.team-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-cta {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
    color: black;
}

.about-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: black;
}

.about-cta p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: black;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
}

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

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.contact-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form .form-group textarea {
    resize: vertical;
}

/* Contact Page Styles - REMOVED */
.contact-hero {
    padding: 140px 0 80px;
    background: url('img/headerbg1.jpeg') center/cover no-repeat;
    color: black;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.contact-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
    text-align: center;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-links a {
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s;
}

.quick-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.social-icon {
    font-size: 20px;
    font-weight: 700;
    width: 24px;
    text-align: center;
}

.support-options {
    padding: 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.support-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.support-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Responsive Styles for About and Contact Pages */
@media (max-width: 1024px) {
    .about-content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 42px;
    }
    
    .about-text h2,
    .about-cta h2 {
        font-size: 32px;
    }
    
    .about-text p,
    .about-subtitle,
    .contact-subtitle,
    .about-cta p {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .about-stats-card,
    .story-card {
        padding: 32px 24px;
    }
}

/* Help Center Styles */
.help-hero {
    padding: 140px 0 80px;
    background: url('img/headerbg1.jpeg') center/cover no-repeat;
    color: black;
    text-align: center;
}

.help-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.help-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
}

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

.help-search input {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
}

.help-search input:focus {
    outline: 2px solid white;
}

.help-quick-links {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.quick-link-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.quick-link-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.quick-link-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.quick-link-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.help-content {
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.category-icon {
    font-size: 40px;
}

.category-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-left: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer > div {
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.faq-answer ol,
.faq-answer ul {
    margin: 12px 0;
    padding-left: 24px;
}

.faq-answer ol li,
.faq-answer ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.faq-answer strong {
    font-weight: 600;
    color: var(--text-primary);
}

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

.faq-answer a:hover {
    text-decoration: underline;
}

.help-contact {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.help-contact-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.help-contact-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.help-contact-options {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.help-response-time {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive for Help Center */
@media (max-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .help-hero-content h1 {
        font-size: 42px;
    }
    
    .help-subtitle {
        font-size: 16px;
    }
    
    .help-search {
        flex-direction: column;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header h2 {
        font-size: 24px;
    }
    
    .help-contact-content h2 {
        font-size: 32px;
    }
    
    .help-contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .help-contact-options .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Blog Styles */
.blog-hero {
    padding: 140px 0 80px;
    background: url('img/headerbg1.jpeg') center/cover no-repeat;
    color: black;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.blog-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
   
    text-align: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
    border-color: var(--primary);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
    display: block;
    flex-shrink: 0;
}

.blog-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.blog-card-content h3,
.blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-card-content p,
.blog-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
    flex: 1;
}

.blog-card-date {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 16px;
    font-weight: 500;
}

.read-time {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Blog Post Page */
.blog-post-header {
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

.blog-post-header .container {
    position: relative;
    z-index: 2;
}

.blog-post-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.blog-post-content {
    padding: 60px 0;
}

.blog-post-article {

    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blog-post-article h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post-article h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-post-article p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-post-article ul,
.blog-post-article ol {
    margin: 20px 0;
    padding-left: 28px;
}

.blog-post-article li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.blog-post-article strong {
    color: var(--text-primary);
    font-weight: 600;
}

.blog-post-article em {
    font-style: italic;
}

.blog-post-article blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    margin: 32px 0;
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
}

.blog-post-article a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.blog-post-article a:hover {
    text-decoration: underline;
}

.blog-post-article img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 32px 0;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 32px;
}

.blog-back-link:hover {
    text-decoration: underline;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-content > p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: 2px solid white;
}

.newsletter-form .btn {
    white-space: nowrap;
}

.newsletter-note {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Blog Styles */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 42px;
    }
    
    .blog-post-header h1 {
        font-size: 36px;
    }
    
    .blog-post-article {
        padding: 32px 24px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-content h2 {
        font-size: 32px;
    }
}

/* Reviews Page */
.reviews-header {
    padding: 140px 0 80px;
    background: url('img/headerbg1.jpeg') center/cover no-repeat;
    text-align: center;
    color: black;
}

.reviews-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.reviews-header .section-subtitle {
    font-size: 20px;
    opacity: 0.95;
    color: white;
}

.reviews-section {
    padding: 60px 0;
    background: var(--bg-primary);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    width: max-content;
}

.reviews-row.slide-left {
    animation: slideLeft 80s linear infinite;
}

.reviews-row.slide-right {
    animation: slideRight 80s linear infinite;
}

.reviews-row:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.review-card-small {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-card-small .stars {
    font-size: 16px;
    margin-bottom: 12px;
}

.review-card-small p {
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 15px;
}

.review-card-small strong {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .reviews-header h1 {
        font-size: 36px;
    }
    
    .review-card-small {
        min-width: 280px;
        max-width: 280px;
    }
}

/* Demo Page */
.demo-banner {
    padding: 140px 0 80px;
    background: url('img/headerbg1.jpeg') center/cover no-repeat;
    text-align: center;
    color: black;
}

.demo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.demo-banner h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.demo-banner p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.demo-section {
    padding: 40px 0 80px;
    background: var(--bg-primary);
}

.demo-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar */
.demo-sidebar {
    background: white;
    border-radius: 12px;
    padding: 24px;
    height: fit-content;
    border: 1px solid var(--border);
}

.demo-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.demo-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.demo-username {
    font-weight: 600;
    margin-bottom: 4px;
}

.demo-user-meta {
    font-size: 13px;
    color: var(--text-secondary);
}

.demo-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.demo-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s;
}

.demo-nav-item:hover {
    background: var(--bg-secondary);
}

.demo-nav-item.active {
    background: var(--bg-secondary);
    color: var(--primary);
}

.demo-nav-item span {
    font-size: 18px;
}

/* Main Content */
.demo-main {
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border);
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.demo-stat-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.demo-stat-icon {
    font-size: 32px;
}

.demo-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.demo-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

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

.demo-header h2 {
    font-size: 24px;
    font-weight: 700;
}

/* Skills Grid */
.demo-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.demo-skill-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.demo-skill-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.skill-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 12px;
}

.skill-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.skill-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.skill-card-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.skill-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.skill-action-btn {
    background: white;
    border: 1px solid var(--border);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.skill-action-btn:hover {
    background: var(--bg-secondary);
    transform: scale(1.1);
}

.skill-hours {
    margin-bottom: 16px;
}

.skill-hours-main {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.skill-hours-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.skill-progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.skill-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.skill-progress-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.skill-add-hour-btn {
    width: 100%;
}

.skill-add-hour-btn span {
    font-size: 16px;
    margin-right: 4px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

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

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.modal-actions .btn {
    flex: 1;
}

/* Responsive Demo */
@media (max-width: 1024px) {
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .demo-sidebar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
        margin-bottom: 12px;
    }

    .demo-user {
        margin: 0;
        padding: 0;
        border-bottom: 0;
        gap: 0;
        flex-shrink: 0;
    }

    .demo-user-info {
        display: none;
    }

    .demo-avatar {
        width: 36px;
        height: 36px;
    }

    .demo-nav {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        width: 100%;
        justify-content: flex-end;
    }

    .demo-nav-item {
        padding: 10px;
        width: 40px;
        min-width: 40px;
        justify-content: center;
        border-radius: 10px;
        font-size: 0;
        gap: 0;
        flex-shrink: 0;
    }

    .demo-nav-item span {
        font-size: 18px;
        margin: 0;
    }
    
    .demo-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }
}

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

    .demo-section {
        padding: 16px 0 56px;
    }
    
    .demo-main {
        padding: 12px;
    }

    .demo-sidebar {
        margin-bottom: 10px;
    }

    .demo-nav {
        gap: 6px;
    }

    .demo-nav-item {
        width: 36px;
        min-width: 36px;
        padding: 8px;
    }

    .demo-nav-item span {
        font-size: 16px;
    }
    
    .demo-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 20px;
    }

    .demo-stat-card {
        padding: 10px 8px;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 10px;
    }

    .demo-stat-icon {
        font-size: 20px;
    }

    .demo-stat-value {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .demo-stat-label {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .demo-skills-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .demo-header .btn {
        width: 100%;
    }
}

/* Delete Modal Styles */
.modal-small {
    max-width: 450px;
}

.modal-small .modal-body p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-small .modal-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.delete-time-entry-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

.delete-time-entry-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.delete-time-entry-info > div {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
}

.delete-time-entry-info strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-right: 8px;
}

.delete-time-entry-warning {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-style: italic;
    margin-bottom: 24px !important;
}

.btn-danger {
    background: #ef4444;
    color: white;
    border: 2px solid #ef4444;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Timer Styles */
.skill-timer-display {
    background: linear-gradient(90deg, rgba(225, 162, 205, 1) 52%, rgba(234, 223, 165, 1) 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.timer-icon {
    font-size: 32px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.timer-time {
    font-size: 32px;
    font-weight: 700;
    color: black;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
}

.demo-skill-card.timer-active {
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 3px rgba(225, 162, 205, 0.1);
}

.skill-buttons {
    display: grid;
    grid-template-columns: 1fr 0.6fr 0.6fr;
    gap: 8px;
}

.skill-buttons .btn {
    padding: 8px 12px;
}

.skill-timer-btn {
    grid-column: 1;
}

.skill-timer-btn span {
    font-size: 14px;
    margin-right: 4px;
}

.skill-add-time-btn span {
    font-size: 14px;
    margin-right: 2px;
}

/* Timer Notification */
.timer-notification {
    position: fixed;
    top: 100px;
    right: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    font-weight: 600;
    color: var(--text-primary);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.timer-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.timer-notification::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 12px;
    font-weight: 700;
}

.timer-notification.notification-warning::before {
    content: '⚠';
    background: #f59e0b;
}

/* Section Content Switching */
.demo-section-content {
    display: none;
}

.demo-section-content.active {
    display: block;
}

/* Analytics Page */
.analytics-dropdown {
    max-width: 200px;
    padding: 10px 14px;
    font-size: 14px;
}

.analytics-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

/* Time History Styles */
.time-history-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.time-history-header {
    display: grid !important;
    grid-template-columns: 150px 1fr 120px 100px !important;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 14px;

}

.time-history-header > div {
    display: block;
}

.time-history-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-history-row {
    display: grid !important;
    grid-template-columns: 150px 1fr 120px 100px !important;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    align-items: center;
    transition: all 0.3s ease;
}

.time-history-row:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.time-history-col-date {
  
    font-size: 14px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.time-history-col-skill {
    font-weight: 500;
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
}

.time-history-skill-name {
   
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.time-history-col-time {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    min-width: 0;
}

.time-history-col-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    min-width: 0;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.btn-icon-edit:hover {
    border-color: var(--primary);
}

.btn-icon-delete:hover {
    border-color: #ef4444;
}

.time-history-empty {
    text-align: center;
    padding: 48px 24px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

@media (max-width: 768px) {
    .time-history-header,
    .time-history-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .time-history-header > div {
        display: none;
    }
    
    .time-history-row {
        padding: 12px;
    }
    
    .time-history-col-date {
        font-size: 12px;
    }
    
    .time-history-col-actions {
        justify-content: flex-start;
        margin-top: 8px;
    }
}

.analytics-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.analytics-card-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Heatmap Styles */
.heatmap-container {
    overflow-x: auto;
}

.heatmap-months {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    padding-left: 40px;
}

.heatmap-month {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.heatmap-wrapper {
    display: flex;
    gap: 8px;
}

.heatmap-weekdays {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 2px;
}

.heatmap-weekday {
    height: 12px;
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.heatmap-weekday:nth-child(1) {
    margin-top: 0;
}

.heatmap-weekday:nth-child(2) {
    margin-top: 24px;
}

.heatmap-weekday:nth-child(3) {
    margin-top: 24px;
}

.heatmap-grid {
    display: flex;
    gap: 4px;
    flex: 1;
    width: 100%;
}

.heatmap-week {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.heatmap-cell {
    width: 100%;
    aspect-ratio: 1;
    min-width: 8px;
    min-height: 8px;
    max-width: 15px;
    max-height: 15px;
    background: #ebedf0;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.1s;
}

.heatmap-cell[data-level="0"] {
    background: #ebedf0;
}

.heatmap-cell[data-level="1"] {
    background: #c6e48b;
}

.heatmap-cell[data-level="2"] {
    background: #7bc96f;
}

.heatmap-cell[data-level="3"] {
    background: #239a3b;
}

.heatmap-cell[data-level="4"] {
    background: #196127;
}

.heatmap-legend {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-secondary);
}

.heatmap-legend-item {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.heatmap-legend-item[data-level="0"] {
    background: #ebedf0;
}

.heatmap-legend-item[data-level="1"] {
    background: #c6e48b;
}

.heatmap-legend-item[data-level="2"] {
    background: #7bc96f;
}

.heatmap-legend-item[data-level="3"] {
    background: #239a3b;
}

.heatmap-legend-item[data-level="4"] {
    background: #196127;
}

/* Skills Breakdown */
.skills-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.skill-bar-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-bar-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-bar-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.skill-bar-hours {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 14px;
}

.skill-bar-track {
    height: 24px;
    background: var(--background-secondary);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.skill-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%);
    border-radius: 12px;
}

.analytics-card-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Settings Section */
.settings-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.settings-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.settings-card-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Avatar Selection */
/* Custom Avatar Upload */
.custom-avatar-section {
    margin-bottom: 24px;
}

.custom-avatar-upload {
    margin-bottom: 16px;
}

.upload-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8f9ff;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-label:hover {
    background: #f0f4ff;
    border-color: var(--primary);
}

.upload-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.upload-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upload-text strong {
    font-size: 16px;
    color: #1e293b;
}

.upload-text span {
    font-size: 14px;
    color: #64748b;
}

.upload-limits {
    font-size: 12px !important;
    color: #94a3b8 !important;
}

.upload-progress {
    margin-top: 12px;
    padding: 16px;
    background: #f8f9ff;
    border-radius: 8px;
}

.upload-progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.upload-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.upload-progress-text {
    font-size: 14px;
    color: #64748b;
    text-align: center;
}

.settings-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: #94a3b8;
    font-size: 14px;
}

.settings-divider::before,
.settings-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.settings-divider span {
    padding: 0 16px;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.avatar-option {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: var(--background-secondary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 3px solid transparent;
    overflow: hidden;
}

.avatar-option-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-option:hover {
    transform: translateY(-2px);
    background: #e0e7ff;
}

.avatar-option.selected {
    border-color: var(--primary);
    background: #e0e7ff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Demo Avatar Image */
.demo-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Subscription Plan */
.current-plan {
    background: linear-gradient(90deg, rgba(225, 162, 205, 1) 52%, rgba(234, 223, 165, 1) 100%);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    color: black;
}

.plan-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.plan-details {
    color: black;
}

.plan-description {
    font-size: 16px;
    margin-bottom: 16px;
    opacity: 0.95;
}

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

.plan-features li {
    padding: 6px 0;
    font-size: 14px;
    opacity: 0.95;
}

.plan-upgrade h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.upgrade-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.upgrade-plan-card {
    background: var(--background-secondary);
    border-radius: 12px;
    padding: 24px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.upgrade-plan-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.upgrade-plan-header {
    margin-bottom: 20px;
}

.upgrade-plan-header h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.upgrade-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.upgrade-plan-price .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.upgrade-plan-price .period {
    font-size: 14px;
    color: var(--text-secondary);
}

.upgrade-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.upgrade-plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.btn-block {
    width: 100%;
}

/* Settings Form */
.settings-form {
    max-width: 500px;
}

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

.settings-form .btn {
    margin-top: 8px;
}

/* Settings Toast Notification */
.settings-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.settings-toast.show {
    transform: translateX(0);
}

.settings-toast.error {
    background: #ef4444;
}

/* Achievements Section */
.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
    margin-bottom: 32px;
}

.achievements-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.achievement-stat-card {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: black;
}

.achievement-stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.achievement-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.achievement-category {
    margin-bottom: 48px;
}

.achievement-category-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.achievement-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 16px;
    position: relative;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.achievement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.achievement-card.earned {
    border-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.achievement-card.locked {
    opacity: 0.7;
}

.achievement-icon {
    font-size: 48px;
    flex-shrink: 0;
    transition: filter 0.2s ease;
}

.achievement-icon.grayscale {
    filter: grayscale(100%);
    opacity: 0.4;
}

.achievement-info {
    flex: 1;
}

.achievement-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.achievement-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.achievement-progress {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.achievement-progress-bar {
    height: 8px;
    background: var(--background-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.achievement-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card.earned .achievement-progress-fill {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.achievement-progress-text {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.achievement-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-card {
        padding: 20px;
    }
    
    .achievement-icon {
        font-size: 40px;
    }
    
    .achievement-name {
        font-size: 16px;
    }
}

/* Dashboard-specific mobile/layout fixes */
.dashboard-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dashboard-page .demo-section {
    flex: 1;
}

.dashboard-page .footer {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .dashboard-page .demo-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .dashboard-page .demo-sidebar {
        display: flex !important;
        position: static;
        background: white;
    }
}

@media (max-width: 768px) {
    .dashboard-page .demo-banner {
        display: none;
    }

    .dashboard-page .demo-section {
        padding: 84px 0 56px;
    }

    .dashboard-page .demo-sidebar {
        display: flex !important;
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .dashboard-page .demo-user {
        margin: 0;
        padding: 0;
        border-bottom: 0;
        gap: 0;
        flex-shrink: 0;
    }

    .dashboard-page .demo-user-info {
        display: none;
    }

    .dashboard-page .demo-avatar {
        width: 34px;
        height: 34px;
    }

    .dashboard-page .demo-nav {
        display: flex;
        flex-direction: row;
        gap: 6px;
        overflow-x: auto;
        width: 100%;
        justify-content: flex-end;
    }

    .dashboard-page .demo-nav-item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        min-width: 36px;
        padding: 8px;
        gap: 0;
        font-size: 0;
        border-radius: 0;
        flex-shrink: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .dashboard-page .demo-nav-item span {
        font-size: 22px;
        margin: 0;
    }

    .dashboard-page .demo-nav-item.active,
    .dashboard-page .demo-nav-item:hover {
        background: transparent;
        color: var(--primary);
    }

    .dashboard-page .demo-main {
        padding: 12px;
    }

    .dashboard-page .demo-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 20px;
    }

    .dashboard-page .demo-stat-card {
        padding: 10px 8px;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-page .demo-stat-icon {
        font-size: 20px;
    }

    .dashboard-page .demo-stat-value {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .dashboard-page .demo-stat-label {
        font-size: 11px;
        line-height: 1.2;
    }
}
