* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-weight: 700;
    color: #111;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

p, .reason-card p, .service-info p, .contact-card .value, label, input, textarea {
    font-size: 15px;
    color: #444;
}

.hero p {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 400;
    color: #fff;
}

.hero h1 {
    color: #fff;
    ext-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* HEADER */
header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px clamp(16px, 5vw, 100px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    font-size: 16px;
    font-weight: bold;
}

.header-title .short {
    display: none;
}

nav.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    z-index: 9999;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}


body.menu-open .mobile-menu {
    display: flex;
}


/* HERO */
.hero {
    /* background-image: url('images/your-image.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero * {
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-size: clamp(32px, 6vw, 64px);
    margin-bottom: 10px;
}

.hero p {
    font-size: clamp(18px, 3vw, 32px);
    margin-bottom: 20px;
}

/* BUTTONS */
button,
.hero button,
.contact-form button {
    font-family: 'Inter', sans-serif;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: #0072ff;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 114, 255, 0.3);
    transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

button:hover {
    background-color: #005fd6;
    box-shadow: 0 6px 18px rgba(0, 114, 255, 0.4);
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 114, 255, 0.3);
}

/* SECTION PADDING */
section {
    padding: 60px clamp(16px, 5vw, 100px);
}

section h2 {
    padding-bottom: 10px;
}

section:nth-of-type(even) {
    background-color: #f9f9f9;
}

section + section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* WHY BLOCK */
.why {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
}

.why img {
    width: 50%;
    object-fit: cover;
    border-radius: 12px;
}

.reasons-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
}

.reasons-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    /*gap: 20px;*/
    gap: 16px;
}

.reasons-title {
    font-size: 28px;
    /*margin-bottom: 30px;*/
}

.reasons {
    display: flex;
    flex-direction: column;
    /*gap: 20px;*/
    gap: 16px;
    width: 100%;
}

.reason-card {
    /*padding: 20px;*/
    padding: 16px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.reason-card:hover {
    transform: translateY(-3px);
}

.reason-card h3 {
    /*font-size: 18px;*/
    font-size: 17px;
    /*margin-bottom: 8px;*/
    margin-bottom: 6px;
}

.reason-card p {
    /*font-size: 14px;*/
    font-size: 13.5px;
    color: #555;
    margin: 0;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.service-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    font-size: 15px;
}

.service-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.service-info .price {
    font-weight: 600;
    font-size: 15px;
    color: #0072ff;
    white-space: nowrap;
}

/* FORM */
#form {
    position: relative;
    background-image: url("section/form-back.jpg");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

#form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.15);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form .form-group {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
}

/* CONTACTS */
.contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.contacts .contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    background: none;
    color: #333;
    text-decoration: none;
}

.contact-card img {
    width: 40px;
    height: 40px;
}

.contact-card .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card .text .label {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-card .text .value {
    font-size: 14px;
    color: #333;
}

/* FOOTER */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 30px;
}

.grecaptcha-badge {
    transform: scale(0.75);
    transform-origin: bottom right;
}

/* MEDIA QUERIES */
@media (max-width: 1120px) {
    .reasons-wrapper {
        width: 100%;
        display: block;
    }

    .why {
        flex-direction: column;
    }

    .why img,
    .reasons {
        width: 100%;
    }

    .reasons {
        order: 0;
    }

    .why img {
        order: 1;
    }

    section {
        padding: 30px;
    }
}

@media (max-width: 800px) {
    .header-title .full {
        display: none;
    }

    .header-title .short {
        display: inline;
    }

    nav.nav {
        display: none;
    }

    .burger {
        display: block;
    }
}

@media (max-width: 610px) {
    .contact-form .form-row {
        flex-direction: column;
    }
}