@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
    --home-bg: #0e1b17;
    --home-surface: rgba(255, 255, 255, 0.08);
    --home-surface-strong: #ffffff;
    --home-border: rgba(255, 255, 255, 0.12);
    --home-copy: #dce8e0;
    --home-copy-dark: #40514a;
    --home-accent: #9fd3b5;
    --home-accent-dark: #1d3329;
    --home-panel: #f4f1ea;
    --home-shadow: 0 24px 60px rgba(7, 18, 15, 0.18);
}

body {
    background:
        radial-gradient(circle at top left, rgba(159, 211, 181, 0.22), transparent 28%),
        linear-gradient(180deg, #f6f4ef 0%, #ffffff 55%, #edf3ef 100%);
}

.navigation {
    position: fixed;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(8, 18, 15, 0.38);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navigation .brand a,
.navigation .links a {
    color: #ffffff;
}

.navigation .links a:hover {
    color: white;
}

.home-page {
    color: var(--home-copy-dark);
}

.home-page h1,
.home-page h2,
.home-page h3 {
    font-family: 'Sora', 'Poppins', sans-serif;
    color: #11211d;
}

.home-page p,
.home-page a,
.home-page li,
.home-page span {
    font-family: 'Manrope', 'Poppins', sans-serif;
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(20rem, 0.9fr);
    gap: 2rem;
    align-items: center;
    padding-top: calc(10vh + 5rem);
    padding-bottom: 6rem;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(6, 16, 13, 0.85), rgba(22, 50, 40, 0.68)),
        url(../images/image_11.jpg) center/cover;
    overflow: hidden;
}

.home-hero::before,
.home-hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
}

.home-hero::before {
    top: 8rem;
    right: 10%;
    width: 16rem;
    height: 16rem;
    background: rgba(159, 211, 181, 0.15);
}

.home-hero::after {
    bottom: 4rem;
    left: 8%;
    width: 12rem;
    height: 12rem;
    background: rgba(255, 255, 255, 0.08);
}

.home-hero__copy,
.home-hero__panel {
    position: relative;
    z-index: 1;
}

.home-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--home-accent);
}

.home-hero h1 {
    max-width: 12ch;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.98;
    color: #ffffff;
}

.home-lead {
    margin-top: 1.5rem;
    max-width: 40rem;
    font-size: 1.15rem;
    line-height: 1.8rem;
    color: var(--home-copy);
}

.home-hero__actions,
.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.home-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 12rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font-weight: 700;
    text-align: center;
    transition: 0.25s ease;
}

.home-button:hover {
    transform: translateY(-2px);
}

.home-button--primary {
    color: #0c1713;
    background: linear-gradient(135deg, #c2ead1, #8fcaab);
    box-shadow: 0 18px 34px rgba(120, 178, 145, 0.28);
}

.home-button--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.24);
}

.home-button--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.home-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.home-metric,
.home-card,
.home-process,
.home-testimonial,
.home-showcase__card,
.home-cta__content {
    box-shadow: var(--home-shadow);
}

.home-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--home-border);
    border-radius: 1.25rem;
    padding: 1.25rem;
}

.home-metric strong {
    font-family: 'Sora', 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
}

.home-metric span {
    color: var(--home-copy);
}

.home-hero__panel {
    background: rgba(244, 241, 234, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1.75rem;
    padding: 2rem;
}

.home-panel__label,
.home-showcase__tag {
    display: inline-block;
    margin-bottom: 1rem;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #284237;
    background: rgba(159, 211, 181, 0.35);
}

.home-hero__panel h2 {
    font-size: 2rem;
    line-height: 2.4rem;
}

.home-checklist {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    margin: 1.5rem 0 2rem;
}

.home-checklist li {
    position: relative;
    padding-left: 1.6rem;
    line-height: 1.6rem;
}

.home-checklist li::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #7ab68f, #305244);
}

.home-highlight {
    border-radius: 1.25rem;
    padding: 1.25rem;
    background: #13211d;
}

.home-highlight span,
.home-highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.home-highlight strong {
    display: block;
    margin: 0.35rem 0 0.5rem;
    font-family: 'Sora', 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
}

.home-section,
.home-showcase,
.home-cta {
    position: relative;
    z-index: 1;
}

.home-section,
.home-showcase,
.home-cta {
    padding-top: 5rem;
    padding-bottom: 1rem;
}

.home-section__heading {
    max-width: 46rem;
    margin-bottom: 2rem;
}

.home-section__heading p:last-child,
.home-showcase__intro p:last-of-type {
    margin-top: 1rem;
}

.home-service-grid,
.home-process-grid,
.home-testimonial-grid,
.home-showcase__grid {
    display: grid;
    gap: 1.5rem;
}

.home-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-card,
.home-process,
.home-testimonial,
.home-showcase__card {
    border: 1px solid rgba(26, 48, 40, 0.08);
    border-radius: 1.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.88);
}

.home-card p,
.home-process p,
.home-testimonial p,
.home-showcase__card p {
    margin-top: 0.8rem;
}

.home-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.home-text-link {
    display: inline-flex;
    margin-top: 1.5rem;
    font-weight: 800;
    color: #1f5a45;
}

.home-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-showcase__card--image {
    grid-column: span 2;
    padding: 0;
    overflow: hidden;
}

.home-showcase__card--image img {
    display: block;
    width: 100%;
    /* height: 18rem; */
    object-fit: cover;
}

.home-showcase__card--image div {
    padding: 1.75rem;
}

.home-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-process span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    font-family: 'Sora', 'Poppins', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #183129, #2e5a4c);
}

.home-process h3 {
    margin-top: 1rem;
}

.home-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-testimonial__person {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.home-testimonial__person img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 999px;
    object-fit: cover;
}

.home-testimonial__person p {
    margin-top: 0.15rem;
    color: #658176;
}

.home-cta {
    padding-bottom: 5rem;
}

.home-cta__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(26, 48, 40, 0.08);
    border-radius: 1.75rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(19, 33, 29, 0.96), rgba(33, 69, 57, 0.96));
}

.home-cta__content h2,
.home-cta__content p {
    color: #ffffff;
}

.home-cta__content p:not(.home-eyebrow) {
    max-width: 42rem;
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer {
    color: #f5f5f5;
    background: #0d1814;
    padding: 2rem 1rem 2.75rem;
    text-align: center;
}

.footer h3,
.footer p {
    color: #f5f5f5;
}

.chat {
    border-radius: 999px;
    background: linear-gradient(135deg, #214538, #13251f);
    z-index: 20000;
}

@media screen and (max-width: 90rem) {
    .home-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 72rem) {
    .home-hero,
    .home-showcase,
    .home-cta__content,
    .home-testimonial-grid,
    .home-process-grid,
    .home-metrics {
        grid-template-columns: 1fr;
    }

    .home-hero {
        min-height: auto;
        padding-top: calc(10vh + 4rem);
    }

    .home-hero h1 {
        max-width: 100%;
    }

    .home-service-grid,
    .home-showcase__grid {
        grid-template-columns: 1fr;
    }

    .home-showcase__card--image {
        grid-column: span 1;
    }

    .home-cta__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-cta__content > div,
    .home-cta__actions {
        width: 100%;
    }
}

@media screen and (max-width: 52rem) {
    .navigation {
        background: rgba(8, 18, 15, 0.82);
    }

    .home-hero {
        padding-bottom: 4rem;
    }

    .home-hero h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .home-lead {
        font-size: 1rem;
    }

    .home-hero__panel,
    .home-card,
    .home-process,
    .home-testimonial,
    .home-showcase__card,
    .home-cta__content {
        padding: 1.35rem;
    }

    .home-cta__actions,
    .home-hero__actions {
        flex-direction: column;
    }

    .home-button {
        width: 100%;
        min-width: 0;
    }

    .home-cta__content h2 {
        font-size: clamp(2.2rem, 11vw, 3rem);
        line-height: 1.05;
    }

}