/* =========================================================
   Sasha Digital Solutions - Device & Hardware Services
   ========================================================= */

.hardware-hero {
    background:
        radial-gradient(circle at top right, rgba(201, 162, 39, 0.22), transparent 35%),
        radial-gradient(circle at bottom left, rgba(47, 90, 70, 0.14), transparent 38%),
        linear-gradient(135deg, var(--cream-light), var(--cream));
    padding: 86px 0;
}

.hardware-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 46px;
    align-items: center;
}

.hardware-hero-text h1 {
    color: var(--green-dark);
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.hardware-hero-text p {
    color: var(--muted);
    font-size: 1.12rem;
    margin-bottom: 24px;
    max-width: 760px;
}

/* Hardware Pills */

.hardware-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.hardware-pill {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    background: var(--cream-light);
    border: 1px solid var(--border);
    color: var(--green-dark);
}

.hardware-summary-card {
    background:
        linear-gradient(145deg, var(--green-dark), var(--green-medium));
    color: var(--white);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(201, 162, 39, 0.38);
}

.hardware-summary-card h2 {
    color: var(--gold);
    margin-bottom: 18px;
}

.hardware-summary-card ul {
    padding-left: 20px;
}

.hardware-summary-card li {
    margin-bottom: 12px;
}

/* Sections */

.hardware-section {
    padding: 80px 0;
    background: var(--white);
}

.hardware-light {
    background: var(--cream);
}

.hardware-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: start;
}

.hardware-split h2 {
    color: var(--green-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.14;
}

.hardware-split p {
    color: var(--muted);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

/* Feature Cards */

.hardware-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hardware-feature-card {
    background: var(--cream-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 20px rgba(47, 51, 47, 0.08);
    position: relative;
    overflow: hidden;
}

.hardware-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--rust), var(--gold));
}

.hardware-feature-card h3 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.hardware-feature-card p {
    color: var(--muted);
}

/* Audience Cards */

.hardware-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hardware-audience-card {
    background: var(--green-dark);
    color: var(--white);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.hardware-audience-card span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    margin-bottom: 12px;
}

.hardware-audience-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.hardware-audience-card p {
    color: #d9ded6;
}

/* Highlight Cards */

.hardware-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.hardware-highlight-card {
    background: var(--cream-light);
    border-radius: 24px;
    padding: 34px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hardware-highlight-card h2 {
    color: var(--green-dark);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.14;
    margin-bottom: 16px;
}

.hardware-highlight-card p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.hardware-highlight-card.dark {
    background: var(--green-dark);
    color: var(--white);
}

.hardware-highlight-card.dark h2 {
    color: var(--white);
}

.hardware-highlight-card.dark p {
    color: #d9ded6;
}

/* Process */

.hardware-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.hardware-process-step {
    background: var(--cream-light);
    border-radius: 20px;
    padding: 26px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(47, 51, 47, 0.08);
}

.hardware-process-step span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--rust);
    color: var(--white);
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 14px;
}

.hardware-process-step h3 {
    color: var(--green-dark);
    margin-bottom: 8px;
}

.hardware-process-step p {
    color: var(--muted);
}

/* CTA */

.hardware-cta {
    background:
        linear-gradient(rgba(183, 65, 14, 0.9), rgba(143, 50, 11, 0.92)),
        var(--rust);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.hardware-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.hardware-cta p {
    font-size: 1.1rem;
    margin-bottom: 28px;
}

/* Responsive */

@media (max-width: 1100px) {
    .hardware-feature-grid,
    .hardware-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .hardware-hero-grid,
    .hardware-split,
    .hardware-highlight-grid {
        grid-template-columns: 1fr;
    }

    .hardware-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hardware-hero {
        padding: 64px 0;
    }

    .hardware-section {
        padding: 58px 0;
    }

    .hardware-feature-grid,
    .hardware-audience-grid,
    .hardware-process-grid {
        grid-template-columns: 1fr;
    }

    .hardware-summary-card,
    .hardware-highlight-card {
        padding: 26px;
    }
}