/*
Theme Name: Aleph Safe Theme
Theme URI: https://alephsafe.co.za
Author: Aleph Technologies
Description: Custom WordPress Theme for Aleph Safe marketing and SEO site.
Version: 1.7.0
License: Proprietary
Text Domain: alephsafe
*/

:root {
    --navy: #0B2A44;
    --gold: #C9A24A;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #F5F7FA;
    --border: #E2E8F0;
}

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

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
}

main {
    margin: 0;
    padding: 0;
}

header {
    margin: 0;
    padding: 0;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-navy {
    background-color: var(--navy);
    color: var(--white);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
}

/* ============================================
   TOGGLE BAR
   ============================================ */
.toggle-bar {
    background-color: var(--navy);
    border-bottom: none;
    padding: 16px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 99;
    width: 100%;
    margin: 0;
}

.toggle-bar-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.toggle-group {
    display: flex;
    gap: 8px;
}

.toggle-btn {
    padding: 10px 18px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border: 1px solid transparent !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.5px !important;
}

.toggle-btn.active {
    background-color: var(--gold) !important;
    color: var(--navy) !important;
}

.toggle-btn.inactive {
    background-color: transparent !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(to bottom, var(--navy), var(--black));
    color: var(--white);
    text-align: center;
    padding: clamp(60px, 10vw, 100px) 5%;
    margin: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(32px, 5vw + 10px, 52px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.demo-link:hover {
    opacity: 0.8;
}

.hero-micro-copy {
    font-size: 13px;
    color: #CCC;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust {
    padding: 60px 5%;
    background-color: #F8F9FA;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.trust-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 16px;
}

.trust-stat {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.trust-copy {
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.6;
}

.trust-substat {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ============================================
   DIFFERENTIATION SECTION
   ============================================ */
.diff {
    padding: 60px 5%;
    background-color: var(--white);
}

.diff-header {
    text-align: center;
    margin-bottom: 48px;
}

.diff-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
}

.diff-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.diff-left h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.diff-left p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.diff-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diff-checkpoint {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.diff-checkpoint i {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.diff-checkpoint span {
    font-size: 15px;
    color: var(--navy);
    font-weight: 500;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions {
    padding: 60px 5%;
    background-color: #F8F9FA;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.solutions-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.solution-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.solution-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 16px;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* ============================================
   RISK REVERSAL BANNER
   ============================================ */
.risk-banner {
    background: linear-gradient(135deg, var(--navy), #1a3a52);
    color: var(--white);
    padding: 48px 5%;
    text-align: center;
}

.risk-container {
    max-width: 600px;
    margin: 0 auto;
}

.risk-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.risk-banner p {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.risk-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.risk-link:hover {
    opacity: 0.8;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: 60px 5%;
    background-color: var(--white);
}

.pricing-note {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
}

.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border-color: var(--gold);
    background: #FFF;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.price span {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.pricing-card .desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    font-size: 13px;
    color: var(--navy);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features i {
    color: var(--gold);
    font-size: 16px;
}

/* ============================================
   OBJECTION SECTION
   ============================================ */
.objection {
    padding: 60px 5%;
    background-color: #F8F9FA;
}

.objection-container {
    max-width: 1000px;
    margin: 0 auto;
}

.objection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.objection-left h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.objection-text {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 16px;
}

.objection-subtext {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.objection-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.objection-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.objection-item i {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.objection-item span {
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .diff-grid,
    .objection-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group a {
        width: 100%;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WORDPRESS NAV MENUS
   ============================================ */
.primary-nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-nav-menu li {
    margin: 0;
}
.primary-nav-menu a {
    color: #fff;
    font-size: 14px;
    opacity: 0.75;
    text-decoration: none;
    transition: opacity 0.2s;
}
.primary-nav-menu a:hover {
    opacity: 1;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.mobile-nav-menu li {
    margin: 0;
}
.mobile-nav-menu a {
    display: block;
    color: #fff;
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav-menu li {
    margin: 0;
}
.footer-nav-menu a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.2s;
}
.footer-nav-menu a:hover {
    opacity: 1;
}