body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #1d1d1f;
    background-color: #fafafa;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 32px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo-mark .accent {
    color: #ff6f61;
}

.logo-tagline {
    font-size: 12px;
    opacity: 0.7;
}

.main-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.services-nav {
    background-color: #f3f6fb;
    padding: 8px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.services-nav .main-nav.services {
    justify-content: center;
    gap: 12px;
}

.nav-link {
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    color: #333;
    transition: background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(26, 115, 232, 0.12);
}

.cta-button {
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(120deg, #1a73e8, #3dd5f3);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(26, 115, 232, 0.25);
    transition: transform 0.2s ease;
}

.cta-button:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.site-main {
    padding: 48px 0 80px;
}

.hero {
    padding: 80px 0 48px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(61, 213, 243, 0.12));
    border-radius: 28px;
    margin-bottom: 56px;
}

.hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.12em;
    color: #1a73e8;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 24px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.stats-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.stats-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background-color: #1a73e8;
    color: #fff;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #1660c5;
    text-decoration: none;
}

.btn-link {
    font-weight: 600;
}

.section {
    padding: 56px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 760px;
}

.cards-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.job-callout {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, rgba(26, 115, 232, 0.12), rgba(61, 213, 243, 0.12));
    border-radius: 20px;
    padding: 32px;
}

.job-callout h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.card {
    background-color: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.card h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.people-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.person-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.avatar.placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(120deg, rgba(26, 115, 232, 0.25), rgba(61, 213, 243, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.card-price {
    font-weight: 700;
    font-size: 18px;
    margin-top: auto;
}

.lead-form,
.contact-form {
    background-color: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.lead-form h3,
.contact-form h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
}

.form-row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #3c4043;
}

.form-field input,
.form-field textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d0d5dd;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.15);
    outline: none;
}

.submit-row {
    margin-top: 20px;
}

.submit-row button {
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    background: linear-gradient(120deg, #1a73e8, #3dd5f3);
    color: #fff;
    cursor: pointer;
}

.page-body {
    background-color: #fff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.page-body h1 {
    margin-top: 0;
    font-size: 32px;
}

.page-body h2 {
    margin-top: 32px;
    font-size: 24px;
}

.page-body p {
    line-height: 1.6;
    margin-top: 16px;
}

.page-body ul {
    margin: 20px 0 20px 24px;
    padding: 0;
    list-style: disc;
}

.page-body li {
    margin-bottom: 10px;
}

.link {
    color: #1a73e8;
    font-weight: 600;
}

.site-footer {
    border-top: 1px solid #e7ebf0;
    padding: 32px 0;
    background-color: #fff;
}

.footer-inner {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    font-size: 14px;
    color: #555;
}

.footer-label {
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-logo {
    font-size: 18px;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .job-callout {
        flex-direction: column;
        align-items: flex-start;
    }
}
