:root {
    --primary: #009BDD;
    --secondary: #0078A8;
    --accent: #FF6B1A;
    --accent-hover: #E05500;
    --success: #28a745;
    --danger: #dc3545;
    --light: #f0f6fc;
    --dark: #0D1B2A;
    --dark-nav: #0A1628;
    --text-body: #1e2d3d;
    --text-light: #5a7184;
    --border: #d8e5f0;
    --bg-alt: #edf4fa;
    --card-bg: #ffffff;
}

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

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background: #f0f6fc;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; margin-bottom: 1rem; }
h1 { font-size: 3.5rem; } h2 { font-size: 2.5rem; } h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; } h5, h6 { font-size: 1rem; }
p { margin-bottom: 1rem; color: var(--text-body); }
a { color: var(--primary); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--accent); }

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

/* HEADER */
.site-header {
    background: var(--dark-nav);
    border-bottom: 3px solid var(--accent);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.brand { display: flex; flex-direction: column; gap: 0.25rem; }
.brand-logo { font-size: 1.8rem; font-weight: 900; color: #ffffff; display: flex; align-items: center; gap: 0.5rem; }
.brand-logo span { color: var(--accent); font-weight: 700; }
.brand-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
nav ul { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-link { color: rgba(255,255,255,0.85); font-weight: 500; position: relative; transition: color 0.3s ease; }
.nav-link:hover { color: var(--accent); }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: #ffffff; }

/* BUTTONS — ORANGE */
.btn {
    display: inline-block; padding: 0.75rem 1.75rem; border-radius: 8px;
    font-weight: 700; font-size: 0.95rem; transition: all 0.3s ease;
    border: none; cursor: pointer; text-align: center; letter-spacing: 0.02em;
}
.btn-primary,
button[type="submit"],
input[type="submit"],
.complaint-btn,
.submit-btn,
.complaint-ticket-btn {
    background: linear-gradient(135deg, #FF6B1A 0%, #FF8C00 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(255,107,26,0.35);
}
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.complaint-btn:hover,
.submit-btn:hover,
.complaint-ticket-btn:hover {
    background: linear-gradient(135deg, #E05500 0%, #cc6a00 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,107,26,0.45);
    color: #ffffff !important;
}
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #ffffff; transform: translateY(-2px); }
.btn-secondary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #ffffff; }
.btn-secondary:hover { background: linear-gradient(135deg, var(--secondary), #005a80); transform: translateY(-2px); }

/* BADGES */
.badge { display: inline-block; background: var(--light); color: var(--text-body); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; border: 1px solid var(--border); }
.badge.success { background: #d4f0dd; color: #145a28; border-color: #a3d9b8; }

/* HERO */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0D1B2A 0%, #1a3a5c 50%, #0D1B2A 100%);
    color: #ffffff;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,155,221,0.12) 0%, transparent 70%);
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-badges-grid { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero h1 { color: #ffffff; line-height: 1.2; }
.hero h1 span { color: var(--accent); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.8; }
.hero-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; }
.highlight-item h4 { color: var(--accent); margin-bottom: 0.5rem; }
.highlight-item p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.hero-visual { display: flex; justify-content: center; }
.hero-card {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); padding: 2rem;
    border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12); width: 100%;
}
.hero-card h3 { color: #ffffff; margin-bottom: 1rem; }
.contact-mini { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); }
.specialist-info { display: flex; flex-direction: column; gap: 0.5rem; }
.specialist-name { font-weight: 700; color: #ffffff; font-size: 1.1rem; }
.specialist-contact a { color: var(--accent); font-weight: 600; display: inline-block; }

/* SECTIONS */
.alt-bg { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { color: var(--text-body); margin-bottom: 1rem; }
.section-desc { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* CARDS */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.feature-card {
    background: var(--card-bg); padding: 2rem; border-radius: 12px;
    border: 1px solid var(--border); border-top: 4px solid var(--primary);
    transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    animation: slideIn 0.5s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(0,155,221,0.18); border-top-color: var(--accent); }
.feature-card h3 { color: var(--text-body); margin-bottom: 1rem; }
.feature-card p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem; }
.feature-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-card li { color: var(--text-light); padding-left: 1.5rem; position: relative; font-size: 0.9rem; }
.feature-card li:before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

/* TABLES */
.table-container { overflow-x: auto; margin: 2rem 0; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
table { width: 100%; border-collapse: collapse; background: #ffffff; }
thead { background: linear-gradient(135deg, var(--dark-nav) 0%, #1a3a5c 100%); border-bottom: 2px solid var(--accent); }
th { padding: 1.25rem; text-align: left; font-weight: 700; color: #ffffff; font-size: 0.95rem; }
td { padding: 1.25rem; border-bottom: 1px solid var(--border); color: var(--text-light); }
tbody tr:hover { background: #f0f6fc; }
tbody tr:last-child td { border-bottom: none; }

/* CONTACT FORM */
.contact-section-wrapper { padding: 5rem 0; background: linear-gradient(135deg, #edf4fa 0%, #f8fcff 100%); }
.elixir-contact-form {
    max-width: 800px; margin: 0 auto; background: #ffffff; padding: 3rem;
    border-radius: 16px; box-shadow: 0 12px 48px rgba(0,0,0,0.1);
    border: 1px solid var(--border); border-top: 4px solid var(--accent);
}
.input-grid { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-weight: 600; color: var(--text-body); margin-bottom: 0.5rem; font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select {
    padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 8px;
    font-family: inherit; font-size: 0.95rem; transition: all 0.3s ease;
    color: var(--text-body); background: #fafcff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,107,26,0.12); background: #ffffff;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
.site-footer { background: var(--dark); color: #ffffff; padding: 3rem 0; margin-top: 5rem; border-top: 3px solid var(--accent); }
.footer-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: center; }
.site-footer div { font-size: 0.95rem; line-height: 1.8; }
.site-footer strong { display: block; margin-bottom: 0.5rem; color: var(--accent); }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--accent); }

/* ANIMATIONS */
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.success-message { animation: slideIn 0.3s ease; background: #d4f0dd; border: 1px solid #a3d9b8; color: #145a28; padding: 1rem 1.5rem; border-radius: 8px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark-nav); flex-direction: column; gap: 0; border-bottom: 3px solid var(--accent); box-shadow: 0 8px 16px rgba(0,0,0,0.3); }
    nav ul.active { display: flex; }
    nav ul li { border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
    nav ul li a { display: block; padding: 1rem; color: rgba(255,255,255,0.85); }
    .navbar { flex-wrap: wrap; }
    h1 { font-size: 2rem; } h2 { font-size: 1.75rem; } h3 { font-size: 1.25rem; }
    .hero-content { grid-template-columns: 1fr; gap: 2rem; }
    .hero-highlights { grid-template-columns: 1fr; }
    .grid-cards { grid-template-columns: 1fr; gap: 1.5rem; }
    .elixir-contact-form { padding: 1.5rem; }
    .footer-content { grid-template-columns: 1fr; gap: 1rem; }
    table { font-size: 0.85rem; }
    th, td { padding: 0.75rem 0.5rem; }
    .section-title { font-size: 1.75rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 1.75rem; } h2 { font-size: 1.5rem; } h3 { font-size: 1.1rem; }
    .hero-badges-grid { flex-direction: column; }
    .hero-subtitle { font-size: 1rem; }
    .btn { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
    .elixir-contact-form { padding: 1rem; }
    .feature-card { padding: 1.5rem; }
}

/* UTILITIES */
.text-center { text-align: center; } .text-primary { color: var(--primary); } .text-accent { color: var(--accent); }
.mt-1{margin-top:1rem} .mt-2{margin-top:2rem} .mt-3{margin-top:3rem} .mt-4{margin-top:4rem}
.mb-1{margin-bottom:1rem} .mb-2{margin-bottom:2rem} .mb-3{margin-bottom:3rem} .mb-4{margin-bottom:4rem}
.p-1{padding:1rem} .p-2{padding:2rem} .p-3{padding:3rem}
.py-1{padding-top:1rem;padding-bottom:1rem} .py-2{padding-top:2rem;padding-bottom:2rem} .py-3{padding-top:3rem;padding-bottom:3rem}