/* Asimily Brand Style */
/* Primary: #25493E (Dark Green) */
/* Secondary: #69c9ad (Mint) */
/* Accent: #EDF1F4 (Light Gray) */

:root {
    --primary: #25493E;
    --primary-dark: #1a3d34;
    --secondary: #69c9ad;
    --accent: #EDF1F4;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #6b7280;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

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

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo.small {
    transform: scale(0.8);
    transform-origin: left;
}

.logo-icon {
    position: relative;
    width: 48px;
    height: 48px;
}

.arrow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: var(--secondary);
    border-radius: 2px;
}

.line.horizontal {
    width: 24px;
    height: 4px;
    left: 6px;
    top: 22px;
}

.line.diagonal-top {
    width: 20px;
    height: 4px;
    left: 20px;
    top: 12px;
    transform: rotate(45deg);
    transform-origin: left center;
}

.line.diagonal-bottom {
    width: 20px;
    height: 4px;
    left: 20px;
    top: 32px;
    transform: rotate(-45deg);
    transform-origin: left center;
}

.dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.dot:nth-child(1) { left: 0; top: 20px; }
.dot:nth-child(2) { left: 20px; top: 4px; }
.dot:nth-child(3) { left: 20px; top: 36px; }
.dot:nth-child(4) { left: 40px; top: 20px; }

.logo-text {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer .logo-text {
    color: var(--primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(37, 73, 62, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(105, 201, 173, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-nav {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 8px 20px;
    border-radius: 50px;
}

.cta-nav:hover {
    background: #5ab897;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(105, 201, 173, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(105, 201, 173, 0.2);
    border: 1px solid rgba(105, 201, 173, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.award-badge .trophy {
    font-size: 1.25rem;
}

.award-badge .text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #5ab897;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(105, 201, 173, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

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

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

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.device-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(105, 201, 173, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    min-width: 160px;
}

.device-card .icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.device-card span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stats Section */
.stats {
    background: var(--primary);
    padding: 80px 0;
    border-top: 1px solid rgba(105, 201, 173, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(105, 201, 173, 0.1);
}

.stat-card.highlight {
    background: rgba(105, 201, 173, 0.15);
    border-color: rgba(105, 201, 173, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--accent);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(105, 201, 173, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

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

/* Awards Section */
.awards {
    padding: 100px 0;
    background: var(--gradient);
}

.awards-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

.award-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(105, 201, 173, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.award-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.award-card.main {
    background: rgba(105, 201, 173, 0.15);
    border-color: rgba(105, 201, 173, 0.4);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.award-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.award-category {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.award-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--accent);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(37, 73, 62, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-light);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 12px;
}

.link-group a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(37, 73, 62, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-note {
    color: var(--secondary) !important;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .device-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-card.main {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }

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

/* Selection */
::selection {
    background: var(--secondary);
    color: var(--primary);
}

/* Logo Image Support */
.logo-img {
    height: 120px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
}

.footer-brand .logo-img {
    height: 80px;
    filter: brightness(0.9);
}

/* Downloads Section */
.downloads {
    padding: 100px 0;
    background: var(--white);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: var(--accent);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 40px rgba(105, 201, 173, 0.15);
}

.download-card.video-card {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(105, 201, 173, 0.1) 100%);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.download-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.download-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.file-type,
.file-size {
    background: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.file-type {
    background: var(--secondary);
    color: var(--primary);
}

.download-card .btn {
    width: 100%;
}

/* Responsive for Downloads */
@media (max-width: 768px) {
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .download-card.video-card {
        grid-column: span 1;
    }
    
    .download-card {
        padding: 30px;
    }
}
