* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f6f7f3;
    color: #17202a;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1160px;
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e5e7eb;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.2px;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.nav a:hover {
    color: #111827;
}

.hero {
    padding: 84px 0 72px;
    background:
        radial-gradient(circle at top right, rgba(116, 156, 95, 0.18), transparent 28%),
        linear-gradient(180deg, #f9faf7 0%, #eef2e8 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: stretch;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #5a7550;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 1.03;
    letter-spacing: -1px;
    color: #111827;
    max-width: 760px;
    margin-bottom: 20px;
}

.hero-copy {
    font-size: 19px;
    color: #4b5563;
    max-width: 700px;
    margin-bottom: 24px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-points span {
    background: #ffffff;
    border: 1px solid #dde3d7;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #26323f;
    box-shadow: 0 6px 14px rgba(17, 24, 39, 0.04);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.btn {
    display: inline-block;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: #111827;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14);
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #f3f4f6;
}

.btn-large {
    padding: 16px 26px;
    font-size: 16px;
}

.hero-contact-box {
    background: #ffffff;
    border: 1px solid #dfe5da;
    border-radius: 22px;
    padding: 22px;
    max-width: 620px;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.contact-label {
    font-size: 13px;
    font-weight: 700;
    color: #5a7550;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hero-email {
    display: inline-block;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
    word-break: break-word;
    margin-bottom: 8px;
}

.hero-email:hover {
    text-decoration: underline;
}

.contact-note {
    color: #4b5563;
    font-size: 15px;
}

.hero-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-panel-card {
    background: #111827;
    color: #f9fafb;
    border-radius: 28px;
    padding: 32px;
    min-height: 250px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.16);
}

.panel-kicker {
    color: #b9c8b1;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.hero-panel-card h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.hero-panel-card p {
    color: #d7dde5;
    font-size: 16px;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #dfe5da;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.stat-card strong {
    display: block;
    font-size: 18px;
    color: #111827;
    margin-bottom: 6px;
}

.stat-card span {
    display: block;
    font-size: 14px;
    color: #4b5563;
}

.announcement-bar {
    background: #111827;
    color: #ffffff;
}

.announcement-bar .container {
    padding: 18px 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.section {
    padding: 84px 0;
}

.section-light {
    background: #f6f7f3;
}

.section-dark {
    background: #111827;
}

.section-header {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-header h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 14px;
}

.section-header p:last-child {
    font-size: 17px;
    color: #4b5563;
}

.section-header-dark h2 {
    color: #ffffff;
}

.section-header-dark p:last-child {
    color: #cdd5df;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e4e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.05);
}

.service-card h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.15;
}

.service-card p {
    font-size: 16px;
    color: #4b5563;
}

.featured-card {
    border: 1px solid #d7e1d2;
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ef 100%);
}

.service-tag {
    display: inline-block;
    margin-bottom: 14px;
    background: #dfead8;
    color: #2f4d28;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 26px;
}

.reason-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}

.reason-card p {
    color: #cfd8e3;
    font-size: 15px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-step {
    background: #ffffff;
    border: 1px solid #e4e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.04);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 10px;
}

.process-step p {
    color: #4b5563;
}

.quote-banner {
    padding-top: 18px;
    padding-bottom: 18px;
}

.quote-banner-inner {
    background: linear-gradient(135deg, #e6eee0 0%, #dce8d4 100%);
    border: 1px solid #d3dec9;
    border-radius: 30px;
    padding: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.05);
}

.quote-banner-inner h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 12px;
}

.quote-banner-inner p:last-child {
    color: #46525f;
    font-size: 17px;
    max-width: 760px;
}

.quote-banner-action {
    flex-shrink: 0;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e4e7eb;
    border-radius: 28px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 24px;
    align-items: center;
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.05);
}

.contact-card h2 {
    font-size: 40px;
    line-height: 1.08;
    color: #111827;
    margin-bottom: 14px;
}

.contact-card-left p:last-child {
    color: #4b5563;
    font-size: 17px;
}

.contact-card-right {
    background: #f7f9f5;
    border: 1px solid #dde5d8;
    border-radius: 22px;
    padding: 26px;
}

.contact-email-large {
    display: inline-block;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    word-break: break-word;
}

.contact-email-large:hover {
    text-decoration: underline;
}

.contact-supporting-text {
    font-size: 15px;
    color: #4b5563;
}

.site-footer {
    background: #111827;
    color: #cfd6df;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding-bottom: 30px;
}

.site-footer h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}

.site-footer a {
    color: #ffffff;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0 28px;
    color: #9aa5b3;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-grid,
    .services-grid,
    .reasons-grid,
    .process-grid,
    .contact-card,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .quote-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 40px;
        letter-spacing: -0.5px;
    }

    .hero-email,
    .contact-email-large {
        font-size: 22px;
    }

    .section-header h2,
    .quote-banner-inner h2,
    .contact-card h2 {
        font-size: 30px;
    }

    .services-grid,
    .reasons-grid,
    .process-grid,
    .contact-card,
    .footer-grid,
    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 68px 0;
    }

    .hero {
        padding: 68px 0 56px;
    }

    .quote-banner-inner,
    .contact-card,
    .hero-panel-card,
    .hero-contact-box,
    .service-card,
    .reason-card,
    .process-step {
        padding: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-large {
        width: 100%;
    }
}