:root {
    --navy: #f1f7ff;
    --blue: #65b5ff;
    --light: #0b1420;
    --text: #c8d5e3;
    --card: #162535;
    --pricing: #0f1d2b;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--light);
    color: var(--text);
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.container {
    width: min(100% - 32px, 960px);
    margin: 0 auto;
    padding: 48px 0;
}

.hero {
    margin-bottom: 48px;
}

.logo {
    display: block;
    width: min(100%, 320px);
    max-height: 160px;
    margin: 8px 0 0;
    object-fit: contain;
    object-position: left center;
}

.eyebrow {
    margin: 0 0 4px;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
}

h1, h2, h3 { color: var(--navy); line-height: 1.2; }
h1 { margin: 0; font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { margin: 0 0 20px; font-size: 1.5rem; }
h3 { margin: 0 0 10px; font-size: 1.1rem; }
.slogan { margin: 14px 0 0; color: var(--blue); font-size: 1.2rem; font-weight: 700; }
.intro { margin: 12px 0 0; font-size: 1.1rem; }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.card {
    padding: 24px;
    background: var(--card);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.card p { margin: 0; }

.cards .card {
    --accent: #65b5ff;
    padding: 0;
    border-top: 3px solid var(--accent);
}

.service-card-link {
    display: block;
    height: 100%;
    padding: 24px;
    color: inherit;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
    background: #1c3044;
    outline: none;
}

.service-card-link:focus-visible { box-shadow: inset 0 0 0 2px var(--accent); }
.service-card-link:hover h3 { text-decoration: underline; }

.cards .card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
}

.cards .card h3::before {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    content: "⚡";
    color: #0b1420;
    background: var(--accent);
    border-radius: 7px;
    font-size: .9rem;
}

.pricing {
    margin-top: 48px;
    padding: 40px;
    color: #fff;
    background: var(--pricing);
    border-radius: 10px;
    border: 1px solid #2b4d6d;
}

.pricing h2 { margin: 0 0 16px; color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.pricing .eyebrow { color: #9bceff; }
.pricing > p:not(.eyebrow) { margin: 0; max-width: 680px; }
.pricing-note { margin-top: 24px !important; color: #9bceff; font-weight: 700; font-size: 1.1rem; }

.contacts {
    margin-top: 48px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.contact { border-left: 5px solid var(--blue); }
.name { font-weight: 700; margin-bottom: 6px !important; }
.contact a { display: block; width: fit-content; color: var(--blue); font-weight: 700; text-decoration: none; }
.contact a:hover { text-decoration: underline; }
.contact .contact-link { display: inline-flex; align-items: center; gap: 8px; }
.contact-icon { width: 18px; height: 18px; fill: currentColor; flex: 0 0 18px; }
.contact .whatsapp-link { color: #64d98a; }
.contact-group { margin-top: 22px; }
.contact-group h3 { margin-bottom: 6px; }
.operator-details { margin-top: 22px; padding-top: 18px; border-top: 1px solid #2b435a; }
.operator-details p + p { margin-top: 6px; }

.site-footer {
    margin-top: 8px;
    padding: 24px 0;
    border-top: 1px solid #243a50;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: min(100% - 32px, 960px);
    margin: 0 auto;
    color: #90a3b7;
    font-size: .9rem;
}

.footer-content a,
.privacy a { color: var(--blue); }

.privacy { max-width: 800px; }
.privacy .logo { width: min(100%, 240px); max-height: 120px; margin: 28px 0; }
.privacy h1 { margin-bottom: 16px; }
.privacy-lead { margin: 0 0 28px; font-size: 1.1rem; }

.back-link {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.back-link:hover { text-decoration: underline; }

.privacy-card {
    margin-top: 16px;
    padding: 24px;
    background: var(--card);
    border-radius: 10px;
    border-left: 5px solid var(--blue);
}

.privacy-card h2 { margin-bottom: 12px; }
.privacy-card p { margin: 0; }
.privacy-card p + p { margin-top: 14px; }
.privacy-updated { margin: 24px 0 0; color: #90a3b7; font-size: .9rem; }

.service-page { max-width: 800px; }
.service-page .logo { width: min(100%, 240px); max-height: 120px; margin: 28px 0; }
.service-header h1 { margin: 0; font-size: clamp(2rem, 5vw, 3rem); }
.service-intro { max-width: 680px; margin: 16px 0 0; color: var(--blue); font-size: 1.2rem; font-weight: 700; }

.service-section,
.service-cta {
    margin-top: 20px;
    padding: 28px;
    background: var(--card);
    border-radius: 10px;
}

.service-section h2,
.service-cta h2 { margin-bottom: 12px; }
.service-section p { margin: 0; }
.service-section p + p { margin-top: 14px; }
.service-scope { border-left: 5px solid var(--blue); }

.service-list { margin: 0; padding-left: 22px; }
.service-list li + li { margin-top: 8px; }
.service-list li::marker { color: var(--blue); }

.service-cta {
    background: var(--pricing);
    border: 1px solid #2b4d6d;
}

.service-cta p { margin: 0; }
.service-cta-links { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 20px; }
.service-cta-links a { color: var(--blue); font-weight: 700; }

@media (max-width: 560px) {
    .container { padding: 32px 0; }
    .hero { margin-bottom: 36px; }
    .logo { width: min(100%, 240px); max-height: 120px; }
    .pricing { margin-top: 36px; padding: 28px 24px; }
    .contacts { margin-top: 36px; }
    .footer-content { flex-direction: column; }
    .service-section,
    .service-cta { padding: 24px; }
}
