/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Livvic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Livvic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--gray-700);
    background: linear-gradient(135deg, 
        #0a0e1a 0%, 
        #0f1419 25%, 
        #1a1f2e 50%, 
        #252a3a 75%, 
        #0f1419 100%);
    background-attachment: fixed;
    background-size: 100% 100%;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Livvic', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
}

p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    font-weight: 400;
}

/* Color System */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary: #0d9488;
    --secondary-dark: #0f766e;
    --accent: #ea580c;
    --success: #059669;
    --warning: #d97706;
    --error: #dc2626;
    --gray-50: #020617;
    --gray-100: #0f1419;
    --gray-200: #1a1f2e;
    --gray-300: #252a3a;
    --gray-400: #5d6d7e;
    --gray-500: #85929e;
    --gray-600: #aeb6bf;
    --gray-700: #d5dbdb;
    --gray-800: #eaeded;
    --gray-900: #f4f6f6;
    --white: #ffffff;
    --dark-bg: #0a0e1a;
    --dark-surface: #0f1419;
    --dark-elevated: #1a1f2e;
    
    /* Professional Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e293b 100%);
    --gradient-surface: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-dark-navy: linear-gradient(135deg, #020617 0%, #0f172a 30%, #1e293b 70%, #334155 100%);
    --gradient-card: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero-navy: linear-gradient(135deg, #020617 0%, #0f172a 25%, #1e293b 50%, #334155 75%, #475569 100%);
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
        touch-action: manipulation;
    }
}
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary .btn-text,
.btn-primary .btn-hover-text {
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-primary .btn-hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding: 0 8px;
    max-width: 100%;
}

.btn-primary:hover .btn-text {
    opacity: 0;
    transform: translateY(-10px);
}

.btn-primary:hover .btn-hover-text {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-xl);
    animation: pulse-green 1.5s infinite;
}

.btn-primary:hover::before {
    left: 100%;
}

@keyframes pulse-green {
    0% {
        box-shadow: var(--shadow-xl);
    }
    50% {
        box-shadow: 0 20px 35px -5px rgba(18, 140, 126, 0.3), 0 8px 10px -6px rgba(18, 140, 126, 0.3);
    }
    100% {
        box-shadow: var(--shadow-xl);
    }
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

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

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Leadership Section */
.leadership-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .leadership-section {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}
.leadership-image {
    position: relative;
}

@media (max-width: 768px) {
    .leadership-image {
        max-width: 250px;
        margin: 0 auto;
    }
}
.leadership-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .leadership-image img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .leadership-image img {
        height: 240px;
    }
}
.leadership-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .leadership-image img:hover {
        transform: none;
    }
}
.leadership-content {
    text-align: left;
}

@media (max-width: 768px) {
    .leadership-content {
        text-align: center;
    }
}
.leadership-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: left;
}

@media (max-width: 768px) {
    .leadership-content h2 {
        text-align: center;
        font-size: clamp(1.5rem, 6vw, 1.875rem);
    }
}
.leadership-content p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .leadership-content p {
        text-align: center;
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
}
.highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    opacity: 0.3;
    border-radius: 1px;
}

/* Navigation */
.navbar {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 5px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.4);
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 16px;
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 25px;
    }
}
.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.5);
    transform: scale(0.98);
    border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .navbar.scrolled {
        transform: none;
    }
}
.nav-container {
    width: 100%;
    padding: 0 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 41px;
}

@media (max-width: 768px) {
    .nav-container {
        height: 45px;
        padding: 0 4px;
    }
}
.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.logo-img {
    height: 1.5rem;
    width: auto;
    max-width: 1.5rem;
    /* remove direct spacing — divider will provide symmetrical spacing */
    margin-right: 0;
    vertical-align: middle;
}


.logo-separator {
    color: #e0e0e0;
    margin: 0 0.5rem;
    font-weight: 600;
    font-size: 1.2em;
}

.nav-logo a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* decorative divider between logo icon and wordmark */
.logo-divider {
    display: inline-block;
    /* slimmer, slightly shorter divider */
    width: 4px;
    height: 20px;
    /* equal spacing on both sides so divider is centered between icon and text */
    margin: 0 0.4rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #6f9cff 0%, #5b6bff 50%, #2ea6ff 100%);
    box-shadow: 0 6px 18px rgba(46,166,255,0.12), 0 1px 0 rgba(255,255,255,0.03) inset;
    transform-origin: center;
}

/* ensure the wordmark doesn't add extra margin so spacing is symmetric */
.nav-logo h2 {
    margin: 0;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-logo a:hover {
        transform: none;
    }
}
.nav-menu {
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: 20px;
        width: 220px;
        max-width: calc(100vw - 40px);
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}
.nav-link {
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    letter-spacing: -0.01em;
    backdrop-filter: blur(10px);
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .nav-link {
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 12px;
        text-align: center;
        width: 100%;
        display: block;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }
}
.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.nav-link:active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    -webkit-text-fill-color: white;
    background-clip: initial;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    .nav-link:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-link:active {
        transform: none;
    }
}
.nav-link.active {
    color: white;
    background: var(--gradient-primary) !important;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4) !important;
    transform: translateY(-1px);
}


@media (max-width: 768px) {
    .nav-link.active {
        transform: none;
        color: white !important;
        background: var(--gradient-primary) !important;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        background-clip: initial;
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4) !important;
    }
}
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 6px;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
}
.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-toggle:hover {
        transform: none;
    }
}
.nav-toggle span {
    width: 18px;
    height: 2px;
    background-color: var(--gray-500);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle:hover span {
    background-color: var(--primary-light);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
/* Hero Section */
.hero {
    padding: 120px 0 50px;
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
        min-height: 90vh;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 20px;
    }
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 28px;
    }
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
.hero-graphic {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-graphic {
        width: 280px;
        height: 280px;
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-graphic {
        width: 240px;
        height: 240px;
    }
}
.hero-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-graphic img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-graphic img:hover {
        transform: none;
    }
}

/* Page Header */
.page-header {
    padding: 140px 0 40px;
    background: var(--gradient-hero-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.3) 0%, rgba(30, 42, 58, 0.2) 50%, rgba(45, 62, 80, 0.1) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Overview Section */
.overview {
    padding: 40px 0 30px;
    background: transparent;
}

@media (max-width: 768px) {
    .overview {
        padding: 30px 0 20px;
    }
}


.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.overview-card {
    background: var(--gradient-card);
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 768px) {
    .overview-card {
        padding: 20px 16px;
    }
}
.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .overview-card:hover {
        transform: none;
    }
}
.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.overview-card:hover .overview-icon-wrapper {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.overview-icon {
    font-size: 28px;
    filter: brightness(0) invert(1);
}

.overview-card h3 {
    color: white;
    margin-bottom: 12px;
    font-size: clamp(1.125rem, 2.2vw, 1.25rem);
    font-weight: 600;
}

.overview-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    flex-grow: 1;
}

.challenge-impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    margin-bottom: 0;
}

.impact-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impact-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* About Section */
.about {
    padding: 60px 0;
    background: transparent;
}

@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }
}
.about-content {
    display: grid;
    gap: 32px;
}

.about-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

@media (max-width: 768px) {
    .about-text {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.about-card {
    background: var(--gradient-card);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .about-card {
        padding: 24px 20px;
    }
}
.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .about-card:hover {
        transform: none;
    }
}
.about-card h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.about-card p {
    color: var(--gray-500);
    line-height: 1.6;
}

.about-card ul {
    list-style: none;
    color: var(--gray-500);
}

.about-card li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.about-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Toggle Switch Section */
.toggle-section {
    padding: 80px 0 5px;
    background: transparent;
}

.toggle-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.toggle-container {
    position: relative;
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 6px;
    display: flex;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    width: fit-content;
    margin: 0;
    gap: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.toggle-container:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-xl);
}

.toggle-container::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.toggle-container.products-active::before {
    transform: translateX(108px);
    background: var(--gradient-primary);
}

.toggle-option {
    background: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: var(--gray-500);
    width: 100px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    height: 32px;
}

.toggle-option.active {
    color: var(--white);
    font-weight: 600;
}

.toggle-option:hover:not(.active) {
    color: var(--gray-300);
    background: rgba(255, 255, 255, 0.03);
}

.toggle-text {
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

@media (max-width: 768px) {
    .toggle-section {
        padding: 100px 0 40px;
    }

    .toggle-wrapper {
        justify-content: flex-start;
        padding: 0 20px;
    }

    .toggle-container {
        margin: 0;
        padding: 8px;
        border-radius: 10px;
    }

    .toggle-container::before {
        width: 110px;
        height: 36px;
        top: 8px;
        left: 8px;
        border-radius: 6px;
    }

    .toggle-container.products-active::before {
        transform: translateX(118px);
    }

    .toggle-option {
        padding: 12px 24px;
        font-size: 15px;
        width: 110px;
        height: 36px;
    }

    .toggle-text {
        font-size: 14px;
    }
}/* Content Section Animations */
.content-section {
    transition: opacity 0.3s ease;
}

/* Products Section */
.products {
    padding: 10px 0;
    background: transparent;
}

@media (max-width: 768px) {
    .products {
        padding: 10px 0;
    }
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.product-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 768px) {
    .product-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .product-card:hover {
        transform: none;
    }
}
.product-card:hover::before {
    transform: scaleX(1);
}

.product-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.product-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-badge.popular {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: transparent;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.product-card h3 {
    color: white;
    font-size: clamp(1.125rem, 2.2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.product-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: clamp(0.9rem, 1.6vw, 0.95rem);
    flex-grow: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
}

.product-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
    padding: 10px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.service-category {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    color: white;
    font-size: clamp(1.125rem, 2.2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: clamp(0.9rem, 1.6vw, 0.95rem);
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.service-cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .service-cta {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
}

.service-btn {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Livvic', sans-serif;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
}

.service-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.consult-options {
    gap: 12px;
    flex-wrap: wrap;
}

/* Why Choose Us / Features Section */
.why-choose-us, .features {
    padding: 60px 0;
    background: transparent;
}

@media (max-width: 768px) {
    .why-choose-us, .features {
        padding: 40px 0;
    }
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.feature-card {
    background: var(--gradient-card);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .feature-card {
        padding: 24px 20px;
    }
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .feature-card:hover {
        transform: none;
    }
}
.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    color: var(--gray-800);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--gray-500);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 60px 0;
    background: transparent;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.process-step h3 {
    color: var(--gray-800);
    margin-bottom: 16px;
}

.process-step p {
    color: var(--gray-500);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.faq-item {
    background: var(--gradient-card);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: var(--gray-800);
    margin-bottom: 16px;
}

.faq-item p {
    color: var(--gray-500);
    line-height: 1.6;
}

/* Courses Section */
.courses {
    padding: 60px 0;
    background: transparent;
}

.courses-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.courses-description h3 {
    font-size: clamp(1.375rem, 3.5vw, 1.625rem);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.courses-description p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.course-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.topic-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow);
}

.coming-soon-card {
    background: var(--gradient-card);
    padding: 40px;
    border-radius: 16px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    text-align: center;
}

.coming-soon-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.coming-soon-card h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.coming-soon-card p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.coming-soon-card ul {
    text-align: left;
    list-style: none;
    color: var(--gray-500);
}

.coming-soon-card li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.coming-soon-card li::before {
    content: '⏳';
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: transparent;
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
}
.contact-card {
    background: var(--gradient-card);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 32px 24px;
    }
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .contact-card:hover {
        transform: none;
    }
}
.contact-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

.contact-icon:hover {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 6px 12px rgba(102, 126, 234, 0.3));
}

.contact-icon svg {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
}

.contact-card h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.contact-note {
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 500;
    display: block;
    margin-top: 8px;
}

.contact-cta {
    background: var(--gradient-card);
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 32px 24px;
        border-radius: 16px;
    }
}
.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-cta h3 {
    font-size: clamp(1.375rem, 3.5vw, 1.625rem);
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}
/* Why Contact Us Section */
.why-contact {
    padding: 60px 0;
    background: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--gradient-card);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    letter-spacing: -0.01em;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
}

.contact-form-container h3 {
    font-size: clamp(1.375rem, 3.5vw, 1.625rem);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-transform: none;
}

.contact-form-container p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-form-container .contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-form-container .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-container .benefit-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

.contact-form-container {
    background: var(--gradient-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    font-family: inherit;
    background-color: var(--dark-elevated);
    color: var(--gray-700);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer Separator */
.footer-separator {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-400), transparent);
    margin: 20px 0 10px 0;
    opacity: 0.5;
}

/* Footer */
.footer {
    background: transparent;
    color: var(--gray-500);
    padding: 8px 0; /* compact */
    border-top: none; /* remove extra line */
    text-align: center;
}

.footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px; /* keep it compact but accessible */
}

.footer-powered {
    color: var(--gray-400);
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 36px;
}

@media (max-width: 768px) {
    .footer {
        display: block; /* keep footer visible on small screens */
        padding: 10px 0;
    }
    .footer .footer-inner {
        padding: 0 12px;
        min-height: 32px;
    }
    .footer-powered {
        font-size: 0.95rem;
        text-align: center;
        margin: 0 auto;
    }
    .footer-separator {
        margin: 10px 0 5px 0;
    }
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
        text-align: center;
    }
}
.footer-section h3 {
    color: var(--gray-800);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
@media (max-width: 768px) {
    .footer-section h3 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
}


.footer-section h4 {
    color: var(--gray-700);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
@media (max-width: 768px) {
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}


.footer-section p {
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
@media (max-width: 768px) {
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 16px;
        max-width: 100%;
    }
}

    .footer-section p {
        font-size: 14px;
    }
}
.footer-section ul {
    list-style: none;
}

@media (max-width: 768px) {
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
@media (max-width: 768px) {
    .footer-section ul li {
        margin-bottom: 10px;
    }
}

        justify-content: center;
        gap: 16px;
    }
}
.footer-section li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .footer-section li {
        margin-bottom: 0;
    }
}
.footer-section a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--gray-700);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background-color: var(--dark-bg);
    color: var(--gray-700);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--gray-400);
}

.footer-section ul li a {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.newsletter-form .btn {
    padding: 10px 16px;
    font-size: 14px;
    background-color: rgba(59, 130, 246, 0.1);
}

@media (max-width: 768px) {
    .footer-section ul li a {
        padding: 8px 12px;
        font-size: 0.9rem;
        display: block;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 8px;
        border-radius: 6px;
    }
    
    .footer-section ul li a:hover {
        background-color: rgba(59, 130, 246, 0.2);
        border-color: var(--primary-light);
        transform: translateY(-1px);
    }
}

/* Disable legacy .footer-bottom styles in favor of compact footer */
.footer-bottom {
    display: none !important;
}

@media (max-width: 768px) {
    .footer .footer-inner {
        padding: 0 12px;
        min-height: 32px;
    }
    .footer-powered {
        font-size: 0.9rem;
    }
}
/* Team Page Styles */
.team-leadership, .core-team {
    padding: 60px 0;
    background: transparent;
}

@media (max-width: 768px) {
    .team-leadership, .core-team {
        padding: 40px 0;
    }
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.team-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .team-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
}
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .team-card:hover {
        transform: none;
    }
}
.team-card:hover::before {
    transform: scaleX(1);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .team-card:hover .team-image img {
        transform: none;
    }
}
.team-info h3 {
    color: white;
    font-size: clamp(1.125rem, 2.2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.team-role {
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.team-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 1.6vw, 0.95rem);
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.expertise-tag {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-light);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background: transparent;
}

@media (max-width: 768px) {
    .partners {
        padding: 40px 0;
    }
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.partner-card {
    background: var(--gradient-card);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .partner-card {
        padding: 24px 20px;
    }
}
.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .partner-card:hover {
        transform: none;
    }
}
.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.partner-card h3 {
    color: white;
    font-size: clamp(1.125rem, 2.2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 1.6vw, 0.95rem);
}

.partner-list {
    list-style: none;
    text-align: left;
}

.partner-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.partner-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

/* Join Team Section */
.join-team {
    padding: 60px 0;
    background: transparent;
}

@media (max-width: 768px) {
    .join-team {
        padding: 40px 0;
    }
}
.join-team-content {
    background: var(--gradient-card);
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .join-team-content {
        padding: 32px 24px;
        border-radius: 16px;
    }
}
.join-team-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.join-team-content h2 {
    color: white;
    font-size: clamp(1.75rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.join-team-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
}

.join-team-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .join-team-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.benefit-icon {
    font-size: 20px;
}

.join-team-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .join-team-cta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .join-team-cta .btn {
        width: 100%;
        max-width: 250px;
    }
}
/* Insights Page Styles */
.blog-controls {
    padding: 40px 0 20px;
    background: transparent;
}

@media (max-width: 768px) {
    .blog-controls {
        padding: 30px 0 15px;
    }
}
.controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .controls-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
}
.search-container {
    display: flex;
    align-items: center;
    background: var(--gradient-card);
    border-radius: 25px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    flex: 1;
    max-width: 400px;
}

@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
        order: 1;
    }
}
.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: var(--gray-700);
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.filter-container {
    display: flex;
    gap: 16px;
    align-items: center;
}

@media (max-width: 768px) {
    .filter-container {
        flex-wrap: wrap;
        gap: 12px;
        order: 2;
    }
    
    .filter-select, .sort-select {
        flex: 1;
        min-width: 140px;
    }
}
.filter-select, .sort-select {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid var(--gray-400);
    border-radius: 8px;
@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 20px;
    }
}

    background-color: var(--dark-elevated);
    color: var(--gray-700);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.filter-select, .sort-select {
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23aeb6bf' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    color: var(--gray-700);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.filter-select:hover, .sort-select:hover {
    border-color: var(--primary-light);
    background-color: var(--gray-200);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
}

.filter-select:focus, .sort-select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
    background-color: var(--gray-200);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-select option,
.sort-select option {
    background-color: var(--dark-elevated);
    color: var(--gray-700);
    padding: 8px 12px;
}

.blog-grid-section {
    padding: 20px 0 60px;
    background: transparent;
}

@media (max-width: 768px) {
    .blog-grid-section {
        padding: 15px 0 40px;
    }
}
.blog-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .blog-results-info {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        margin-bottom: 24px;
        text-align: center;
    }
}
.blog-results-info span {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .sort-options {
        justify-content: center;
    }
}
.sort-options label {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
}
.blog-card {
    background: var(--gradient-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .blog-card:hover {
        transform: none;
    }
}
.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.blog-content {
    padding: 24px;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 20px 16px;
    }
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--gray-400);
}

.blog-date {
    font-weight: 500;
}

.blog-read-time {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.blog-title {
    color: white;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .blog-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .read-more-btn {
        text-align: center;
    }
    
    .social-share {
        justify-content: center;
    }
}
.read-more-btn {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
}

.social-share {
    display: flex;
    gap: 8px;
}

.share-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Pagination Section */
.pagination-section {
    padding: 40px 0;
    background: transparent;
}

@media (max-width: 768px) {
    .pagination-section {
        padding: 30px 0;
    }
}
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .pagination-wrapper {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 12px;
    }
}
.pagination-btn {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-700);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

@media (max-width: 768px) {
    .pagination-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}
.pagination-btn:hover:not(:disabled) {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-400);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

@media (max-width: 768px) {
    .pagination-numbers {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
.pagination-number {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-700);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .pagination-number {
        padding: 8px 12px;
        min-width: 36px;
        font-size: 13px;
    }
}
.pagination-number:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.pagination-number.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.pagination-ellipsis {
    color: var(--gray-500);
    padding: 10px 8px;
    font-size: 14px;
    font-weight: 500;
}

.pagination-info {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 60px 0;
    background: transparent;
}

@media (max-width: 768px) {
    .newsletter-cta {
        padding: 40px 0;
    }
}
.newsletter-content {
    background: var(--gradient-card);
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .newsletter-content {
        padding: 32px 24px;
        border-radius: 16px;
    }
}
.newsletter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.newsletter-content h3 {
    color: white;
    font-size: clamp(1.375rem, 3.5vw, 1.625rem);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
        gap: 16px;
    }
}
.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: var(--dark-elevated);
    color: var(--gray-700);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    min-width: 200px;
}

@media (max-width: 768px) {
    .newsletter-input {
        min-width: 100%;
        padding: 14px 16px;
        font-size: 16px;
    }
}
.newsletter-input::placeholder {
    color: var(--gray-400);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-btn {
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .newsletter-btn {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
    }
}
/* Loading State */
.loading-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results State */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.no-results-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-results h3 {
    color: var(--gray-700);
    margin-bottom: 12px;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
}

.no-results p {
    margin-bottom: 24px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}