/* ============================================
   ACTIVEDGE MAIN STYLESHEET
   GRC Software Website - Zimbabwe
   ============================================ */

/* ---------- GLOBAL RESET & VARIABLES ---------- */
:root {
    --primary-dark: #0b2b4f;
    --primary: #0a5c8e;
    --primary-light: #1e4a76;
    --secondary: #e6f0fa;
    --text-dark: #1a1f2e;
    --text-muted: #5b6e8c;
    --text-light: #94a3b8;
    --border-light: #eef2f8;
    --bg-light: #f8fafc;
    --bg-card: #f9fbfd;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    --gradient-primary: linear-gradient(135deg, #0b2b4f 0%, #1e4a76 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 75px auto;
    padding: 0 24px;
}
/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-light);
}

p {
    color: var(--text-muted);
    line-height: 1.6;
}


.logo img {
    height: 100px !important;
    width: auto;
    display: block;
    transition: 0.2s;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #084a72;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-light {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ---------- HERO SECTION ---------- */
.hero {
    padding: 10px 0 10px 0;
    background: var(--gradient-hero);
    margin-top: 10px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

.badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 40px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.featured-products {
    display: flex;
    gap: 16px;
    margin: 24px 0 20px;
    flex-wrap: wrap;
}

.product-pill {
    background: var(--white);
    border-radius: 100px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.hero-right {
    flex: 0.9;
    background: linear-gradient(145deg, var(--white), #f5f9ff);
    border-radius: 48px;
    padding: 40px 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(10, 92, 142, 0.1);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 6px;
}

.stats-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-dark), transparent);
    margin: 20px 0 30px;
}

.client-section {
    text-align: center;
}

.client-section p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.client-logos img {
    height: 80px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logos img:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
}

/* ---------- RESELLER BANNER ---------- */
.reseller-banner {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 24px;
    padding: 28px 36px;
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0a5c8e15, #0b2b4f15);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ---------- FULL WIDTH BANNER ---------- */
.full-width-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin: 0 0 60px 0;
    overflow: hidden;
    padding: 60px 0;
}

.strategy-banner {
    background-image: url('../images/chess-king-strategy.jpg');
    background-position: center 25%;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 43, 79, 0.85) 0%, rgba(11, 43, 79, 0.6) 50%, rgba(11, 43, 79, 0.3) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-text {
    max-width: 650px;
    color: var(--white);
    padding: 40px 0;
}

.banner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

.banner-text h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 550px;
}

.btn-banner {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-banner:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---------- PRODUCTS GRID ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 50px 0 60px;
}

.product-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 92, 142, 0.08);
    opacity: 0;
    transform: translateY(40px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 92, 142, 0.2);
}

.product-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.product-card:hover .product-image {
    transform: scale(1.02);
}

.product-content {
    padding: 20px 18px 24px 18px;
}

.local-relevance-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.product-tagline {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.product-description {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.feature-list {
    list-style: none;
    margin: 16px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #2d3a5e;
    padding: 6px 0;
    border-bottom: 1px dashed var(--border-light);
}

.trust-badge {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary));
    color: var(--white);
    border-radius: 18px;
    padding: 10px 14px;
    margin-top: 18px;
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
}

.trust-badge span {
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    transition: gap 0.2s;
}

.product-link:hover {
    gap: 10px;
    text-decoration: underline;
}

/* ---------- BOARDROOM IMAGE CARD ---------- */
.image-break-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.image-break-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-break-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.boardroom-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.image-break-card:hover .boardroom-img {
    transform: scale(1.02);
}

.image-overlay-content {
    padding: 20px 18px 24px 18px;
    text-align: center;
    background: linear-gradient(135deg, var(--white), var(--bg-light));
}

.image-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.image-overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.image-overlay-content p {
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.45;
}

.image-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.image-link:hover {
    gap: 10px;
    text-decoration: underline;
}

/* ---------- TRUST SIGNALS ---------- */
.trust-signals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 60px 0 40px;
    padding: 32px;
    background: linear-gradient(135deg, #f0f6fa, var(--white));
    border-radius: 48px;
}

.signal-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.signal-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.signal-item h4 {
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.signal-item p {
    font-size: 0.8rem;
}

/* ---------- LOCAL RELEVANCE ---------- */
.local-relevance {
    background: #f0f6fa;
    border-left: 4px solid var(--primary);
    padding: 40px;
    border-radius: 24px;
    margin: 48px 0;
}

.local-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.regulation-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.regulation-tag {
    background: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

/* ---------- WHY DILIGENT SECTION ---------- */
.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin: 60px 0;
    align-items: center;
}

.why-content {
    flex: 1;
}

.why-list {
    list-style: none;
    margin-top: 24px;
}

.why-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.why-list .emoji {
    font-size: 1.6rem;
    min-width: 40px;
}

.testimonial-card {
    flex: 1;
    background: var(--bg-card);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid var(--border-light);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
}

/* ---------- INDUSTRY GRID ---------- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.industry-card {
    background: var(--bg-card);
    padding: 24px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid var(--border-light);
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.industry-card h4 {
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.industry-card small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ---------- BLOG PREVIEW ---------- */
.blog-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-category {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin: 12px 0;
    line-height: 1.4;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-link:hover {
    text-decoration: underline;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin: 1rem auto;
    max-width: 600px;
}

/* ---------- FOOTER ---------- */
footer {
    background: #0f172a;
    color: var(--text-light);
    padding: 48px 0 24px;
    margin-top: 64px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-grid h3, .footer-grid strong {
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer-grid a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.8;
    transition: color 0.2s;
}

.footer-grid a:hover {
    color: var(--white);
}

footer hr {
    margin: 24px 0 16px;
    border-color: #1e293b;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        flex-direction: column;
    }
    .hero-right {
        width: 100%;
    }
    .why-grid {
        flex-direction: column;
    }
    .full-width-banner {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
    }
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .client-logos {
        gap: 20px;
    }
    .client-logos img {
        height: 40px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .product-image, .boardroom-img {
        height: 180px;
    }
    .product-content, .image-overlay-content {
        padding: 16px 14px 20px 14px;
    }
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .cta-section {
        padding: 40px 24px;
    }
    .trust-signals {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-right {
        padding: 24px 20px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .btn, .btn-banner {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ========== INSIGHTS SECTION STYLES (Matching Product Cards) ========== */

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 50px 0 60px;
}

.insight-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(10, 92, 142, 0.08);
    opacity: 0;
    transform: translateY(40px);
}

.insight-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.2);
    border-color: rgba(10, 92, 142, 0.2);
}

.insight-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.insight-card:hover .insight-image {
    transform: scale(1.02);
}

.insight-content {
    padding: 24px 22px 28px 22px;
}

.insight-category {
    display: inline-block;
    background: #e6f0fa;
    color: #0a5c8e;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.insight-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b2b4f;
    margin-bottom: 12px;
    line-height: 1.4;
}

.insight-excerpt {
    color: #5b6e8c;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.insight-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eef2f8;
}

.insight-meta span {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a5c8e;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: gap 0.2s;
}

.insight-link:hover {
    gap: 12px;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .insight-image {
        height: 180px;
    }
    
    .insight-content {
        padding: 18px 16px 22px 16px;
    }
    
    .insight-card h3 {
        font-size: 1.2rem;
    }
}