.hero-section {
    background: linear-gradient(135deg, #C62828, #E53935);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}
.hero-section h1 {
    font-weight: 700;
    font-size: 2.5rem;
}
.hero-section p {
    font-size: 1.1rem;
    margin-top: 15px;
}
.brand-feature {
    padding: 60px 20px;
}
.feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 30px;
    transition: transform .2s;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-card .icon {
    font-size: 36px;
    color: #C62828;
    margin-bottom: 15px;
}
.stats {
    background: #fef2f2;
    padding: 60px 20px;
}
.stat-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.cta-section {
    background: #C62828;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 60px auto;
    max-width: 900px;
}
/* Hero */
.hero {
    background: linear-gradient(135deg, #C62828, #B71C1C);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    //background: linear-gradient(135deg, #C62828, #E53935);
    //color: #fff;
    //text-align: center;
    //padding: 80px 20px;
    //border-radius: 20px;
    //margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
}
.hero p {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #f1f1f1;
}
/* Features */
.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
    transition: all .25s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.feature-card img {
    width: 60px;
    margin-bottom: 18px;
}
.feature-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}
/* Stats */
.stats {
    background: #fff5f5;
    padding: 80px 20px;
}
.stat-box {
    text-align: center;
    padding: 24px;
}
.stat-box h2 {
    font-weight: 800;
    font-size: 2rem;
    color: #C62828;
}
.stat-box p {
    margin: 0;
    font-size: 15px;
    color: #555;
}
/* Showcase Influencers */
.influencer-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
    transition: transform .2s ease;
}
.influencer-card:hover {
    transform: translateY(-5px);
}
.influencer-card img {
    width: 80px;
    height: 80px;
    //border-radius: 50%;
    margin-bottom: 12px;
}
.influencer-card h6 {
    margin-bottom: 6px;
    font-weight: 600;
}
.cta {
    background: linear-gradient(135deg, #B71C1C, #E53935);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    border-radius: 14px;
    margin: 60px auto;
    max-width: 900px;
}
/* CTA */
.cta-section {
    background: linear-gradient(135deg, #C62828, #E53935);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
}
.cta-section p {
    font-size: 1.1rem;
    margin: 15px 0;
    color:white;
}
.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.btn-custom {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}