/* Base Styles */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');*/



img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--header-text-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--header-text-color);
}

.centered {
    text-align: center;
}

.highlight {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
}

.btn-secondary {
    background-color: var(--light-text);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--light-text);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Header */
.site-header {
    padding: 1rem 0;
    background-color: var(--light-text);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 180px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--header-text-color);
    text-decoration: none;
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
/*    padding: 4rem 0;*/
/*    background: linear-gradient(to bottom, white, var(--light-blue));*/
    position: relative;
/*    overflow: hidden;*/
}

.hero-content {
    display: flex;
    align-items: center;
/*    justify-content: space-between;*/
/*    gap: 3rem;*/
    flex-direction: column;
    background-image: url('img/group-95.png');
    padding-top: 4rem;
    background-position-x: center;
    background-repeat: no-repeat;
}

.hero-text {
    flex: 1;
    text-align: center;
    margin-bottom: 40px !important;
}

.hero-image {
    flex: 1;
    /*box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;*/
    width: 100%;    
        margin-bottom: -30px;
    position: relative;
    z-index: 1;
}

.hero-dashboard{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -90px;
    z-index: 10;
    position: relative;
}

.hero-dash-bg{
    width: 100%;
}

.hero-title{
    display: flex;
    flex-direction: column;
    margin-bottom: 0.8rem;
}

.hero-title,
.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--header-text-color);

}

.hero-subtitle {
    color: var(--primary-color);
/*    font-size: 1.8rem;*/
    margin: 0.5rem 0;
    text-decoration: underline;
}

.value-prop {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.detail-text {
    margin-bottom: 2rem;
    color: var(--body-text-color);
}

/* Problem Section */
.expense-problem {
    margin: 4rem 0;
/*    background-color: var(--light-gray);*/
}

.problem-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.problem-visuals {
    flex: 1;
}

.problem-text {
    flex: 1;
}

.problem-text .section-heading{
    font-weight: 500;
}

.problem-text .section-heading .highlight{
    font-weight: 600;
    color: var(--primary-color);
}

.emphasis-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    margin-top: 1rem;
}

.benefit-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--body-text-color);
}

.benefit-list li:before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
}

/* Features Section */
.features-section {
    margin: 4rem 0;
}

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

.feature-card {
    background-color: #FAFAFB;
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
    padding: 2rem;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    background-color: var(--light-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    margin-bottom: 1rem;
    color: var(--header-text-color);
}

.feature-card p {
    color: var(--body-text-color);
}

/* Feedback Section */
.feedback-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.feedback-form {
    max-width: 700px;
    margin: 3rem auto 0;
    background-color: var(--light-text);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--header-text-color);
}

.form-group input,
.form-group select{
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

/* Promo Banner */
.promo-banner {
    padding: 6rem 0;
/*    background-color: var(--primary-color);*/
    background: linear-gradient(to right, #5B93FF, #192E6F);
    color: var(--light-text);
    text-align: center;
}

.promo-title {
/*    font-size: 1.8rem;*/
font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
        max-width: 651px;
    margin-left: auto;
    margin-right: auto;
    line-height: normal;
}

.promo-banner .highlight {
/*    color: var(--light-text);*/
color: #FF8F6B;
position: relative;
    font-weight: 700;
}

.promo-banner .highlight::before{
    content: '';
    display: block;
    position: absolute;
    background-color: #192E6F;
    height: 5px;
    width: 100%;
    left: 0;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}

.pricing-section .section-heading{

}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background-color: #FAFAFB;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
    flex: 1;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
/*    border: 2px solid var(--primary-color);*/
    transform: scale(1.05);
    box-shadow: 0 0px 10px rgba(24, 46, 111, 0.65);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--header-text-color);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.5rem;
    color: var(--body-text-color);
}

.plan-features img {
    width: 20px;
    height: 20px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--header-text-color);
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark-gray);
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background-color: var(--light-blue);
    text-align: center;
}

.offer-details {
    max-width: 600px;
    margin: 2rem auto;
    color: var(--body-text-color);
}

.badge {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-flex {
    display: flex;
    justify-content: center;
}

.contact-info {
    text-align: center;
    max-width: 500px;
}

.contact-info p {
    color: var(--body-text-color);
}

/* Footer */
.site-footer {
    background-color: #18181C;
    color: var(--light-text);
/*    padding: 3rem 0;*/
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
/*    gap: 2rem;*/
    text-align: center;
    padding-top: 1rem;
}

.footer-logo {
    max-width: 180px;
}

.footer-cta {
    display: flex;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a,
.social-links img {
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);

}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-legal {
    font-size: 0.9rem;
/*    opacity: 0.8;*/
    background-color: #000;
    width: 100%;
    padding: 10px;
    margin-top: 1rem;
}

.audienceful-badge-F3Fx8J{
    display: none !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content, 
    .problem-flex {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        width: 100%;
        max-width: 450px;
    }
    
    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title,
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    /*.hero-subtitle {
        font-size: 1.5rem;
    }*/
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .footer-cta {
        flex-direction: column;
    }
    
    #audienceful-F3Fx8J{
        max-width: unset !important;
    }
    
    #audienceful-F3Fx8J .audienceful-content-F3Fx8J{
        padding: 0 !important;
    }
}

@media(min-width: 768px){
    .hero-dashboard{
        margin-bottom: -170px;
    }
    
    
    #audienceful-F3Fx8J{
        max-width: 600px !important;
    }
    
    #audienceful-F3Fx8J form{
        flex-direction: row !important;
    }
}

@media (min-width: 1200px) {
    .hero-dashboard {
        margin-bottom: -280px;
    }
}

@media (min-width: 1400px) {
    .hero-dashboard {
        margin-bottom: -320px;
    }
}

@media (min-width: 1600px) {
    .hero-dashboard {
        margin-bottom: -370px;
    }
}

@media (min-width: 1900px) {
    .hero-dashboard {
        margin-bottom: -430px;
    }
}