:root {
    --copper: #FF6A00;
    --emergency-red: #D32F2F;
    --teal: #008064;
    --muted: #6b7280;
    --mutedLight: #9aa3af;
    --line: #e5e7eb;
    --bgLight: #f9fafb
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

header {
    padding: 12px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

header svg {
    vertical-align:middle;
    height: calc(1rem + 16px);
}

.call-now {
    background: var(--emergency-red);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15)
}

.call-now:hover {
    background: #e65c00
}

.lang-wrap {
    display: flex;
    align-items: center;
    gap: .5rem
}

#lang-select {
    appearance: none;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: .35rem .7rem;
    font: inherit;
    cursor: pointer
}

#lang-select:focus {
    outline: 2px solid #cbd5e1;
    outline-offset: 2px
}

main {
    padding: 20px;
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 18px
}

.hero {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.hero h1, h2 {
    font-weight: 900;
    margin: 0;
}

.hero h1 {
    font-size: 1.8rem;
    color: var(--teal)
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--copper)
}

.hero p {
    color: white;
    font-weight: 700;
    background: var(--emergency-red);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 1.05rem;
    margin-top: 18px;
    width: fit-content;
    margin: 30px;
}

.features {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    border-radius: 20px;
    background: var(--teal);
    padding: 5px
}

@media(min-width:720px) {
    .features {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1100px) {
    .features {
        grid-template-columns: repeat(4, 1fr)
    }
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none
}

.card:hover {
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 255, 255, .5);
    transition-duration: 0.1s
}

.card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111
}

p {
    margin: 0;
    font-size: .9rem;
    color: var(--muted);
    text-align: center;
}

.icon {
    height: 2rem
}

footer {
    padding: 16px;
}

.copyright {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--line)
}