/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
    --gradient-primary: linear-gradient(135deg, #FF7E5F 0%, #E65CA7 100%);
    --gradient-dark: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --color-bg: #fef7f2;
    --color-white: #ffffff;
    --color-dark: #1a1a2e;
    --color-gray: #6b7280;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
}

/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--color-bg);
    color: var(--color-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ========== TYPOGRAPHY ========== */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; letter-spacing: -0.01em; }
p { font-size: 1.05rem; color: #4a5568; }

/* ========== GRADIENT TEXT ========== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    background: var(--gradient-primary);
    padding: 6rem 2rem 5rem;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.hero-content h1 {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.hero-content p {
    color: rgba(255,255,255,0.95);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto 2rem;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* ========== CARDS ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .card-image { transform: scale(1.08); }
.card-body { padding: 2rem; }
.card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--color-dark);
}
.card-body p { font-size: 0.95rem; color: var(--color-gray); line-height: 1.6; }
.card-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 126, 95, 0.5); }
.btn-outline {
    background: transparent;
    color: #764ba2;
    border: 2px solid #764ba2;
}
.btn-outline:hover { background: #764ba2; color: white; }
.btn-white {
    background: white;
    color: #E65CA7;
    box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ========== SECTION STYLES ========== */
.section { padding: 5rem 2rem; }
.section-light { background: white; }
.section-colored { background: var(--color-bg); }
.container { max-width: 1200px; margin: 0 auto; }

/* ========== ACCORDION ========== */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-item:hover { box-shadow: var(--shadow-md); }
.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 1.3rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark);
}
.accordion-btn:hover { background: #fafafa; }
.accordion-content {
    padding: 0 1.8rem 1.5rem;
    color: var(--color-gray);
    line-height: 1.8;
}
.accordion-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: #E65CA7;
}
.accordion-item.active .accordion-arrow { transform: rotate(180deg); }

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}
.feature-item:hover { transform: translateY(-5px); }
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
}
.feature-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ========== DECORATIVE DIVIDERS ========== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #E65CA7, transparent);
    margin: 3rem 0;
    opacity: 0.3;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-section { padding: 4rem 1.5rem 3rem; }
    .card-grid { grid-template-columns: 1fr; padding: 1.5rem; }
    .section { padding: 3rem 1rem; }
}
