/* BizWithAfrica - Marketing Page Styles */
.font-heading { font-family: 'Syne', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }
.gradient-text-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-accent {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff; border: none; padding: 0.75rem 1.75rem; border-radius: var(--radius);
    font-weight: 600; cursor: pointer; transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem;
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(217,119,6,0.3); }
.btn-ghost {
    background: transparent; color: var(--color-text); border: 1px solid var(--color-border);
    padding: 0.75rem 1.75rem; border-radius: var(--radius); font-weight: 600;
    cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem;
}
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); background: rgba(217,119,6,0.05); }
.grid-bg {
    background-image: linear-gradient(rgba(30,41,59,0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(30,41,59,0.4) 1px, transparent 1px);
    background-size: 3.75rem 3.75rem;
}
.nav-blur { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.tab-btn.tab-active { color: var(--color-primary) !important; border-color: var(--color-primary) !important; background: rgba(217,119,6,0.08) !important; }
.pricing-popular { border-color: var(--color-primary) !important; position: relative; }
.pricing-popular::before {
    content: 'Most Popular'; position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff; padding: 0.25rem 1rem; border-radius: 9999px; font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}
html { scroll-behavior: smooth; }
.hero-glow-primary {
    position: absolute; width: 37.5rem; height: 37.5rem; border-radius: 50%;
    background: radial-gradient(circle, rgba(217,119,6,0.12) 0%, transparent 70%); pointer-events: none;
}
.hero-glow-secondary {
    position: absolute; width: 31.25rem; height: 31.25rem; border-radius: 50%;
    background: radial-gradient(circle, rgba(5,150,105,0.1) 0%, transparent 70%); pointer-events: none;
}
.pillar-icon {
    width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center;
    border-radius: 0.75rem; font-size: 1.25rem; flex-shrink: 0;
}
.step-number {
    width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.trust-dim-icon {
    width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center;
    border-radius: 0.625rem; font-size: 1.1rem; flex-shrink: 0;
}
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.stat-item { animation: fadeSlideUp 0.6s ease forwards; }
.stat-item:nth-child(2) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(4) { animation-delay: 0.3s; }
.hamburger-line { display: block; width: 1.25rem; height: 2px; background: var(--color-text); transition: all 0.3s ease; border-radius: 2px; }
.hamburger-active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger-active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.pricing-check { color: var(--color-accent); margin-right: 0.5rem; flex-shrink: 0; }

/* ============================================================
   Custom Color Utilities (replaces Tailwind CDN config extends)
   CSC theme: csc-dark, csc-card, csc-border, csc-cyan, csc-violet, csc-emerald
   BWA theme: bwa-dark, bwa-card, bwa-border, bwa-amber, bwa-emerald, bwa-blue
   ============================================================ */

/* --- CSC palette --- */
.bg-csc-dark { background-color: #0a0f1a; }
.bg-csc-dark\/50 { background-color: rgba(10,15,26,0.5); }
.bg-csc-dark\/60 { background-color: rgba(10,15,26,0.6); }
.bg-csc-dark\/80 { background-color: rgba(10,15,26,0.8); }
.bg-csc-dark\/95 { background-color: rgba(10,15,26,0.95); }
.bg-csc-card { background-color: #111827; }
.bg-csc-card\/30 { background-color: rgba(17,24,39,0.3); }
.bg-csc-card\/60 { background-color: rgba(17,24,39,0.6); }
.bg-csc-cyan { background-color: #06b6d4; }
.bg-csc-cyan\/10 { background-color: rgba(6,182,212,0.1); }
.bg-csc-cyan\/20 { background-color: rgba(6,182,212,0.2); }
.bg-csc-cyan\/80 { background-color: rgba(6,182,212,0.8); }
.bg-csc-violet { background-color: #8b5cf6; }
.bg-csc-violet\/10 { background-color: rgba(139,92,246,0.1); }
.bg-csc-violet\/20 { background-color: rgba(139,92,246,0.2); }
.bg-csc-emerald { background-color: #10b981; }
.bg-csc-emerald\/10 { background-color: rgba(16,185,129,0.1); }
.bg-csc-emerald\/20 { background-color: rgba(16,185,129,0.2); }
.text-csc-cyan { color: #06b6d4; }
.text-csc-violet { color: #8b5cf6; }
.text-csc-emerald { color: #10b981; }
.border-csc-border { border-color: #1e293b; }
.border-csc-border\/50 { border-color: rgba(30,41,59,0.5); }
.border-csc-cyan { border-color: #06b6d4; }
.border-csc-cyan\/30 { border-color: rgba(6,182,212,0.3); }
.divide-csc-border\/50 > :not([hidden]) ~ :not([hidden]) { border-color: rgba(30,41,59,0.5); }
.from-csc-cyan { --tw-gradient-from: #06b6d4; --tw-gradient-to: rgba(6,182,212,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-csc-cyan\/10 { --tw-gradient-from: rgba(6,182,212,0.1); --tw-gradient-to: rgba(6,182,212,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-csc-emerald\/10 { --tw-gradient-from: rgba(16,185,129,0.1); --tw-gradient-to: rgba(16,185,129,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-csc-violet { --tw-gradient-to: #8b5cf6; }
.to-csc-violet\/10 { --tw-gradient-to: rgba(139,92,246,0.1); }
.via-csc-dark { --tw-gradient-to: rgba(10,15,26,0); --tw-gradient-stops: var(--tw-gradient-from), #0a0f1a, var(--tw-gradient-to); }
.hover\:text-csc-cyan:hover { color: #06b6d4; }
.hover\:bg-csc-cyan\/80:hover { background-color: rgba(6,182,212,0.8); }
.hover\:border-csc-cyan:hover { border-color: #06b6d4; }
.hover\:border-csc-cyan\/30:hover { border-color: rgba(6,182,212,0.3); }

/* --- BWA palette --- */
.bg-bwa-dark { background-color: #0a0f1a; }
.bg-bwa-dark\/80 { background-color: rgba(15,20,25,0.8); }
.bg-bwa-dark\/90 { background-color: rgba(15,20,25,0.9); }
.bg-bwa-dark\/95 { background-color: rgba(15,20,25,0.95); }
.bg-bwa-card { background-color: #111827; }
.bg-bwa-card\/30 { background-color: rgba(26,31,46,0.3); }
.bg-bwa-card\/50 { background-color: rgba(26,31,46,0.5); }
.bg-bwa-card\/60 { background-color: rgba(26,31,46,0.6); }
.bg-bwa-border { background-color: #2a3042; }
.bg-bwa-amber\/10 { background-color: rgba(217,119,6,0.1); }
.bg-bwa-emerald { background-color: #059669; }
.bg-bwa-emerald\/10 { background-color: rgba(5,150,105,0.1); }
.bg-bwa-blue\/10 { background-color: rgba(37,99,235,0.1); }
.text-bwa-amber { color: #d97706; }
.text-bwa-emerald { color: #059669; }
.text-bwa-blue { color: #2563eb; }
.border-bwa-border { border-color: #2a3042; }
.border-bwa-border\/50 { border-color: rgba(42,48,66,0.5); }
.border-bwa-amber\/30 { border-color: rgba(217,119,6,0.3); }
.divide-bwa-border > :not([hidden]) ~ :not([hidden]) { border-color: #2a3042; }
.from-bwa-amber { --tw-gradient-from: #d97706; --tw-gradient-to: rgba(217,119,6,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-bwa-amber\/10 { --tw-gradient-from: rgba(217,119,6,0.1); --tw-gradient-to: rgba(217,119,6,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-bwa-emerald { --tw-gradient-to: #059669; }
.to-bwa-emerald\/10 { --tw-gradient-to: rgba(5,150,105,0.1); }
.via-bwa-dark { --tw-gradient-to: rgba(15,20,25,0); --tw-gradient-stops: var(--tw-gradient-from), #0a0f1a, var(--tw-gradient-to); }
.hover\:text-bwa-amber:hover { color: #d97706; }
.hover\:border-bwa-amber\/30:hover { border-color: rgba(217,119,6,0.3); }
