:root {
    --teal: #0891B2;
    --teal-dark: #0E7490;
    --teal-darker: #155E75;
    --teal-light: #E0F7FA;
    --teal-50: #F0FBFD;
    --teal-100: #CFF4F8;
    --teal-200: #A5E8F0;
    --navy: #0F172A;
    --navy-2: #1E293B;
    --navy-3: #334155;
    --slate-700: #475569;
    --slate-600: #64748B;
    --slate-500: #94A3B8;
    --slate-400: #CBD5E1;
    --slate-300: #E2E8F0;
    --slate-200: #F1F5F9;
    --slate-100: #F8FAFC;
    --white: #FFFFFF;
    --green: #10B981;
    --green-light: #ECFDF5;
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
    --shadow: 0 4px 6px -1px rgba(15,23,42,0.06), 0 2px 4px -2px rgba(15,23,42,0.04);
    --shadow-md: 0 10px 25px -8px rgba(15,23,42,0.1), 0 4px 10px -4px rgba(15,23,42,0.04);
    --shadow-lg: 0 20px 40px -10px rgba(15,23,42,0.12), 0 8px 16px -8px rgba(15,23,42,0.05);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-2xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: var(--navy); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link {
    position: absolute; top: -100px; left: 16px;
    background: var(--teal); color: #fff; padding: 8px 14px;
    border-radius: 8px; z-index: 9999;
}
.skip-link:focus { top: 12px; }

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal-light); color: var(--teal-dark);
    padding: 6px 14px; border-radius: 999px;
    font-size: 13px; font-weight: 600;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 15px; font-weight: 600;
    transition: var(--transition); cursor: pointer;
    line-height: 1.2;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--slate-300); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--teal-50); }
.btn-phone {
    background: var(--teal); color: var(--white);
    padding: 10px 18px; border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; font-size: 14px;
    transition: var(--transition);
}
.btn-phone:hover { background: var(--teal-dark); }

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; transition: var(--transition); }
.logo:hover { transform: scale(1.02); }
.logo-icon {
    width: 38px; height: 38px;
    background: var(--teal-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal);
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--navy-3); transition: var(--transition); }
.main-nav a:hover, .main-nav a.active { color: var(--teal); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; padding: 8px; color: var(--navy); }
.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
    .main-nav { display: none; }
    .menu-toggle { display: block; }
    .header-cta .btn-phone span.tel-text { display: none; }
}

.page-hero {
    background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--slate-200);
}
.page-hero .badge { margin-bottom: 14px; }
.page-hero h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    margin-bottom: 16px; letter-spacing: -0.02em;
}
.page-hero .lead {
    font-size: 18px; color: var(--navy-3);
    line-height: 1.65; max-width: 760px;
}
.section { padding: 60px 0; }
.section-light { background: var(--slate-100); }
.section-tinted { background: var(--teal-50); }

.prose { max-width: 820px; margin: 0 auto; }
.prose h2 {
    font-size: 24px; margin: 36px 0 14px;
    color: var(--navy); letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 26px 0 10px; }
.prose p { color: var(--navy-3); margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.prose ul:not(.check-list) { margin: 12px 0 22px 24px; list-style: disc; }
.prose ul:not(.check-list) li { color: var(--navy-3); margin-bottom: 8px; line-height: 1.7; }
.prose a { color: var(--teal-dark); text-decoration: underline; }
.prose a:hover { color: var(--teal); }
.prose strong { color: var(--navy); }
.check-list { display: grid; gap: 12px; margin: 14px 0 24px; }
.check-list li {
    display: flex; gap: 12px; align-items: flex-start;
    color: var(--navy-3); font-size: 15.5px; line-height: 1.7;
}
.check-list li i { color: var(--teal); font-size: 18px; margin-top: 3px; flex-shrink: 0; }

.info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 28px 0;
}
.info-card {
    background: var(--white); border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg); padding: 24px; transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--teal-200); }
.info-card .icon {
    width: 44px; height: 44px;
    background: var(--teal-light); color: var(--teal);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; font-size: 18px;
}
.info-card h3 { font-size: 17px; margin-bottom: 8px; }
.info-card p { color: var(--navy-3); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 880px) { .info-grid { grid-template-columns: 1fr; } }

.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 24px;
}
.contact-card {
    background: var(--white); border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg); padding: 28px;
}
.contact-card h3 { font-size: 18px; margin-bottom: 14px; }
.contact-card p { font-size: 15px; color: var(--navy-3); margin-bottom: 12px; line-height: 1.6; }
.contact-card p i { color: var(--teal); margin-right: 8px; width: 20px; text-align: center; }
.contact-card a { color: var(--teal-dark); text-decoration: underline; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { font-size: 14px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: 15px;
    color: var(--navy); background: var(--white);
    transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-light);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } .contact-form .form-row { grid-template-columns: 1fr; } }

.site-footer {
    background: var(--white); border-top: 1px solid var(--slate-200);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
}
.footer-section h3 { font-size: 17px; margin-bottom: 16px; }
.footer-section p { color: var(--navy-3); font-size: 14.5px; line-height: 1.65; margin-bottom: 12px; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul a { font-size: 14.5px; color: var(--navy-3); transition: var(--transition); }
.footer-section ul a:hover { color: var(--teal); }
.footer-brand-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-brand-logo .logo-icon { width: 32px; height: 32px; }
.footer-brand-logo .logo-icon svg { width: 18px; height: 18px; }
.footer-brand-logo span { font-size: 18px; font-weight: 800; color: var(--navy); }
.footer-contact p strong { color: var(--navy); display: block; margin-top: 8px; }
.footer-contact p:first-child strong { margin-top: 0; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy-3); transition: var(--transition); font-size: 16px;
}
.footer-social a:hover { color: var(--teal); transform: translateY(-2px); }
.footer-disclaimer {
    border-top: 1px solid var(--slate-200);
    padding: 28px 0; text-align: center;
}
.footer-disclaimer h4 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.footer-disclaimer p {
    color: var(--slate-600); font-size: 13.5px; line-height: 1.65;
    max-width: 880px; margin: 0 auto;
}
.footer-bottom {
    border-top: 1px solid var(--slate-200);
    padding-top: 22px; text-align: center;
    color: var(--slate-600); font-size: 13.5px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

#cookiePanel {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 360px; max-width: 90vw;
    background: var(--white);
    box-shadow: -10px 0 40px -10px rgba(15,23,42,0.18);
    z-index: 9999;
    display: flex; flex-direction: column;
    transform: translateX(110%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
#cookiePanel.visible { transform: translateX(0); }
.cookie-header {
    background: var(--teal); color: var(--white);
    padding: 22px 24px;
    display: flex; align-items: flex-start; gap: 12px;
    border-bottom: 4px solid var(--teal-dark);
}
.cookie-header-icon {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cookie-header h3 {
    color: var(--white); font-size: 17px; line-height: 1.3;
    flex: 1; margin-top: 4px;
}
.cookie-close {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); cursor: pointer;
    transition: var(--transition); flex-shrink: 0;
}
.cookie-close:hover { background: rgba(255,255,255,0.3); }
.cookie-body { padding: 22px 24px; flex: 1; overflow-y: auto; }
.cookie-body > p { font-size: 14px; color: var(--navy-3); line-height: 1.6; margin-bottom: 20px; }
.cookie-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 14px 16px; margin-bottom: 12px;
    display: flex; gap: 12px; align-items: flex-start;
}
.cookie-card-icon {
    width: 38px; height: 38px;
    background: var(--teal); color: var(--white);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cookie-card-info { flex: 1; }
.cookie-card-info-head {
    display: flex; justify-content: space-between; align-items: center; gap: 8px;
    margin-bottom: 4px;
}
.cookie-card-info-head h4 { font-size: 14.5px; color: var(--navy); }
.cookie-card-info-head .obligatory {
    font-size: 11.5px; font-weight: 600;
    color: var(--green); background: var(--green-light);
    padding: 3px 8px; border-radius: 6px; white-space: nowrap;
}
.cookie-card-info p { font-size: 12.5px; color: var(--slate-600); line-height: 1.5; }
.cookie-toggle {
    position: relative; width: 36px; height: 20px;
    background: var(--slate-300); border-radius: 12px;
    cursor: pointer; transition: var(--transition);
    flex-shrink: 0;
}
.cookie-toggle::after {
    content: ''; position: absolute; left: 2px; top: 2px;
    width: 16px; height: 16px;
    background: var(--white); border-radius: 50%;
    transition: var(--transition);
}
.cookie-toggle.on { background: var(--teal); }
.cookie-toggle.on::after { left: 18px; }
.cookie-footer {
    border-top: 1px solid var(--slate-200);
    padding: 18px 24px;
    display: flex; flex-direction: column; gap: 10px;
}
.cookie-footer .btn { width: 100%; }
.cookie-footer-link {
    display: block; text-align: center;
    font-size: 13px; color: var(--teal-dark);
    text-decoration: underline; margin-top: 6px;
}
.cookie-footer-link:hover { color: var(--teal); }

#mobileNav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 9998;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex; flex-direction: column; gap: 14px;
}
#mobileNav.open { transform: translateX(0); }
#mobileNav a {
    font-size: 18px; font-weight: 600; color: var(--navy);
    padding: 14px 16px; border-radius: var(--radius-sm);
    background: var(--slate-100);
}
#mobileNav a.btn-primary { background: var(--teal); color: var(--white); }
.mobile-close {
    position: absolute; top: 20px; right: 20px;
    width: 40px; height: 40px;
    background: var(--slate-100); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-size: 20px;
}
