/* ================================
   HL LINKSCHANGE – PREMIUM UI
   ================================ */

.hl-wrapper {
    max-width: 1200px;
    margin: 70px auto;
    padding: 20px;
    font-family: inherit;
}

/* ================================
   FORM
   ================================ */

.hl-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    margin-bottom: 70px;
}

.hl-form h2 {
    margin-bottom: 30px;
    color: #d6111e;
    font-weight: 700;
}

.hl-form input[type="text"],
.hl-form input[type="url"],
.hl-form input[type="email"],
.hl-form textarea {
    width: 100% !important;
    padding: 15px !important;
    margin: 0 0 20px 0 !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 12px !important;
    font-size: 15px;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.hl-form textarea {
    min-height: 120px;
    resize: vertical;
}

.hl-form input:focus,
.hl-form textarea:focus {
    border-color: #d6111e !important;
    box-shadow: 0 0 0 3px rgba(214,17,30,0.12);
    outline: none;
}

/* BUTTON */

.hl-form button {
    background: #d6111e;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hl-form button:hover {
    background: #000000;
    transform: translateY(-2px);
}

/* ================================
   GDPR – EI ENÄÄ HYPPI
   ================================ */

.hl-form .hl-gdpr {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin: 0 0 25px 0 !important;
    padding: 0 !important;
    line-height: 1.4;
}

.hl-form .hl-gdpr input[type="checkbox"] {
    position: relative !important;
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 18px !important;
    vertical-align: middle !important;
    cursor: pointer;
}

.hl-form .hl-gdpr span {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hl-form .hl-gdpr a {
    color: #d6111e;
    font-weight: 600;
    text-decoration: none;
}

.hl-form .hl-gdpr a:hover {
    text-decoration: underline;
}

/* ================================
   GRID – 3 PALSTAA
   ================================ */

.hl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

@media (max-width: 992px) {
    .hl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hl-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CARD
   ================================ */

.hl-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    border-color: #ddc76d;
}

.hl-card h3 {
    margin-top: 0;
    margin-bottom: 18px;
    color: #d6111e;
    font-size: 20px;
}

.hl-card p {
    margin-bottom: 22px;
    line-height: 1.6;
    color: #333;
}

/* VISIT BUTTON */

.hl-btn {
    display: inline-block;
    background: #ddc76d;
    color: #000000;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.hl-btn:hover {
    background: #d6111e;
    color: #ffffff;
    transform: translateY(-2px);
}