/* CSS Reset and Variables */
:root {
    --faveni-dark: #115E36;
    --faveni-light: #22C55E;
    --faveni-gold: #b4923b;
    --text-main: #1F2937;
    --text-muted: #4B5563;
    --bg-main: #FAFAF9;
    --bg-white: #FFFFFF;
    --badge-bg-green: #DCFCE7;
    --badge-text-green: #166534;
    --badge-bg-gold: #FEF3C7;
    --badge-text-gold: #92400E;
    --badge-bg-light: #F3F4F6;
    --badge-text-light: #374151;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-green {
    color: var(--faveni-light);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--faveni-dark);
    text-align: center;
    margin-bottom: 3rem;
}
.section-title.left-align {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #E5E7EB;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 5px 0;
}

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

.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--faveni-dark);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--faveni-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--faveni-light);
}

.btn-nav-outline {
    border: 2px solid var(--faveni-dark);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--faveni-dark) !important;
}

.btn-nav-outline:hover {
    background: var(--faveni-dark);
    color: white !important;
}

.mobile-menu-icon {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    background: radial-gradient(circle at right top, rgba(34, 197, 94, 0.1), transparent 50%),
                radial-gradient(circle at left bottom, rgba(34, 197, 94, 0.05), transparent 50%);
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text-area {
    flex: 1;
    max-width: 600px;
}

.hero-text-area h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--faveni-dark);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.badge-price {
    background: var(--badge-bg-green);
    color: var(--badge-text-green);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-info {
    background: var(--bg-main);
    color: var(--text-main);
    border-left: 3px solid var(--faveni-dark);
    border-radius: 0 8px 8px 0;
    padding: 10px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 2rem;
}

.btn-solid-dark, .btn-solid-light, .btn-full-green, .btn-outline-white, .btn-outline-dark, .btn-outline-dashed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-solid-dark {
    background: var(--faveni-dark);
    color: white;
    box-shadow: 0 10px 20px rgba(17, 94, 54, 0.2);
}
.btn-solid-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(17, 94, 54, 0.3);
}

.btn-solid-light {
    background: var(--faveni-light);
    color: white;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}
.btn-solid-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.3);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}
.feature-item svg {
    width: 16px;
    height: 16px;
}

.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    /* Aligns the image slightly upwards to match the heavy text top */
    margin-top: -20px;
}

.logo-card {
    background: var(--faveni-dark);
    width: 460px;
    height: 460px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(17, 94, 54, 0.25);
}

.logo-inner {
    text-align: center;
    color: white;
    transform: scale(1.15); /* Make the inner content slightly larger to match the new card size */
}

.logo-card-text {
    margin-top: 16px;
}

.group-text { font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; }
.faveni-text { font-size: 4rem; font-weight: 800; line-height: 1; letter-spacing: -2px; }
.polo-text { font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; border-top: 2px solid rgba(255,255,255,0.3); padding-top: 8px; margin-top: 4px; }

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--faveni-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.floating-bottom-right {
    bottom: -20px;
    left: auto;
    right: -20px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stars {
    display: flex;
    gap: 2px;
}
.stars svg {
    width: 14px;
    height: 14px;
    fill: #eab308;
}

/* Pain Section */
.pain-section {
    padding: 80px 0;
    background: white;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pain-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pain-icon {
    color: var(--faveni-light);
    margin-bottom: 16px;
}

.pain-card p {
    font-weight: 600;
    color: var(--faveni-dark);
    font-size: 0.95rem;
}

.pain-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--faveni-dark);
}

/* Flexibility Section */
.flexibility-section {
    padding: 80px 0;
}

.flex-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.flex-text-area {
    flex: 1;
}

.flex-text-area p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.flex-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flex-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--badge-bg-green);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--faveni-dark);
}

.flex-icon {
    color: var(--faveni-dark);
    display: flex;
    align-items: center;
}

.flex-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.white-logo-card {
    background: white;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.logo-inner.gold-theme .group-text.gold { color: var(--faveni-gold); }
.logo-inner.gold-theme .faveni-text.green { color: var(--faveni-dark); }
.logo-inner.gold-theme .polo-text.gold { color: var(--faveni-gold); border-top-color: var(--faveni-gold); }

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-featured {
    background: var(--faveni-dark);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 20px 25px -5px rgba(17, 94, 54, 0.2);
}

.featured-content {
    flex: 3;
    padding: 40px;
}

.course-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.course-header p {
    color: #A7F3D0;
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}
.course-features li svg { width: 20px; height: 20px; }

.badge-dark {
    display: inline-block;
    background: rgba(0,0,0,0.2);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.featured-action {
    flex: 2;
    background: rgba(0,0,0,0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.badge-gold {
    background: var(--badge-bg-gold);
    color: var(--badge-text-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.price-box {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    font-weight: 600;
}

.btn-full-green {
    background: var(--faveni-light);
    color: white;
    width: 100%;
    margin-bottom: 12px;
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 100%;
}
.btn-outline-white:hover {
    background: white;
    color: var(--faveni-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pricing-card {
    background: var(--bg-main);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.course-header-small h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--faveni-dark);
    margin-bottom: 20px;
}

.course-info {
    min-height: 120px;
    margin-bottom: 20px;
}

.course-info p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.course-features-small {
    list-style: none;
}

.course-features-small li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}
.course-features-small li svg { width: 16px; height: 16px; }

.badge-light {
    display: inline-block;
    background: var(--badge-bg-light);
    color: var(--badge-text-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.price-box-small {
    margin-bottom: 24px;
}

.price-value-dark {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--faveni-dark);
}

.price-period-dark {
    font-weight: 600;
    color: var(--text-muted);
}

.btn-outline-dark {
    border: 2px solid var(--faveni-dark);
    color: var(--faveni-dark);
    width: 100%;
    margin-bottom: 12px;
}
.btn-outline-dark:hover {
    background: var(--faveni-dark);
    color: white;
}

.btn-outline-dashed {
    border: 2px dashed rgba(17, 94, 54, 0.3);
    color: var(--faveni-dark);
    width: 100%;
    background: rgba(17, 94, 54, 0.05);
}
.btn-outline-dashed:hover {
    background: rgba(17, 94, 54, 0.1);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--faveni-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.blog-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--faveni-light);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    align-self: flex-start;
}

.blog-card h3 {
    font-size: 1.25rem;
    color: var(--faveni-dark);
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-blog {
    display: inline-flex;
    align-items: center;
    color: var(--faveni-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
    gap: 5px;
}

.btn-blog:hover {
    color: var(--faveni-light);
}

.btn-blog svg {
    transition: transform 0.2s;
}

.btn-blog:hover svg {
    transform: translateX(4px);
}

/* Features & Steps Sections */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--bg-main);
    transition: transform 0.3s;
    border: 1px solid #f1f5f9;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--faveni-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card h3 {
    color: var(--faveni-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.steps-section {
    padding: 80px 0;
    background: var(--faveni-dark);
    color: white;
}

.steps-section .section-title {
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--faveni-light);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid var(--faveni-dark);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: white;
}

.step-card p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* AVAs Section */
.avas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.ava-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ava-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--faveni-light);
}

.ava-icon {
    width: 60px;
    height: 60px;
    background: var(--badge-bg-green);
    color: var(--faveni-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ava-icon svg {
    width: 30px;
    height: 30px;
}

.ava-card h3 {
    font-size: 1.3rem;
    color: var(--faveni-dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.ava-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-ava {
    display: inline-block;
    background: var(--bg-main);
    color: var(--faveni-dark);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--faveni-dark);
    transition: all 0.2s;
    width: 100%;
    margin-top: auto;
}

.btn-ava:hover {
    background: var(--faveni-dark);
    color: white;
}

/* Responsive */
/* Catalog Section */
.catalog-section {
    padding: 80px 0;
    background: var(--bg-main);
}

.catalog-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--faveni-dark);
    background: transparent;
    color: var(--faveni-dark);
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--faveni-dark);
    color: white;
}

.search-group {
    width: 100%;
    max-width: 600px;
}

.search-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid #D1D5DB;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-group input:focus {
    border-color: var(--faveni-light);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.courses-count {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 500;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.catalog-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--faveni-light);
}

.catalog-item h4 {
    font-size: 1.1rem;
    color: var(--faveni-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.course-badge {
    display: inline-block;
    background: var(--badge-bg-light);
    color: var(--badge-text-light);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.catalog-features {
    list-style: none;
    margin-bottom: 20px;
}

.catalog-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.catalog-features li svg {
    width: 14px;
    height: 14px;
    color: var(--faveni-light);
}

.course-footer {
    border-top: 1px solid #E5E7EB;
    padding-top: 20px;
    margin-top: auto;
}

.course-price {
    margin-bottom: 15px;
}

.course-price span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.course-price strong {
    font-size: 1.8rem;
    color: var(--faveni-dark);
    font-weight: 800;
}

.course-price small {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-catalog-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--faveni-light);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-catalog-wa:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #D1D5DB;
    background: white;
    color: var(--text-main);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.page-btn.active {
    background: var(--faveni-dark);
    color: white;
    border-color: var(--faveni-dark);
}

.page-btn:hover:not(.active) {
    background: #F3F4F6;
}

/* Footer */
.site-footer {
    background: #0F172A;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--faveni-light);
}

.footer-col p {
    color: #94A3B8;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    color: white;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.2s;
}

.social-icon:hover {
    background: var(--faveni-light);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #020617;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 992px) {
    .hero-content, .flex-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-features {
        text-align: left;
    }
    .pain-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-featured, .pricing-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .featured-action {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-icon {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .mobile-menu-icon span {
        width: 25px;
        height: 3px;
        background: var(--faveni-dark);
        border-radius: 3px;
    }
    .pain-grid {
        grid-template-columns: 1fr;
    }
    .hero-text-area h1 {
        font-size: 2.2rem;
    }
    .logo-card, .white-logo-card {
        width: 300px;
        height: 300px;
    }
    .faveni-text {
        font-size: 3rem;
    }
}


.logo img {
    max-height: 80px;
        width: autoall    mix-blend-; mix-blend-mode: multiply;
}
}
}