:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #10b981;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-color: #1e293b;
    --text-dim: #64748b;
    --container: 1240px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-base: 'Inter', sans-serif;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-base);
    line-height: 1.6;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.highlight {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(79, 70, 229, 0.1);
    z-index: -1;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.logo-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dim);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

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

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    min-height: 80vh;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -15px;
}

.avatars img:first-child { margin-left: 0; }

.trust-pill p {
    margin: 0;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 450px;
}

.main-visual-bg {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.1;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
}

.floating-card {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    position: absolute;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.c-1 { top: 50px; right: 50px; color: #6366f1; animation-delay: 0s; }
.c-2 { bottom: 100px; right: 200px; color: #ec4899; animation-delay: 1s; }
.c-3 { top: 220px; right: 20px; color: #10b981; animation-delay: 2s; }

/* Stats */
.stats {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 5px;
}

/* Programs */
.programs {
    padding: 120px 0;
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
    color: var(--primary);
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.program-card p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.inline-link {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Training Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
}

.cta-inner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Footer */
footer {
    background: white;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin: 25px 0;
    color: var(--text-dim);
    max-width: 320px;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-dim);
}

.socials a:hover {
    background: var(--primary);
    color: white;
}

.footer-links-group {
    display: flex;
    gap: 60px;
}

.link-col h4, .footer-contact h4 {
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.link-col ul li {
    margin-bottom: 12px;
}

.link-col ul li a {
    color: var(--text-dim);
}

.link-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Policy Pages Styles */
.policy-hero {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    text-align: center;
}

.policy-hero h1 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.policy-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--primary);
}

.policy-section p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-dim);
}

.policy-section li {
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 968px) {
    .nav-links, .nav-cta { display: none; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .policy-hero h1 { font-size: 2.2rem; }
}
