/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #1e293b;
    --accent-color: #10b981;
    --text-color: #334155;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --danger-color: #ef4444;

    --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.06);

    --radius: 16px;
    --container-width: 1000px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* --- UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

/* --- HEADER --- */
header {
    background: var(--card-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.lang-select-wrapper {
    position: relative;
}

.lang-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #f1f5f9;
    border: 1px solid transparent;
    padding: 8px 35px 8px 15px;
    border-radius: 20px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: 0.2s;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23334155%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
}

.lang-select:hover {
    background-color: #e2e8f0;
}

.lang-select:focus {
    border-color: var(--accent-color);
    background-color: white;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

.content-image-box {
    margin: 30px 0;
    text-align: center;
}

.content-image-box img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid #f1f5f9;
    display: block;
    margin: 0 auto;
    background-color: #f1f5f9;
}

.content-image-box figcaption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* --- HERO SECTION --- */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #475569;
}

/* --- CONTENT CARDS --- */
section {
    margin-bottom: 60px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

/* --- WINNER SECTION SPECIFIC --- */
.winner-badge {
    background-color: #ecfdf5;
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid var(--accent-color);
}

/* --- TABLE --- */
.table-container {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

th {
    background-color: #f8fafc;
    font-weight: 700;
    color: var(--primary-color);
}

th:nth-child(2), td:nth-child(2) {
    background-color: #ecfdf5;
    border-left: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    font-weight: 600;
}

th:nth-child(2) {
    color: var(--accent-color);
    font-size: 1.1rem;
    border-top: 2px solid var(--accent-color);
}

tr:last-child td:nth-child(2) {
    border-bottom: 2px solid var(--accent-color);
}

.check { color: var(--accent-color); font-size: 1.2rem; }
.cross { color: var(--danger-color); font-size: 1.2rem; }

/* --- REVIEWS & LISTS --- */
.quote {
    background-color: #f1f5f9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    font-style: italic;
    font-size: 1.1rem;
    margin: 20px 0;
    border-radius: 0 12px 12px 0;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.list-box h4 { margin-bottom: 15px; font-size: 1.2rem; }

.pros ul, .cons ul { list-style: none; }

.pros li, .cons li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.pros li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
}

.cons li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--danger-color);
    font-weight: 900;
}

/* --- FINAL CTA --- */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 60px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.final-cta h2 {
    border: none;
    color: white;
    padding: 0;
}

.final-cta p { color: #cbd5e1; font-size: 1.2rem; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .pros-cons { grid-template-columns: 1fr; }
    .card { padding: 20px; }
}
