/* Home Screen Styles */

.widget-hero-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fefefe 25%,
        #ffffff 50%,
        #fefefe 75%,
        #ffffff 100%);
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    border-radius: 24px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 1),
        0 0 0 2px rgba(25, 82, 77, 0.1),
        0 30px 100px rgba(25, 82, 77, 0.08),
        0 15px 50px rgba(247, 138, 29, 0.06),
        0 8px 30px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(25, 82, 77, 0.05);
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(30px);
}





.widget-hero-subtitle {
    font-size: 1.3rem;
    margin: 1rem 0 1.5rem 0;
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-normal);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.widget-hero-description {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.widget-hero-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.widget-hero-description p:last-child {
    margin-bottom: 0;
}

/* SEO-DAY Conference Section */
.widget-seoday-conference-section {
    padding: 3rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fefefe 25%,
        #ffffff 50%,
        #fefefe 75%,
        #ffffff 100%);
    border-radius: 24px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 1),
        0 0 0 2px rgba(247, 138, 29, 0.08),
        0 30px 100px rgba(247, 138, 29, 0.06),
        0 15px 50px rgba(25, 82, 77, 0.04),
        0 8px 30px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(247, 138, 29, 0.05);
    border: 3px solid #ffffff;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
}

.widget-seoday-conference-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(247, 138, 29, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(25, 82, 77, 0.08) 0%, transparent 50%);
    animation: conferenceBackgroundFloat 25s ease-in-out infinite;
    z-index: -1;
}

@keyframes conferenceBackgroundFloat {
    0%, 100% { opacity: 0.2; transform: rotate(0deg); }
    50% { opacity: 0.4; transform: rotate(1deg); }
}

.widget-seoday-conference-content {
    max-width: 1000px;
    margin: 0 auto;
}

.widget-seoday-conference-intro {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.widget-seoday-conference-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    text-align: center;
}

.widget-seoday-conference-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.widget-seoday-highlight-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fefefe 50%,
        #ffffff 100%);
    border-radius: 20px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 1),
        0 0 0 2px rgba(25, 82, 77, 0.06),
        0 20px 60px rgba(25, 82, 77, 0.08),
        0 10px 40px rgba(247, 138, 29, 0.05),
        0 5px 25px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(25, 82, 77, 0.03);
    border: 3px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
}

.widget-seoday-highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 82, 77, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.widget-seoday-highlight-item:hover::before {
    left: 100%;
}

.widget-seoday-highlight-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(25, 82, 77, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(25, 82, 77, 0.2);
}

.widget-seoday-highlight-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.widget-seoday-highlight-content {
    flex: 1;
}

.widget-seoday-highlight-title {
    font-family: var(--font-family-heading);
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
    text-align: left;
}

.widget-seoday-highlight-text {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.widget-seoday-conference-outro {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    text-align: center;
}

.widget-seoday-conference-outro p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    text-align: center;
}

.widget-benefits-section,
.widget-target-group-section,
.widget-competition-section {
    margin: 2rem 0;
    padding: 3rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fefefe 25%,
        #ffffff 50%,
        #fefefe 75%,
        #ffffff 100%);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 1),
        0 0 0 2px rgba(247, 138, 29, 0.06),
        0 30px 100px rgba(247, 138, 29, 0.05),
        0 15px 50px rgba(25, 82, 77, 0.03),
        0 8px 30px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(247, 138, 29, 0.03);
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
}

.widget-benefits-section::before,
.widget-target-group-section::before,
.widget-competition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(247, 138, 29, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(25, 82, 77, 0.05) 0%, transparent 50%);
    animation: sectionBackgroundFloat 30s ease-in-out infinite;
    z-index: -1;
}

@keyframes sectionBackgroundFloat {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.02); }
}

.widget-benefits-intro,
.widget-benefits-outro,
.widget-target-group-intro,
.widget-target-group-outro,
.widget-competition-intro,
.widget-competition-outro {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}

.widget-benefits-intro p,
.widget-benefits-outro p,
.widget-target-group-intro p,
.widget-target-group-outro p,
.widget-competition-intro p,
.widget-competition-outro p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.widget-benefits-intro p:last-child,
.widget-benefits-outro p:last-child,
.widget-target-group-intro p:last-child,
.widget-target-group-outro p:last-child,
.widget-competition-intro p:last-child,
.widget-competition-outro p:last-child {
    margin-bottom: 0;
}

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

.widget-benefit-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fefefe 50%,
        #ffffff 100%);
    border-radius: 20px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 1),
        0 0 0 2px rgba(25, 82, 77, 0.05),
        0 20px 60px rgba(25, 82, 77, 0.06),
        0 10px 40px rgba(247, 138, 29, 0.04),
        0 5px 25px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(25, 82, 77, 0.02);
    border: 3px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
}

.widget-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 82, 77, 0.08), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.widget-benefit-item:hover::before {
    left: 100%;
}

.widget-benefit-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 15px 50px rgba(25, 82, 77, 0.12),
        0 6px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(25, 82, 77, 0.15);
}

.widget-benefit-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-right: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.widget-benefit-text {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

.widget-target-group-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.widget-target-group-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fefefe 50%,
        #ffffff 100%);
    border-radius: 20px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 1),
        0 0 0 2px rgba(247, 138, 29, 0.05),
        0 15px 50px rgba(247, 138, 29, 0.06),
        0 10px 40px rgba(25, 82, 77, 0.04),
        0 5px 25px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(247, 138, 29, 0.02);
    border: 3px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
}

.widget-target-group-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 138, 29, 0.06), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.widget-target-group-item:hover::before {
    left: 100%;
}

.widget-target-group-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 12px 40px rgba(247, 138, 29, 0.1),
        0 6px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(247, 138, 29, 0.15);
}

.widget-target-group-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.widget-target-group-text {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

.widget-competition-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fefefe 50%, 
        #ffffff 100%);
    border-radius: 24px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 1),
        0 0 0 2px rgba(247, 138, 29, 0.08),
        0 25px 80px rgba(247, 138, 29, 0.08),
        0 15px 50px rgba(25, 82, 77, 0.05),
        0 8px 30px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(247, 138, 29, 0.03);
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
}

.widget-competition-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(247, 138, 29, 0.1) 0%, transparent 70%);
    animation: competitionGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes competitionGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.widget-competition-icon {
    font-size: 3rem;
    color: var(--color-primary);
}

.widget-competition-text {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    text-align: center;
    line-height: 1.5;
}

.widget-cta-section {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fefefe 25%,
        #ffffff 50%,
        #fefefe 75%,
        #ffffff 100%);
    border-radius: 28px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 1),
        0 0 0 2px rgba(25, 82, 77, 0.08),
        0 40px 120px rgba(25, 82, 77, 0.1),
        0 20px 60px rgba(247, 138, 29, 0.08),
        0 10px 40px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(25, 82, 77, 0.05);
    border: 3px solid #ffffff;
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(40px);
}

.widget-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(25, 82, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(247, 138, 29, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 82, 77, 0.05) 0%, transparent 70%);
    animation: ctaBackgroundFloat 35s ease-in-out infinite;
    z-index: -1;
}

@keyframes ctaBackgroundFloat {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    33% { opacity: 0.6; transform: scale(1.02) rotate(1deg); }
    66% { opacity: 0.5; transform: scale(0.98) rotate(-1deg); }
}

.widget-cta-description {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.widget-cta-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.widget-cta-description p:last-child {
    margin-bottom: 0;
}

.widget-cta-guarantee {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fefefe 50%,
        #ffffff 100%);
    border-radius: 20px;
    border: 3px solid #ffffff;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 1),
        0 0 0 2px rgba(25, 82, 77, 0.05),
        0 15px 50px rgba(25, 82, 77, 0.06),
        0 10px 40px rgba(247, 138, 29, 0.04),
        0 5px 25px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(25, 82, 77, 0.02);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
}

.widget-cta-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 82, 77, 0.08), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.widget-cta-guarantee:hover::before {
    left: 100%;
}

.widget-cta-guarantee p {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    text-align: center;
}

.widget-button-large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(25, 82, 77, 0.2);
    transition: all 0.3s ease;
    background: var(--color-button-primary);
    border: 2px solid var(--color-button-primary);
    color: white;
}

.widget-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(25, 82, 77, 0.3);
    background: var(--color-button-primary-hover);
    border-color: var(--color-button-primary-hover);
}

/* Responsive Design */
@media (max-width: 576px) {
    .widget-hero-section {
        padding: 1.5rem 1rem;
        min-height: 40vh;
    }
    
    .widget-seoday-conference-section {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .widget-seoday-conference-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .widget-seoday-highlight-item {
        padding: 1.5rem;
    }
    
    .widget-seoday-highlight-icon {
        font-size: 2rem;
        margin-right: 1rem;
    }
    
    .widget-seoday-highlight-title {
        font-size: 1.1rem;
    }
    
    .widget-seoday-highlight-text {
        font-size: 0.9rem;
    }
    
    .widget-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .widget-benefit-item {
        padding: 1.5rem;
    }
    
    .widget-benefit-icon {
        font-size: 1.5rem;
        margin-right: 1rem;
    }
    
    .widget-benefit-text {
        font-size: 0.9rem;
    }
    
    .widget-target-group-list {
        flex-wrap: nowrap;
        gap: 0.75rem;
        overflow-x: auto;
        padding: 0 1rem;
    }
    
    .widget-target-group-item {
        padding: 1rem;
        flex-shrink: 0;
        min-width: 200px;
    }
    
    .widget-target-group-icon {
        font-size: 1.5rem;
        margin-right: 1rem;
    }
    
    .widget-target-group-text {
        font-size: 0.9rem;
    }
    
    .widget-benefits-section,
    .widget-target-group-section,
    .widget-competition-section,
    .widget-cta-section {
        padding: 1.5rem 1rem;
    }
    
    .widget-cta-section {
        margin: 1.5rem 1rem;
        padding: 2rem 1rem;
    }
    
    .widget-competition-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .widget-competition-icon {
        font-size: 2.5rem;
    }
    
    .widget-competition-text {
        font-size: 1rem;
    }
}

@media (min-width: 600px) and (max-width: 768px) {
    .widget-hero-section {
        padding: 2rem 1.5rem;
        min-height: 45vh;
    }
    
    .widget-seoday-conference-section {
        padding: 2.5rem 1.5rem;
    }
    
    .widget-seoday-conference-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .widget-seoday-highlight-item {
        padding: 2rem;
    }
    
    .widget-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .widget-target-group-list {
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
        padding: 0 1rem;
    }
    
    .widget-benefits-section,
    .widget-target-group-section,
    .widget-competition-section,
    .widget-cta-section {
        padding: 2.5rem 1.5rem;
    }
    
    .widget-cta-section {
        margin: 2.5rem auto;
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .widget-hero-section {
        padding: 3rem 2rem;
        min-height: 50vh;
    }
    
    .widget-seoday-conference-section {
        padding: 3rem 2rem;
    }
    
    .widget-seoday-conference-highlights {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .widget-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .widget-target-group-list {
        flex-wrap: nowrap;
        gap: 1.5rem;
    }
    
    .widget-benefits-section,
    .widget-target-group-section,
    .widget-competition-section,
    .widget-cta-section {
        padding: 3rem 2rem;
    }
    
    .widget-cta-section {
        margin: 3rem auto;
        padding: 3rem 2rem;
    }
}

@media (min-width: 1440px) {
    .widget-hero-section {
        padding: 4rem 2rem;
        min-height: 60vh;
    }
    
    .widget-seoday-conference-section {
        padding: 4rem 2rem;
    }
    
    .widget-seoday-conference-highlights {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    .widget-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .widget-target-group-list {
        flex-wrap: nowrap;
        gap: 2rem;
    }
    
    .widget-benefits-section,
    .widget-target-group-section,
    .widget-competition-section,
    .widget-cta-section {
        padding: 4rem 2rem;
    }
    
    .widget-cta-section {
        margin: 4rem auto;
        padding: 4rem 2rem;
    }
}
