/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: #F9FAFB;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

/* Logo and Branding */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    color: #4C1D95;
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4C1D95 0%, #6B21A8 100%);
    color: white;
    border-color: #4C1D95;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3C1A78 0%, #5B1F92 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 29, 149, 0.25);
}

.btn-secondary {
    background: white;
    color: #4C1D95;
    border-color: #4C1D95;
}

.btn-secondary:hover {
    background: #4C1D95;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 29, 149, 0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4C1D95 0%, #6B21A8 50%, #FF7F7F 100%);
    color: white;
    padding: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect width="60" height="60" fill="rgba(255,255,255,0.02)"/><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hero .logo {
    color: white;
}

.hero .brand-name {
    color: white;
}

.hero-content {
    text-align: center;
    text-align: left;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 4rem 0;
    text-align: center;
}

.what-we-teach {
    background: white;
}

.learning-paths {
    background: #F3F4F6;
}

.mentor-network {
    background: white;
}

.tools-platforms {
    background: #F3F4F6;
}

.success-stories {
    background: white;
}

.products {
    background: #F3F4F6;
}

.talent-board {
    background: white;
}

.contacts {
    background: linear-gradient(135deg, #4C1D95 0%, #6B21A8 100%);
    color: white;
    text-align: left;
}

.footer {
    text-align: left;
}

.hero {
    text-align: left;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4C1D95 0%, #6B21A8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

/* Path Cards */
.path-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #FF7F7F;
}

.path-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.path-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.path-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4C1D95;
    font-weight: bold;
}

/* Mentor Network */
.mentor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mentor-benefits {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit {
    text-align: center;
}

.benefit-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4C1D95;
}

.benefit-text {
    font-size: 0.875rem;
    color: #6B7280;
}

.placeholder-image {
    background: #E5E7EB;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: #6B7280;
    font-weight: 500;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Styling */
.mentor-image img,
.talent-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #FF7F7F;
}

/* Success Stories */
.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.story-content p {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.story-author strong {
    color: #4C1D95;
    display: block;
}

.story-author span {
    color: #6B7280;
    font-size: 0.875rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border-color: #FF7F7F;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF7F7F;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4C1D95;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #6B7280;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4C1D95;
    font-weight: bold;
}

/* Talent Board */
.talent-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.talent-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4C1D95;
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Contacts */
.contacts h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4C1D95 0%, #6B21A8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.contact-card h3 {
    color: #4C1D95;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #4C1D95;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card p {
  color: #000000;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #9CA3AF;
    margin-top: 1rem;
}

.footer .logo {
    color: white;
}

.footer .brand-name {
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #9CA3AF;
    text-decoration: none;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .mentor-content,
    .talent-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mentor-benefits {
        justify-content: center;
    }
    
    .talent-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
}