:root {
    --muted: #4B5563;
    --border-2: rgba(17, 17, 17, .08);
    --shadow: 0 16px 40px rgba(17, 17, 17, .08);
    --radius: 20px;
    --brand: #38B800;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 28px;
    align-items: start;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--secondary-corporate-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.section h2,
.section-head h2,
.cta-copy h2 {
    margin: 0 0 14px;
    font-weight: 600;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.section-head p,
.intro-copy p,
.split-copy p,
.cta-copy p {
    color: var(--muted);
}

.intro-copy p+p {
    margin-top: 14px;
}

.intro-card {
    background: var(--white);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
}

.intro-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 600;
}

.intro-card p {
    color: var(--muted);
    margin: 0 0 12px;
}

.text-link {
    color: var(--secondary-corporate-color);
    font-weight: 700;
}

.text-link:hover {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.20);
}

.cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid {
    display: grid;
    gap: 20px;
}

.info-card,
.value-card {
    background: var(--white);
    border: 1px solid var(--border-2);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 32px 28px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 184, 0, .10);
    color: var(--secondary-corporate-color);
    font-weight: 800;
    margin-bottom: 18px;
}

.info-card h3,
.value-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 600;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.split-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.split-copy {
    max-width: 540px;
}

.check-list {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: #111111;
    font-weight: 500;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 5px rgba(56, 184, 0, .12);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.spec-item {
    background: #fff;
    border: 1px solid var(--border-2);
    border-radius: 16px;
    padding: 24px 22px;
}

.spec-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.value-card p,
.spec-item span {
    color: var(--muted);
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-2);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
    transform: translateZ(0);
    will-change: transform;
}

.product-card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 20px 46px rgba(17, 17, 17, .12);
}

.product-image {
    aspect-ratio: 3 / 2;
    background: #eef2f4;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0) scale(1);
    transition: transform .35s ease;
    backface-visibility: hidden;
}

.product-body {
    padding: 24px 22px;
}

.product-body h3 {
    margin: 0 0 10px;
}

.product-body p {
    color: var(--muted);
}

@media (max-width: 980px) {

    .split-layout,
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .specs-grid,
    .cards-4,
    .cards-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .product-grid,
    .specs-grid,
    .cards-4,
    .cards-3 {
        grid-template-columns: 1fr;
    }
}