* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #f5f2eb;
}

a {
    color: inherit;
}

.container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    max-width: 850px;
}

.site-header {
    background: #111;
    color: white;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    opacity: 0.8;
}

nav a:hover {
    opacity: 1;
}

.hero {
    background: #1a1a1a;
    color: white;
    padding: 90px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    opacity: 0.75;
}

h1 {
    font-size: clamp(2.3rem, 6vw, 4.8rem);
    line-height: 1.05;
    margin: 15px 0;
    max-width: 900px;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-top: 0;
}

h3 {
    margin-top: 0;
}

.intro {
    max-width: 750px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.section {
    padding: 70px 0;
}

.alt {
    background: white;
}

.cards,
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.package-grid {
    grid-template-columns: repeat(3, 1fr);
}

.card,
.price-card {
    background: #f5f2eb;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
}

.price-card {
    background: white;
}

.price {
    font-size: 1.7rem;
    font-weight: bold;
    margin: 10px 0;
}

.note {
    margin-top: 25px;
    opacity: 0.8;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
    transition: background 0.2s ease;
    min-height: 52px;
}

.button:hover {
    background: #333;
}

.hero .button {
    background: white;
    color: #111;
}

.hero .button:hover {
    background: #eee;
}

.whatsapp {
    background: #25D366;
}

.whatsapp:hover {
    background: #1ea952;
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    flex: 0 0 22px;
}

.legal-page h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 40px;
}

.legal-block {
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
}

.legal-block h2 {
    font-size: 1.5rem;
}

.site-footer {
    background: #111;
    color: white;
    padding: 40px 0;
    font-size: 0.95rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.site-footer p {
    margin: 8px 0;
}

.site-footer a {
    color: white;
    opacity: 0.8;
}

.site-footer a:hover {
    opacity: 1;
}

/* Tablet */

@media (max-width: 1000px) {
    .cards,
    .price-grid,
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

@media (max-width: 650px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    .hero {
        padding: 60px 0;
    }

    .cards,
    .price-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 50px 0;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 10px;
    }

    .legal-block {
        padding: 22px;
    }
}
