/* Digital Leadership Foundation - Bold Design System */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
}

/* ============================================
   TYPOGRAPHY - BOLD & BIG
   ============================================ */

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.small-text {
    font-size: 1rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background: #1e3a8a;
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.logo > span:first-child {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.logo-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
    
    .logo > span:first-child {
        font-size: 1.2rem;
        padding: 6px 12px;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 120px 40px 100px;
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 30px;
}

.hero .tagline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 100px 40px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 25px;
}

.page-header p {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.3s;
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section {
    margin-bottom: 120px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.5rem;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.section-header p {
    font-size: 1.5rem;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.cards-grid.compact {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cards-grid.compact-problem {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card.compact-card {
    padding: 30px 25px;
    text-align: center;
}

.card.compact-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card.compact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card.compact-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .cards-grid.compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-grid.compact-problem {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .independence-grid.compact-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 16px;
    padding: 45px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card.compact {
    padding: 30px 25px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #3b82f6;
}

.card .icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
}

.card h3 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.card p {
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card a:hover {
    text-decoration: underline;
}

/* ============================================
   HIGHLIGHT BOXES
   ============================================ */

.highlight-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 8px solid #3b82f6;
    padding: 50px;
    margin: 60px 0;
    border-radius: 12px;
}

.mission-box {
    margin-top: 80px;
}

/* Mission Statement Styles */
.mission-statement {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 8px solid #3b82f6;
    padding: 60px 50px;
    margin: 80px 0 60px;
    border-radius: 16px;
    text-align: center;
}

.mission-statement h2 {
    color: #1e3a8a;
    font-size: 3rem;
    margin-bottom: 35px;
}

.mission-lead {
    font-size: 1.4rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mission-action {
    font-size: 1.3rem;
    color: #1e40af;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 500;
}

.mission-action strong {
    color: #1e3a8a;
    font-weight: 800;
}

.highlight-box h3 {
    color: #1e3a8a;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.highlight-box p {
    color: #374151;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.highlight-box ul {
    margin-left: 30px;
    color: #374151;
    font-size: 1.2rem;
}

.highlight-box li {
    margin-bottom: 15px;
}

/* ============================================
   STATS/NUMBERS
   ============================================ */

.stat {
    text-align: center;
}

.stat-number {
    font-size: 5rem;
    font-weight: 900;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.3rem;
    color: #4a5568;
    font-weight: 600;
}

/* ============================================
   INDEPENDENCE SECTION
   ============================================ */

.independence-section {
    background: #1e3a8a;
    color: white;
    padding: 100px 40px;
    margin: 120px 0;
}

.independence-section h2 {
    color: white;
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 80px;
}

.independence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.independence-grid.compact-services {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.independence-card.compact-service {
    padding: 30px 20px;
}

.independence-card.compact-service .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.independence-card.compact-service h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.independence-card.compact-service p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.independence-card {
    text-align: center;
    padding: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.2);
}

.independence-card .icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
}

.independence-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
}

.independence-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.independence-card ul {
    list-style: none;
    text-align: left;
}

.independence-card li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.independence-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #60d5a8;
    font-weight: bold;
    font-size: 1.5rem;
}

/* ============================================
   CIC BADGE
   ============================================ */

.cic-badge {
    background: #fef3c7;
    border: 4px solid #f59e0b;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    margin: 80px auto;
    max-width: 900px;
}

.cic-badge h3 {
    color: #92400e;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cic-badge p {
    color: #92400e;
    font-size: 1.3rem;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #1f2937;
    color: white;
    padding: 80px 40px 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: #60a5fa;
    font-size: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 15px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1.1rem;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}

/* ============================================
   BADGES & TAGS
   ============================================ */

.badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 15px;
}

.badge.coming-soon {
    background: #f59e0b;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    /* Show hamburger, hide desktop menu */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 65px;
        right: -100%;
        background: #1e3a8a;
        width: 280px;
        height: calc(100vh - 65px);
        flex-direction: column;
        padding: 40px 30px;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 12px rgba(0,0,0,0.2);
        z-index: 99;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Logo adjustments */
    .logo {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Typography scaling */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    p, .lead {
        font-size: 1.1rem;
    }
    
    /* Hero section mobile */
    .hero {
        padding: 50px 20px 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .hero .subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    /* Page headers mobile */
    .page-header {
        padding: 60px 20px 40px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.2rem;
    }
    
    /* Section headers mobile */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    /* Container spacing */
    .container {
        padding: 40px 20px;
    }
    
    .section {
        margin-bottom: 50px;
    }
    
    /* Section headers mobile - reduce spacing */
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Cards mobile */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .cards-grid.compact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cards-grid.compact-problem {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 25px 20px;
    }
    
    .card.compact-card {
        padding: 22px 18px;
    }
    
    .card.compact-card .icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .card.compact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .card.compact-card p {
        font-size: 1rem;
    }
    
    .card h3 {
        font-size: 1.6rem;
    }
    
    .card p {
        font-size: 1.1rem;
    }
    
    /* Buttons mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 30px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 1.1rem;
        min-height: 48px; /* Touch target size */
    }
    
    /* Stats mobile */
    .stat-number {
        font-size: 3rem;
        margin-bottom: 12px;
    }
    
    .stat-label {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Stats grid spacing - use class when stats are present */
    
    /* Boxes mobile */
    .highlight-box {
        padding: 28px 20px;
        margin: 35px 0;
    }
    
    .highlight-box h3 {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }
    
    .highlight-box p,
    .highlight-box li {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .highlight-box ul {
        margin-left: 25px;
    }
    
    .mission-statement {
        padding: 35px 20px;
        margin: 40px 0 35px;
    }
    
    .mission-statement h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .mission-lead {
        font-size: 1.15rem;
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .mission-action {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .cic-badge {
        padding: 30px 20px;
        margin: 40px auto;
    }
    
    .cic-badge h3 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .cic-badge p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .mission-box {
        margin-top: 40px;
    }
    
    /* Independence section mobile */
    .independence-section {
        padding: 50px 20px;
        margin: 40px 0;
    }
    
    .independence-section h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .independence-section .lead {
        margin-bottom: 40px;
        font-size: 1.15rem;
    }
    
    .independence-card {
        padding: 25px 20px;
    }
    
    .independence-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .independence-card p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .independence-grid {
        gap: 20px;
    }
    
    .independence-grid.compact-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .independence-card.compact-service {
        padding: 22px 18px;
    }
    
    .independence-card.compact-service .icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .independence-card.compact-service h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .independence-card.compact-service p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* CTA sections mobile */
    .container[style*="background"] {
        padding: 45px 20px !important;
    }
    
    .container[style*="background"] h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .container[style*="background"] .lead {
        font-size: 1.15rem;
        margin-bottom: 30px;
    }
    
    /* Footer mobile */
    footer {
        padding: 45px 20px 25px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .footer-section a {
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - further optimization */
    .hero {
        padding: 40px 18px 35px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }
    
    .hero .tagline {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .container {
        padding: 35px 18px;
    }
    
    .section {
        margin-bottom: 45px;
    }
    
    .mission-statement {
        padding: 30px 18px;
        margin: 35px 0 30px;
    }
    
    .mission-statement h2 {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }
    
    .mission-lead,
    .mission-action {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .independence-section {
        padding: 40px 18px;
        margin: 35px 0;
    }
    
    .independence-section h2 {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .cards-grid {
        gap: 18px;
        margin-top: 35px;
    }
    
    .card {
        padding: 22px 18px;
    }
    
    .card.compact-card {
        padding: 20px 16px;
    }
    
    .cta-button {
        padding: 15px 20px;
        font-size: 1.05rem;
    }
    
    .logo > span:first-child {
        font-size: 1.1rem;
        padding: 5px 10px;
    }
    
    .logo-text {
        display: none;
    }
    
    .highlight-box {
        padding: 25px 18px;
    }
    
    .cic-badge {
        padding: 28px 18px;
    }
}

