/* =========================
   NON-TECHNICAL.CSS – Colour‑coded like CORE-EXPERTISE
   Purple background, green cards, left-aligned header
   Desktop: 3 columns, Tablet: 2 columns, Mobile: 1 column
========================= */

.non-technical {
    width: 100%;
    padding: 80px 0;
    background: #1e1029;
}

.non-technical .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    box-sizing: border-box;
}

/* ----- SECTION HEADER – left alignment ----- */
.non-technical .section-header {
    text-align: left !important;
    margin-bottom: 60px;
}

.non-technical .section-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: flex-start !important;
}

.non-technical .section-tag hr {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4ade80, #c084fc);
    border: none;
    margin: 0;
}

.non-technical .section-tag h5 {
    color: #4ade80;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.non-technical .section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #e2d6f0;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-align: left !important;
}

.non-technical .section-header p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #d1e0d6;
    line-height: 1.5;
    max-width: 650px;
    margin: 0 !important;
    text-align: left !important;
}

/* ----- OFFER GRID – desktop: 3 columns ----- */
.non-technical .offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0 50px;
}

.non-technical .offer-card {
    background: rgba(10, 31, 26, 0.5);
    backdrop-filter: blur(2px);
    border-radius: 24px;
    padding: clamp(20px, 4vw, 28px) clamp(16px, 4vw, 24px);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 222, 128, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;          /* ensure card content centers */
}

.non-technical .offer-card:hover {
    transform: translateY(-8px);
    border-color: #4ade80;
    background: rgba(10, 31, 26, 0.7);
    box-shadow: 0 16px 30px rgba(74, 222, 128, 0.15);
}

/* Icon centering */
.non-technical .offer-icon {
    font-size: 2.8rem;
    color: #4ade80;
    margin-bottom: 20px;
    text-align: center;
}

.non-technical .offer-icon i {
    display: inline-block;
}

/* Text centering inside card */
.non-technical .offer-card h3,
.non-technical .offer-card p {
    text-align: center !important;
}

.non-technical .offer-card h3 {
    font-size: clamp(1.4rem, 4vw, 1.6rem);
    font-weight: 700;
    color: #e2d6f0;
    margin-bottom: 12px;
}

.non-technical .offer-card p {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    color: #d1e0d6;
    line-height: 1.5;
    margin: 0;
}

/* CTA button */
.non-technical .offer-cta {
    text-align: center;
    margin-top: 20px;
}

.non-technical .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    background: #c084fc;
    color: #0a1f1a;
    border: 2px solid #c084fc;
    box-shadow: 0 0 8px rgba(192, 132, 252, 0.3);
}

.non-technical .btn-primary:hover {
    background: #a855f7;
    border-color: #a855f7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

@media (max-width: 1024px) {
    .non-technical {
        padding: 60px 0;
    }
    .non-technical .section-header {
        margin-bottom: 40px;
    }
    .non-technical .offer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .non-technical .offer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .non-technical .section-header h2 {
        margin-bottom: 16px;
    }
    .non-technical .section-header p {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .non-technical .container {
        padding: 0 20px;
    }
    .non-technical .offer-card {
        padding: 20px 16px;
    }
    .non-technical .offer-icon {
        font-size: 2.3rem;
    }
    .non-technical .offer-card h3 {
        font-size: 1.2rem;
    }
    .non-technical .offer-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .non-technical .offer-card {
        padding: 16px 12px;
    }
    .non-technical .offer-card h3 {
        font-size: 1.1rem;
    }
    .non-technical .offer-card p {
        font-size: 0.8rem;
    }
    .non-technical .offer-icon {
        font-size: 2rem;
    }
}