.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.hero-placeholder {
    background: var(--accent-color);
    border: 2px dashed var(--primary-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--text-secondary);
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.about-preview, .featured-tips, .profiles-preview {
    padding: 4rem 0;
}

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

.tip-image-link {
    display: block;
    text-decoration: none;
}

.tip-image-link:hover .tip-image img {
    transform: scale(1.1);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-card {
    position: relative;
}

.profile-card .featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FFD700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.profile-card .plan-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.5rem 0 1.5rem;
    font-style: italic;
}

.profile-card ul li {
    text-align: left;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.profile-card ul li:last-child {
    border-bottom: none;
}

.profile-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(123, 159, 126, 0.3);
    border: 3px solid var(--primary-color);
}

.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-section .btn-primary {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--white) !important;
}

.cta-section .btn-primary:hover {
    background: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.carousel-slide {
    display: none;
    position: relative;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
}

.carousel-caption h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    color: var(--primary-color);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-slide img {
        height: 300px;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
}
