/* 
 * AnyDesk Global - International Enterprise Theme
 * Style: Trustworthy, Clean, High-End Corporate
 * Colors: Pure White, Off-White (#F9F9F9), AnyDesk Red (#EF4444), Deep Charcoal (#111827)
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --g-red: #EF4444;
    --g-red-dark: #B91C1C;
    --g-dark: #111827;
    --g-gray: #4B5563;
    --g-light-gray: #F3F4F6;
    --g-white: #FFFFFF;
    --g-border: #E5E7EB;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--g-dark);
    background-color: var(--g-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: 100px 0; }
.bg-light { background-color: var(--g-light-gray); }
.text-red { color: var(--g-red); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; font-weight: 600; border-radius: 6px;
    transition: all 0.2s; font-size: 15px; cursor: pointer;
}
.btn-primary {
    background-color: var(--g-red); color: white; border: 2px solid var(--g-red);
}
.btn-primary:hover {
    background-color: var(--g-red-dark); border-color: var(--g-red-dark);
}
.btn-secondary {
    background-color: white; color: var(--g-dark); border: 2px solid var(--g-border);
}
.btn-secondary:hover {
    border-color: var(--g-dark); background-color: var(--g-dark); color: white;
}
.btn-link {
    color: var(--g-red); font-weight: 600; padding: 0;
}
.btn-link:hover { text-decoration: underline; }

/* Header */
.header {
    height: 80px; border-bottom: 1px solid var(--g-border);
    position: sticky; top: 0; background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px); z-index: 1000;
}
.header .container {
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.brand {
    font-size: 22px; font-weight: 800; display: flex; align-items: center; gap: 8px;
}
.brand-dot { width: 12px; height: 12px; background: var(--g-red); border-radius: 50%; }
.nav { display: flex; gap: 40px; }
.nav-item { font-weight: 500; color: var(--g-gray); font-size: 15px; }
.nav-item:hover { color: var(--g-dark); }

/* Hero */
.hero {
    padding: 140px 0 100px; text-align: center;
}
.hero-badge {
    display: inline-block; padding: 6px 16px; background: #FEF2F2; color: var(--g-red);
    border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 30px;
}
.hero-title {
    font-size: 64px; letter-spacing: -2px; line-height: 1.1; margin-bottom: 24px;
    max-width: 900px; margin-left: auto; margin-right: auto;
}
.hero-sub {
    font-size: 20px; color: var(--g-gray); max-width: 600px; margin: 0 auto 40px;
}
.hero-actions {
    display: flex; justify-content: center; gap: 16px; margin-bottom: 60px;
}

/* Stats Strip */
.stats-strip {
    border-top: 1px solid var(--g-border); border-bottom: 1px solid var(--g-border);
    padding: 40px 0; background: #FAFAFA;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center;
}
.stat-num { font-size: 32px; font-weight: 800; color: var(--g-dark); }
.stat-label { font-size: 13px; font-weight: 600; color: var(--g-gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* Cards Grid */
.card-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.feature-card {
    padding: 40px; border: 1px solid var(--g-border); border-radius: 12px;
    transition: 0.3s; background: white;
}
.feature-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: transparent;
}
.icon-box {
    width: 50px; height: 50px; background: #FEF2F2; color: var(--g-red);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 24px;
}
.card-title { font-size: 20px; margin-bottom: 12px; }
.card-desc { color: var(--g-gray); font-size: 15px; }

/* Download List */
.dl-list {
    max-width: 800px; margin: 0 auto;
}
.dl-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px; border: 1px solid var(--g-border); border-radius: 8px;
    margin-bottom: 16px; transition: 0.2s; background: white;
}
.dl-item:hover { border-color: var(--g-red); background: #FEF2F2; }
.dl-info { display: flex; align-items: center; gap: 20px; }
.dl-icon { font-size: 32px; color: var(--g-gray); }

/* Footer */
.footer {
    background: var(--g-dark); color: white; padding: 80px 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-desc { color: #9CA3AF; margin-top: 20px; max-width: 300px; }
.footer h4 { margin-bottom: 20px; font-size: 16px; }
.footer a { color: #9CA3AF; display: block; margin-bottom: 12px; font-size: 14px; }
.footer a:hover { color: white; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 48px; }
    .card-grid, .stats-grid { grid-template-columns: 1fr; }
    .dl-item { flex-direction: column; text-align: center; gap: 20px; }
    .dl-info { flex-direction: column; }
    .nav { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}
