/* verkauf-optimieren.css - Specialized styles for the Sales Optimization page */

/* Hero Specifics */
.opt-hero {
    background: var(--navy);
    padding: 180px 0 100px; /* Increased top gap as requested */
    color: white;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.opt-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.opt-hero .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 50px;
    color: white;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-note {
    margin-top: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.opt-hero .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--primary);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.opt-hero .hero-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Money Loss Grid */
.loss-section {
    padding: 80px 0 60px; /* Reduced bottom padding */
    background: #ffffff;
}

.loss-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.loss-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px; /* Slightly adjusted padding */
    background: #fff5f5; /* Light Red */
    border-radius: 8px; /* Slightly less rounded */
    border: none; /* Removed border */
}

.loss-card i {
    color: #ef4444; /* Red */
    font-size: 1.5rem;
}

.loss-card p {
    font-weight: 500; /* Lighter font weight */
    color: var(--navy);
    margin: 0;
    font-size: 0.95rem;
}

/* Warning Section */
.warning-section {
    background: #fff5f5; /* Full width light pink */
    padding: 60px 0 80px;
}

/* Warning Box */
.warning-box {
    background: #fff;
    border: 2px solid #ef4444; /* Kept red border or maybe #ffcccc? The image shows red border. #ef4444 works */
    border-color: #fca5a5; /* Let's soften the red border a bit to match image better */
    border-radius: 12px;
    padding: 40px;
    margin: 0 auto; /* Removed top margin since section handles it */
    max-width: 900px;
}

.warning-box h3 {
    color: #b91c1c; /* Darker red matching the icon */
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.4rem;
}

.warning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.warning-item i {
    color: #ef4444;
}

/* Split Section Optimization */
.opt-split {
    padding: 100px 0;
    background: #f8fafc;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.opt-features h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 25px;
}

.opt-feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.opt-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #4b5563; /* Match subtitle gray */
}

.opt-feature-list li i {
    color: var(--primary);
    margin-top: 3px;
}

.profit-card {
    background: var(--navy);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.profit-card .stars {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.profit-card .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.profit-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Premium Packages */
.packages-section {
    padding: 100px 0;
    text-align: center;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pkg-icon-box {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pkg-icon-box i {
    color: var(--navy);
}

.package-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    transition: var(--transition);
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card.popular {
    background: var(--navy);
    color: white;
    transform: scale(1.05);
    border: none;
    z-index: 2;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--navy);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.package-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.package-list {
    list-style: none;
    margin: 30px 0;
}

.package-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
}

.package-card.popular .package-list li i { color: var(--primary); }
.package-card:not(.popular) .package-list li i { color: var(--primary); }

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: block;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.package-card.popular .package-btn {
    background: var(--primary);
    color: var(--navy);
}

.package-card:not(.popular) .package-btn {
    background: var(--navy);
    color: white;
}

/* Stats Info Box (ROI) */
.roi-banner {
    background: #fff;
    padding: 60px 0;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.roi-item {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.roi-val {
    font-size: 2.22rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
    margin-bottom: 5px;
}

.roi-lab {
    color: var(--text-muted);
    font-weight: 600;
}

/* Process Section */
.opt-process {
    background: var(--navy);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.opt-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.opt-step {
    position: relative;
}

.opt-step .num {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-weight: 800;
    color: var(--primary);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--primary);
    color: var(--navy);
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-btn-yellow:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .package-grid, .roi-grid { grid-template-columns: repeat(2, 1fr); }
    .package-card.popular { transform: none; }
}

@media (max-width: 768px) {
    .split-grid, .package-grid, .roi-grid, .opt-steps, .loss-grid, .warning-grid { 
        grid-template-columns: 1fr; 
    }
    .opt-hero h1 { font-size: 2.2rem; }
    .profit-card .amount { font-size: 2.5rem; }
}
