/* HERO */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 80px;
    background:
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.25), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #ecfdf5 40%, #bbf7d0 100%);
}

.hero-section__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
}

.hero-section__content h1 {
    margin: 14px 0 18px;
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--zk-color-primary);
}

.hero-section__content p {
    max-width: 650px;
    margin: 0 0 28px;
    font-size: 18px;
    color: var(--zk-color-muted);
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-section__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hero-feature-item {
    padding: 18px;
    border: 1px solid var(--zk-color-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}

.hero-feature-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    color: var(--zk-color-primary);
}

.hero-feature-item span {
    display: block;
    font-size: 14px;
    color: var(--zk-color-muted);
}

.hero-section__visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-box {
    width: 100%;
    max-width: 560px;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-image-box img {
    width: 100%;
    max-height: 620px;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(15, 23, 42, 0.15);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.45);
    color: var(--zk-color-muted);
    font-weight: 700;
}

/* BRANDS */
.brands-section {
    padding: 20px 0 10px;
}

.brands-section__inner {
    position: relative;
    padding: 34px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.07), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid var(--zk-color-border);
    box-shadow: var(--zk-shadow);
}

.brands-section__head {
    max-width: 760px;
    margin-bottom: 26px;
}

.brands-section__head h2 {
    margin: 10px 0 12px;
    font-size: 34px;
    line-height: 1.15;
    color: var(--zk-color-primary);
}

.brands-section__head p {
    margin: 0;
    color: var(--zk-color-muted);
    font-size: 16px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.brand-item {
    min-height: 110px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--zk-color-border);
    border-radius: 20px;
    background: #fff;
    text-align: center;
}

.brand-item span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--zk-color-muted);
}

.brand-item strong {
    font-size: 20px;
    color: var(--zk-color-primary);
}

/* COMMON */
.section-heading--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading--between {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading__action {
    flex: 0 0 auto;
}

.services-grid,
.portfolio-grid,
.team-grid,
.testimonials-grid,
.blog-grid {
    display: grid;
    gap: 24px;
}

/* SERVICES */
.services-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.services-grid--advanced {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card--advanced {
    padding: 30px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--zk-color-border);
    box-shadow: var(--zk-shadow);
}

.service-card--advanced::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #0f172a 100%);
}

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.service-card__number {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    color: var(--zk-color-secondary);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--zk-color-secondary);
    font-size: 13px;
    font-weight: 800;
}

.service-card--advanced h3 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.15;
    color: var(--zk-color-primary);
}

.service-card--advanced p {
    margin: 0 0 18px;
    color: var(--zk-color-muted);
    font-size: 15px;
}

.service-card__list ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card__list li {
    position: relative;
    padding-left: 20px;
    color: var(--zk-color-text);
    font-size: 14px;
    font-weight: 600;
}

.service-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--zk-color-secondary);
}

/* ABOUT - CLEAN */
.about-clean {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 40px;
    align-items: center;
}

.about-clean__left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-clean__panel {
    min-height: 360px;
    padding: 38px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 25%),
        linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
}

.about-clean__label {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.about-clean__panel h3 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.14;
    color: #fff;
}

.about-clean__panel p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.75;
}

.about-clean__mini {
    width: 220px;
    margin: -6px 0 0 28px;
    padding: 20px 22px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--zk-color-border);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
    text-align: left;
}

.about-clean__mini strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    color: var(--zk-color-primary);
}

.about-clean__mini span {
    font-size: 14px;
    color: var(--zk-color-muted);
    line-height: 1.6;
}

.about-clean__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-clean__right h2 {
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.08;
    color: var(--zk-color-primary);
}

.about-clean__right p {
    margin: 0 0 16px;
    color: var(--zk-color-muted);
    font-size: 17px;
    line-height: 1.8;
}

.about-clean__features {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.about-clean__feature {
    min-height: 92px;
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid var(--zk-color-border);
    background: #fff;
    box-shadow: var(--zk-shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-clean__feature strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    color: var(--zk-color-primary);
}

.about-clean__feature span {
    color: var(--zk-color-muted);
    font-size: 14px;
}

.about-clean__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

/* COUNTERS */
.counters-section {
    padding-top: 20px;
}

.counters-head {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.counters-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.10);
    color: #15803d;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.counters-head h2 {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.1;
    color: var(--zk-color-primary);
}

.counters-head p {
    margin: 0;
    color: var(--zk-color-muted);
    font-size: 17px;
}

.counters-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.counter-item {
    min-height: 180px;
    padding: 28px 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    border: 1px solid #dcfce7;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter-item strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    color: #166534;
    margin-bottom: 12px;
    font-weight: 800;
}

.counter-item span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--zk-color-primary);
}

/* PORTFOLIO */
.portfolio-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.portfolio-grid--advanced {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card--advanced {
    padding: 32px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--zk-color-border);
    box-shadow: var(--zk-shadow);
}

.portfolio-card--advanced::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, #0f172a 0%, #2563eb 100%);
}

.portfolio-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.portfolio-card__tag {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--zk-color-secondary);
    font-size: 13px;
    font-weight: 700;
}

.portfolio-card__year {
    font-size: 13px;
    font-weight: 700;
    color: var(--zk-color-muted);
}

.portfolio-card--advanced h3 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.12;
    color: var(--zk-color-primary);
}

.portfolio-card--advanced p {
    margin: 0 0 18px;
    color: var(--zk-color-muted);
    font-size: 15px;
}

.portfolio-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--zk-color-secondary);
    font-weight: 700;
}

/* TEAM */
.team-grid--advanced {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card--advanced {
    padding: 30px 24px;
    text-align: left;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--zk-color-border);
    box-shadow: var(--zk-shadow);
}

.team-card__avatar {
    width: 78px;
    height: 78px;
    margin: 0 0 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zk-color-primary);
    color: #fff;
    font-weight: 800;
    font-size: 20px;
}

.team-card__content h3 {
    margin: 0 0 6px;
    font-size: 24px;
    color: var(--zk-color-primary);
}

.team-card__role {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--zk-color-secondary);
    font-size: 14px;
    font-weight: 700;
}

.team-card__content p {
    margin: 0;
    color: var(--zk-color-muted);
    font-size: 15px;
}

/* TESTIMONIALS */
.testimonials-grid--advanced {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card--advanced {
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--zk-color-border);
    box-shadow: var(--zk-shadow);
}

.testimonial-card__rating {
    margin-bottom: 14px;
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-card--advanced p {
    margin: 0 0 18px;
    color: var(--zk-color-text);
    font-size: 16px;
    line-height: 1.75;
}

.testimonial-card__author strong {
    display: block;
    margin-bottom: 4px;
    color: var(--zk-color-primary);
    font-size: 17px;
}

.testimonial-card__author span {
    color: var(--zk-color-muted);
    font-size: 14px;
}

/* BLOG */
.blog-grid--advanced {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card--advanced {
    padding: 0;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--zk-color-border);
    box-shadow: var(--zk-shadow);
}

.blog-card__thumb {
    display: block;
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
    overflow: hidden;
}

.blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card--advanced:hover .blog-card__thumb img {
    transform: scale(1.04);
}

.blog-card__thumb-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zk-color-muted);
    font-weight: 700;
    background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
}

.blog-card__body {
    padding: 28px;
}

.blog-card__badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--zk-color-secondary);
    font-size: 13px;
    font-weight: 700;
}

.blog-card__body h3 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.14;
}

.blog-card__body h3 a {
    color: var(--zk-color-primary);
}

.blog-card__body p {
    margin: 0 0 18px;
    color: var(--zk-color-muted);
    font-size: 15px;
}

.blog-card__link {
    color: var(--zk-color-secondary);
    font-weight: 700;
}

/* CTA */
.cta-box--advanced {
    padding: 46px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.22), transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(16, 185, 129, 0.15), transparent 40%),
        linear-gradient(180deg, #bbf7d0 0%, #ffffff 100%);
}

.cta-box--advanced .button--secondary:hover {
    background: rgba(255, 255, 255, 0.75);
}

.cta-box__content p {
    margin: 14px 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

/* EMPTY */
.section-empty-message {
    width: 100%;
    margin: 0;
    padding: 24px 28px;
    border: 1px dashed var(--zk-color-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    color: var(--zk-color-muted);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-section__content h1 {
        font-size: 52px;
    }

    .hero-section__features {
        grid-template-columns: 1fr;
    }

    .services-grid--advanced,
    .portfolio-grid--advanced,
    .team-grid--advanced,
    .testimonials-grid--advanced,
    .blog-grid--advanced,
    .counters-wrap,
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-section__grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 24px;
        align-items: center;
    }

    .hero-section__content h1 {
        font-size: 40px;
    }

    .hero-section__features {
        grid-template-columns: 1fr;
    }

    .hero-image-box {
        min-height: auto;
        max-width: 100%;
    }

    .hero-image-box img {
        max-height: 420px;
    }

    .about-clean {
        grid-template-columns: 1fr;
    }

    .about-clean__panel {
        min-height: auto;
    }

    .about-clean__right h2,
    .counters-head h2 {
        font-size: 34px;
    }

    .section-heading--between {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid--advanced,
    .portfolio-grid--advanced,
    .team-grid--advanced,
    .testimonials-grid--advanced,
    .blog-grid--advanced,
    .counters-wrap,
    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 70px 0 40px;
    }

    .hero-section__grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 16px;
        align-items: center;
    }

    .hero-section__content h1 {
        font-size: 24px;
        line-height: 1.12;
    }

    .hero-section__content p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .hero-section__actions {
        gap: 10px;
        margin-bottom: 18px;
    }

    .hero-section__actions .button {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }

    .hero-section__features {
        display: none;
    }

    .hero-image-box {
        max-width: 100%;
        min-height: auto;
    }

    .hero-image-box img {
        max-height: 300px;
        width: 100%;
        object-fit: contain;
    }

    .hero-image-placeholder {
        min-height: 220px;
        border-radius: 22px;
    }

    .brands-section__inner {
        padding: 24px;
        border-radius: 22px;
    }

    .brands-section__head h2,
    .counters-head h2,
    .about-clean__panel h3,
    .about-clean__right h2 {
        font-size: 28px;
    }

    .about-clean__panel {
        padding: 26px;
        border-radius: 22px;
    }

    .about-clean__mini {
        width: 100%;
        margin: 0;
    }

    .services-grid--advanced,
    .portfolio-grid--advanced,
    .team-grid--advanced,
    .testimonials-grid--advanced,
    .blog-grid--advanced,
    .counters-wrap,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .service-card--advanced,
    .portfolio-card--advanced,
    .team-card--advanced,
    .testimonial-card--advanced,
    .blog-card__body,
    .counter-item,
    .cta-box--advanced {
        padding: 24px;
        border-radius: 22px;
    }

    .counter-item {
        min-height: 150px;
    }

    .counter-item strong {
        font-size: 36px;
    }

    .team-card__content h3,
    .portfolio-card--advanced h3,
    .blog-card__body h3 {
        font-size: 22px;
    }
}
.cta-box--advanced .section-eyebrow {
    background: rgba(255, 255, 255, 0.72);
    color: #14532d;
    font-weight: 800;
}

.cta-box__content h2 {
    color: #0f172a;
}

.cta-box__content p {
    color: #1f3b2d;
    font-weight: 500;
}

.cta-box--advanced .button--primary {
    background: #14532d;
    color: #ffffff;
}

.cta-box--advanced .button--primary:hover {
    background: #166534;
    color: #ffffff;
}

.cta-box--advanced .button--secondary {
    color: #14532d;
    border-color: rgba(20, 83, 45, 0.32);
    background: rgba(255, 255, 255, 0.78);
}

.cta-box--advanced .button--secondary:hover {
    background: #ffffff;
    color: #14532d;
}