:root {
    --bg-dark: #0A0A0F;
    --bg-light: #1A1920;
    --bg-gradient: linear-gradient(135deg, #0A0A0F 0%, #1A1920 50%, #0F1419 100%);
    --primary: #06A69C;
    --primary-hover: #058F86;
    --primary-glow: rgba(6, 166, 156, 0.4);
    --accent-cyan: #06A69C;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #6B7280;
    --border-color: #2D2C34;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 50px rgba(6, 166, 156, 0.15);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    margin: 0;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(6, 166, 156, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    box-shadow: 
        0 10px 25px rgba(6, 166, 156, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(6, 166, 156, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(6, 166, 156, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        url('/img/bg_landing.jpg') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(6, 166, 156, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 10, 15, 0.8) 0%, rgba(26, 25, 32, 0.9) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo {
    height: 180px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px rgba(6, 166, 156, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
    text-shadow: 0 0 50px rgba(6, 166, 156, 0.3);
    position: relative;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    position: relative;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: transparent;
    border: none;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.feature-card:last-child {
    border-bottom: none;
}

.feature-card:hover {
    border-bottom-color: rgba(6, 166, 156, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    color: white;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-content {
    flex: 1;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

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

.feature-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-details li {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-details li:hover {
    background: rgba(6, 166, 156, 0.1);
    border-color: rgba(6, 166, 156, 0.3);
    color: var(--primary);
}







/* Showcase Section */
.showcase-section {
    padding: 10rem 2rem;
    background: 
        radial-gradient(circle at 10% 20%, rgba(6, 166, 156, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134 0h2v20h-2V0zm25.134 0h2v20h-2V0zm25.134 0h2v20h-2V0zm25.134 0h2v20h-2V0zM0 9h20v2H0V9zm25.134 0h20v2h-20V9zm25.134 0h20v2h-20V9zm25.134 0h20v2h-20V9zm25.134 0h20v2h-20V9z' fill='%23ffffff' fill-opacity='0.01'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.showcase-subtitle {
    text-align: center;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 8rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-image {
    position: relative;
}

.mock-screenshot {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.mock-screenshot.dashboard {
    width: 100%;
    height: 400px;
}

.mock-screenshot.mobile {
    width: 250px;
    height: 500px;
    margin: 0 auto;
    border-radius: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}



.mock-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-dots {
    display: flex;
    gap: 0.5rem;
}

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

.mock-dots span:first-child {
    background: #ff5f57;
}

.mock-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mock-dots span:last-child {
    background: #28ca42;
}

.mock-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.mock-content {
    display: flex;
    height: 320px;
}

.mock-sidebar {
    width: 80px;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-nav-item {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0.6;
}

.mock-nav-item.active {
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    opacity: 1;
}

.mock-main {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mock-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-card-header {
    height: 20px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 60%;
}

.mock-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.mock-line.short {
    width: 70%;
}

.mock-stats {
    display: flex;
    gap: 1rem;
}

.mock-stat {
    flex: 1;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Mock */
.mock-mobile-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
}

.mock-mobile-time {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.mock-mobile-battery {
    width: 24px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 80%, transparent 80%);
}

.mock-mobile-content {
    padding: 2rem 1.5rem;
    height: 400px;
}

.mock-mobile-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.mock-mobile-title {
    height: 16px;
    background: var(--primary);
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 70%;
}

.mock-mobile-line {
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.mock-mobile-line.short {
    width: 60%;
}

.mock-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mock-mobile-item {
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}



.showcase-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 70%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
}

.showcase-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
    border-radius: 2px;
    opacity: 0.8;
}

.showcase-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-left: 1rem;
    margin: 0.2rem 0;
}

.showcase-features li:hover {
    background: rgba(6, 166, 156, 0.05);
    color: var(--text-primary);
    transform: translateX(5px);
}

.showcase-features i {
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(6, 166, 156, 0.2);
    position: relative;
}

.showcase-features i::before {
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



/* Target Audience Section */
.target-audience {
    padding: 8rem 2rem;
    background: 
        linear-gradient(135deg, rgba(6, 166, 156, 0.02) 0%, transparent 50%),
        linear-gradient(225deg, rgba(139, 92, 246, 0.02) 0%, transparent 50%),
        var(--bg-dark);
    position: relative;
}

.audience-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.audience-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.audience-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-color: rgba(6, 166, 156, 0.3);
}

.audience-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(6, 166, 156, 0.3));
}

.audience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.audience-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.audience-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(6, 166, 156, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(6, 166, 156, 0.2);
}







/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 166, 156, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(6, 166, 156, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    z-index: 1;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 166, 156, 0.1) 0%, transparent 50%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0.5;
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(6, 166, 156, 0.3);
    position: relative;
    z-index: 1;
}

.cta-badge i {
    font-size: 1rem;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    box-shadow: 
        0 15px 35px rgba(6, 166, 156, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: none;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(6, 166, 156, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.cta-section .btn-secondary {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.05);
}



/* Footer */
.main-footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: var(--bg-dark);
}

.footer-nav {
    margin-top: 1rem;
}

.footer-nav a {
    color: var(--text-secondary);
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 4rem 1rem 2rem 1rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-logo {
        height: 120px;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .audience-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }







    .showcase-item {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

    .showcase-content h3 {
        font-size: 1.8rem;
    }

    .showcase-content p {
        font-size: 1.1rem;
    }

    .showcase-features {
        padding: 1rem;
    }

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

    .mock-screenshot.dashboard {
        height: 300px;
    }

    .mock-screenshot.mobile {
        width: 200px;
        height: 400px;
    }



    .cta-content {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Cookie Consent Styles */
.cookie-consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-consent-content {
    background: #1a1a1a;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.cookie-consent-close {
    background: none;
    border: none;
    color: #999;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cookie-consent-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cookie-consent-body {
    padding: 24px;
}

.cookie-consent-intro {
    margin-bottom: 24px;
    color: #999;
    line-height: 1.6;
}

.cookie-categories {
    margin-bottom: 24px;
}

.cookie-category {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    gap: 16px;
}

.cookie-category-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 24px;
}

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

.cookie-category-toggle input:checked + .cookie-toggle-slider {
    background-color: #4f46e5;
}

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

.cookie-category-toggle input:disabled + .cookie-toggle-slider {
    background-color: #10b981;
    cursor: not-allowed;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.cookie-category-info p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-details {
    padding: 0 16px 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.01);
}

.cookie-details ul {
    list-style: none;
    margin: 12px 0 0 0;
    padding: 0;
}

.cookie-details li {
    margin-bottom: 8px;
    color: #999;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-details li strong {
    color: #ffffff;
}

.cookie-consent-info {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-legal-info {
    margin: 0;
    color: #999;
    font-size: 0.8rem;
    line-height: 1.5;
}

.cookie-legal-info a {
    color: #4f46e5;
    text-decoration: underline;
}

.cookie-consent-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    min-width: 120px;
}

/* Cookie Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner-text strong {
    color: #ffffff;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .cookie-consent-header,
    .cookie-consent-body,
    .cookie-consent-footer {
        padding: 16px;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-buttons .btn {
        min-width: auto;
        width: 100%;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
    }
    
    .cookie-banner-buttons {
        justify-content: stretch;
    }
    
    .cookie-banner-buttons .btn {
        flex: 1;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-category-toggle {
        align-self: flex-start;
    }
}