.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-container {
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
}


/* HERO */

.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 144px;
}

.hero-grid {
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 100%;
}

.hero-container {
    position: relative;
    display: grid;
    gap: 48px;
    padding-bottom: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    max-width: 900px;
    margin: 0;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -0.055em;
    color: var(--forest2);
    z-index: 600;
}

.hero-title span {
    display: block;
    background: linear-gradient(90deg, var(--leaf), var(--forest), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    max-width: 680px;
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.75;
    color: #3f3f46;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    transition: .25s ease;
}

.hero-btn:hover {
    transform: translateY(-4px);
}

.btn-primary.hero-btn {
    background: var(--forest);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    border: 1px solid rgba(11, 51, 38, .15);
    background: rgba(255, 255, 255, .60);
    color: var(--forest);
}

.btn-secondary:hover {
    background: #fff;
    box-shadow: var(--shadow-card);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 680px;
    margin: 40px 0 0;
    text-align: center;
}

.hero-stats div {
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .65);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    backdrop-filter: blur(10px);
}

.hero-stats dt {
    font-size: 24px;
    font-weight: 900;
    color: var(--forest);
}

.hero-stats dd {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    color: #71717a;
}

.hero-figure {
    position: relative;
    margin: 12px 0 0;
}

.hero-image-glow {
    position: absolute;
    inset: -32px;
    border-radius: 48px;
    background: linear-gradient(45deg, rgba(167, 243, 208, .4), rgba(255, 255, 255, .2), rgba(216, 180, 91, .2));
    filter: blur(40px);
}

.hero-image-wrap {
    position: relative;
    perspective: 1200px;
}

.hero-image {
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, .6);
    transition: transform .3s ease-out;
    will-change: transform;
}


/* COMMON SECTIONS */

.section-padding {
    padding: 60px 0;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading-grid {
    display: grid;
    gap: 24px;
    align-items: end;
    text-align: center;
}

.section-label {
    margin: 0;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--leaf);
}

.section-label.light {
    color: var(--mint);
}

.section-title {
    margin: 12px 0 0;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--forest2);
}

.section-title.small {
    font-size: 30px;
}

.light-title {
    color: #fff;
}

.section-intro {
    max-width: 780px;
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.75;
    color: #3f3f46;
}


/* BENEFITS */

.benefits-section {
    padding-bottom: 40px;
}

.benefits-grid {
    display: grid;
    gap: 16px;
}

.benefit-card {
    padding: 20px;
    border-radius: 26px;
    border: 1px solid rgba(11, 51, 38, .10);
    background: rgba(255, 255, 255, .60);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    backdrop-filter: blur(14px);
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.benefit-icon {
    width: 128px;
    display: inline-flex;
}

.benefit-card h2 {
    margin: 12px 0 0;
    font-size: 16px;
    font-weight: 900;
    color: var(--forest2);
}

.benefit-card p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: #52525b;
}


/* SERVICES */

.services-grid {
    display: grid;
    gap: 24px;
}

.service-card {
    padding: 28px;
    border-radius: 32px;
    border: 1px solid rgba(11, 51, 38, .10);
    background: rgba(255, 255, 255, .65);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    backdrop-filter: blur(14px);
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.service-card img {
    width: auto;
    height: 200px;
    transition: .5s ease;
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0.8;
}

.service-card:hover img {
    transform: scale(1.06);
    opacity: 1;
}

.service-card h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: var(--forest2);
    padding-right: 180px;
}

.service-card p {
    margin: 12px 0 0;
    line-height: 1.75;
    color: #52525b;
    padding-right: 180px;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-weight: 900;
    color: var(--leaf);
    text-decoration: none;
    transition: gap .2s ease;
}

.service-card:hover a {
    gap: 12px;
}


/* TECHNOLOGIES */

.tech-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.tech-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .35), transparent);
}

.tech-box {
    display: grid;
    gap: 32px;
    padding: 24px;
    border-radius: 32px;
    border: 1px solid rgba(11, 51, 38, .10);
    background: rgba(255, 255, 255, .55);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tech-list li {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(11, 51, 38, .10);
    background: var(--sage);
    color: var(--forest);
    font-size: 14px;
    font-weight: 900;
    transition: .25s ease;
}

.tech-list li:hover {
    transform: translateY(-4px);
    background: var(--forest);
    color: #fff;
}


/* PROJECTS */

.projects-grid {
    display: grid;
    gap: 24px;
}

.project-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(11, 51, 38, .10);
    background: rgba(255, 255, 255, .60);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    backdrop-filter: blur(14px);
    transition: .3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.project-image {
    overflow: hidden;
    margin: 0;
}

.project-image img {
    width: 100%;
    transition: .5s ease;
    height: auto;
    padding: 4px;
    opacity: 0.8;
    border-radius: 24px 24px 0 0;
}

.project-card:hover img {
    opacity: 1;
    transform: scale(1.03);
}

.project-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
}

.project-content h3 {
    margin: 0;
    font-weight: 900;
    color: var(--forest2);
}

.project-content p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #71717a;
}

.project-content>span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--sage);
    color: var(--forest);
    transition: .25s ease;
}

.project-card:hover .project-content>span {
    background: var(--forest);
    color: #fff;
}


/* PROCESS */

.process-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: var(--forest);
    color: #fff;
}

.process-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(64px);
}

.process-glow-top {
    right: -96px;
    top: -96px;
    width: 320px;
    height: 320px;
    background: rgba(167, 243, 208, .15);
}

.process-glow-bottom {
    left: 48px;
    bottom: -128px;
    width: 384px;
    height: 384px;
    background: rgba(47, 125, 75, .25);
}

.process-inner {
    position: relative;
}


.process-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.process-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(14px);
    transition: .3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .15);
}

.process-card span {
    font-size: 14px;
    font-weight: 900;
    color: var(--mint);
}

.process-card h3 {
    margin: 20px 0 0;
    font-size: 20px;
    font-weight: 900;
}

.process-card p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .70);
}


/* WHY US */

.why-section {
    position: relative;
    padding: 96px 0;
}

.why-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, transparent, rgba(236, 253, 245, .60));
}

.why-heading {
    display: grid;
    margin-bottom: 48px;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #d1fae5;
    color: var(--forest);
    font-size: 14px;
    font-weight: 900;
}

.why-grid {
    display: grid;
    gap: 24px;
}

.why-card {
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #d1fae5;
    background: rgba(255, 255, 255, .80);
    backdrop-filter: blur(14px);
    transition: .3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: #d1fae5;
    font-size: 24px;
    transition: .3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    background: var(--forest);
    color: #fff;
}

.why-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 900;
    color: var(--forest2);
}

.why-card p {
    margin: 0;
    line-height: 1.75;
    color: #475569;
}


/* PRICING */

.pricing-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

.pricing-grid {
    display: grid;
    gap: 24px;
}

.plan-card {
    position: relative;
    padding: 32px;
    border-radius: 32px;
    border: 1px solid rgba(11, 51, 38, .10);
    background: rgba(255, 255, 255, .65);
    color: var(--ink);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    backdrop-filter: blur(14px);
    transition: .3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.plan-card-featured {
    border-color: var(--forest);
    background: var(--forest);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.popular-label {
    position: absolute;
    right: 24px;
    top: 24px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--forest);
    font-size: 12px;
    font-weight: 900;
}

.plan-card h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
}

.plan-desc {
    min-height: 80px;
    margin: 12px 0 0;
    line-height: 1.75;
    color: #52525b;
}

.plan-card-featured .plan-desc {
    color: rgba(255, 255, 255, .75);
}

.plan-price {
    margin: 24px 0 0;
    font-size: 30px;
    font-weight: 900;
    color: var(--forest);
}

.plan-card-featured .plan-price {
    color: var(--mint);
}

.plan-card ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 800;
    color: #52525b;
}

.plan-card-featured ul {
    color: rgba(255, 255, 255, .80);
}

.plan-card li {
    display: flex;
    gap: 8px;
}

.plan-card li span {
    color: var(--leaf);
}

.plan-card-featured li span {
    color: var(--mint);
}

.plan-card a {
    display: inline-flex;
    margin-top: 32px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--forest);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.plan-card-featured a {
    background: #fff;
    color: var(--forest);
}

.plan-card a:hover {
    transform: translateY(-4px);
}


/* FAQ */

.faq-section {
    padding: 60px 0;
}

.faq-container {
    width: min(100% - 32px, 1024px);
    margin-inline: auto;
}

.faq-heading {
    max-width: 780px;
    margin-inline: auto;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(11, 51, 38, .10);
    background: rgba(255, 255, 255, .70);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    backdrop-filter: blur(14px);
    transition: .25s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 900;
    color: var(--forest2);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary>span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-plus {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--sage);
    color: var(--forest);
    transition: .25s ease;
}

.faq-item[open] .faq-plus {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 16px 0 0;
    line-height: 1.75;
    color: #3f3f46;
}


/* CTA */

.cta-section {
    padding: 60px 0;
}

.cta-box {
    overflow: hidden;
    padding: 32px;
    border-radius: 32px;
    background: var(--forest);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.cta-grid {
    display: grid;
    gap: 32px;
}

.cta-box h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.cta-box p {
    max-width: 680px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .70);
}

.cta-btn {
    display: inline-flex;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    background: #fff;
    color: var(--forest);
    font-weight: 900;
    text-decoration: none;
    transition: .25s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);
}


/* CONTACT */

.contact-section {
    padding-bottom: 96px;
}

.contact-box {
    display: grid;
    gap: 32px;
    padding: 24px;
    border-radius: 32px;
    background: rgba(228, 238, 220, .90);
    box-shadow: var(--shadow-soft);
}

.contact-address {
    margin-top: 24px;
    font-style: normal;
    color: #3f3f46;
}

.contact-address p {
    margin: 0;
}

.contact-address p+p {
    margin-top: 8px;
}

.contact-address a {
    font-weight: 900;
    color: var(--forest);
    text-decoration: none;
}

.contact-address a:hover {
    color: var(--leaf);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .75);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(11, 51, 38, .10);
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: .2s ease;
}

.contact-form textarea {
    min-height: 128px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--leaf);
    box-shadow: 0 0 0 4px rgba(47, 125, 75, .10);
}

.form-submit {
    border: 0;
    cursor: pointer;
    padding: 16px 28px;
    border-radius: 999px;
    background: var(--forest);
    color: #fff;
    font-weight: 800;
    font: inherit;
}

.form-submit:disabled {
    opacity: .60;
    cursor: not-allowed;
}

.form-notice {
    margin: 0;
    font-weight: 700;
    color: var(--forest);
}


/* RESPONSIVE */

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 54px;
    }

    .hero-text {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-box {
        padding: 48px;
    }

    .cta-grid {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .contact-box {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 156px;
    }

    .hero-container {
        grid-template-columns: 1.05fr .95fr;
        padding-bottom: 112px;
    }

    .hero-title {
        font-size: 64px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title.small {
        font-size: 28px;
    }


    .tech-box {
        grid-template-columns: .9fr 1.1fr;
        align-items: center;
        padding: 60px;
    }

    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
    }


    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-stats {
        gap: 8px;
    }

    .hero-stats div {
        padding: 14px 10px;
    }

    .hero-stats dt {
        font-size: 20px;
    }

    .hero-stats dd {
        font-size: 11px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}