/* Global styles */
:root {
    color-scheme: light;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #f9fbfc;
    color: #1f2937;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    width: min(1100px, 100% - 36px);
    margin: 0 auto;
}
header {
    background: #0f4c81;
    color: #fff;
    padding: 28px 0 24px;
}
header .container {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    align-items: center;
}
header h1 {
    margin: 0;
    font-size: clamp(1.6rem, 2.2vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
}
header p {
    margin: 12px 0 0;
    max-width: 620px;
    font-size: 1rem;
    opacity: 0.92;
}
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.button, .button-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button {
    background: #ff7a00;
    color: #fff;
    border: none;
}
.button:hover, .button-alt:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 35px rgba(15, 76, 129, 0.18);
}
.button-alt {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    padding: 42px 0 40px;
}
.hero-text {
    max-width: 620px;
}
.hero-number {
    margin: 16px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f4f6fb;
    font-weight: 700;
    font-size: 0.95rem;
    flex-wrap: wrap;
}
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    width: min(270px, 100%);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.32), rgba(255,255,255,0.1));
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    border: 5px solid rgba(255,255,255,0.18);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}
main {
    padding: 24px 0 64px;
}
.section {
    padding: 42px 0;
}
.section h2 {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 2.2vw, 2.4rem);
}
.section p {
    margin: 0 0 24px;
    max-width: 760px;
    color: #4f5d72;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 22px 80px rgba(17, 44, 73, 0.08);
    border: 1px solid rgba(38, 70, 140, 0.08);
}
.card h3 {
    margin: 0 0 14px;
    color: #0f4c81;
}
.card p {
    margin: 0;
    color: #5b6881;
}
.form-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}
.form-grid.full {
    grid-template-columns: 1fr;
}
label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}
input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #d3dce6;
    background: #fff;
    font-size: 1rem;
    color: #1a2531;
}
textarea {
    min-height: 140px;
    resize: vertical;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #0f4c81;
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
}
.notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 600;
}
.notice.success {
    background: #e7f7ec;
    color: #1d6f3b;
}
.notice.error {
    background: #fdecea;
    color: #a1201f;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.service-list li {
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(15, 76, 129, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
}
.service-list li::before {
    content: '✓';
    color: #0f4c81;
    font-weight: 700;
}
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
footer {
    padding: 28px 0 20px;
    text-align: center;
    color: #525f72;
    font-size: 0.95rem;
}
.google-form {
    width: 100%;
    min-height: 560px;
    border: 1px solid #d3dce6;
    border-radius: 20px;
    overflow: hidden;
}
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    header .container {
        grid-template-columns: 1fr;
    }
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    .cta-group {
        justify-content: center;
    }
    .hero-number {
        justify-content: center;
    }
    .hero-image {
        width: min(230px, 80vw);
        margin: 8px auto 0;
    }
}
@media (max-width: 640px) {
    header {
        padding: 24px 0 20px;
    }
    .button, .button-alt {
        width: 100%;
    }
    .hero-number {
        font-size: 0.9rem;
        text-align: center;
    }
    header h1 {
        font-size: clamp(1.45rem, 5vw, 1.95rem);
    }
    header p {
        font-size: 0.95rem;
    }
}
