a, a:hover, a:focus, a:active {
    text-decoration: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.ysee-pro-page {
    font-family: 'Inter', sans-serif !important;
    color: #2D2D2A;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}

/* ── HERO ── */
.ysee-premium-hero {
    padding: 140px 20px 80px;
    text-align: center;
    background: linear-gradient(160deg, #FFF8F0 0%, #fff 60%);
}
.ysee-hero-tagline {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #FF6B6B;
    background: #FFF3EE;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.ysee-hero-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: #2D2D2A;
    line-height: 1.15;
    max-width: 820px;
    margin: 0 auto 20px;
}
.ysee-hero-highlight { color: #FF6B6B; }
.ysee-hero-description {
    font-size: 17px;
    color: #4B5563;
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ── CONTAINER ── */
.ysee-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.ysee-full-section { width: 100%; box-sizing: border-box; }

/* ── BUTTONS ── */
.ysee-btn-primary {
    display: inline-block;
    background: #FF6B6B;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none !important;
}
.ysee-btn-primary:hover { background: #E63946; transform: translateY(-2px); }
.ysee-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #FF6B6B !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    border: 2px solid #FF6B6B;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none !important;
}
.ysee-btn-secondary:hover { background: #FFF8F5; }

/* ── STATS ── */
.ysee-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.ysee-stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #FF6B6B;
    line-height: 1;
    margin-bottom: 8px;
}
.ysee-stat-label {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.4;
}

/* ── SECTION TITLES ── */
.ysee-section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    color: #2D2D2A;
    text-align: center;
    margin-bottom: 12px;
}
.ysee-section-subtitle {
    font-size: 16px;
    color: #6B7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── ARGUMENT CARDS ── */
.ysee-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ysee-benefit-card {
    background: #fff;
    border: 1px solid #FFE5D9;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ysee-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.08);
}
.ysee-benefit-card-highlight {
    border-color: #FF6B6B;
    background: linear-gradient(135deg, #FFF8F5 0%, #fff 100%);
}
.ysee-benefit-icon { font-size: 36px; line-height: 1; }
.ysee-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #2D2D2A;
    margin: 0;
}
.ysee-benefit-card p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* ── STEPS ── */
.ysee-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.ysee-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #FDFCF9;
    border: 1px solid #FFE5D9;
    border-radius: 20px;
    padding: 28px;
}
.ysee-step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #FF6B6B;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ysee-step-content h3 {
    font-size: 16px;
    font-weight: 800;
    color: #2D2D2A;
    margin: 0 0 8px;
}
.ysee-step-content p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* ── SHOWCASE ── */
.ysee-showcase-section {
    background: linear-gradient(135deg, #2D2D2A 0%, #1a1a18 100%);
    padding: 80px 20px;
}
.ysee-showcase-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.ysee-showcase-header { text-align: center; margin-bottom: 50px; }
.ysee-showcase-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.ysee-showcase-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}
.ysee-showcase-subtitle { font-size: 16px; color: #94A3B8; max-width: 560px; margin: 0 auto; }

.ysee-lycee-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ysee-lycee-feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background 0.2s;
}
.ysee-lycee-feature:hover { background: rgba(255,255,255,0.08); }
.ysee-lycee-feature-icon { font-size: 28px; flex-shrink: 0; }
.ysee-lycee-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.ysee-lycee-feature p { font-size: 13px; color: #94A3B8; margin: 0; line-height: 1.5; }

/* ── PRICING ── */
.ysee-lycee-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.ysee-lycee-pricing-card {
    background: #fff;
    border: 1px solid #FFE5D9;
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ysee-lycee-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.ysee-lycee-pricing-card-featured {
    border-color: #FF6B6B;
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.12);
}
.ysee-lycee-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B6B;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 16px;
    border-radius: 50px;
    white-space: nowrap;
}
.ysee-lycee-pricing-icon { font-size: 36px; }
.ysee-lycee-pricing-card h3 { font-size: 17px; font-weight: 900; color: #2D2D2A; margin: 0; }
.ysee-lycee-pricing-card p { font-size: 14px; color: #6B7280; line-height: 1.6; margin: 0; flex-grow: 1; }
.ysee-lycee-price-tag {
    font-size: 20px;
    font-weight: 900;
    color: #FF6B6B;
    padding: 8px 0;
}

/* ── FAQ ── */
.ysee-faq-list { max-width: 760px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.ysee-faq-item {
    background: #FDFCF9;
    border: 1px solid #FFE5D9;
    border-radius: 16px;
    overflow: hidden;
}
.ysee-faq-question {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #2D2D2A;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ysee-faq-question::after { content: '+'; font-size: 20px; color: #FF6B6B; font-weight: 300; }
details[open] .ysee-faq-question::after { content: '−'; }
.ysee-faq-answer { padding: 0 24px 20px; }
.ysee-faq-answer p { font-size: 14px; color: #4B5563; line-height: 1.7; margin: 0; }

/* ── CTA SECTION ── */
.ysee-cta-section {
    background: linear-gradient(135deg, #FF6B6B 0%, #C44536 100%);
    padding: 80px 20px;
}
.ysee-cta-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}
.ysee-cta-subtitle { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }
.ysee-cta-section .ysee-btn-primary {
    background: #fff;
    color: #FF6B6B !important;
}
.ysee-cta-section .ysee-btn-primary:hover { background: #FFF8F5; }
.ysee-cta-section .ysee-btn-secondary {
    border-color: rgba(255,255,255,0.6);
    color: #fff !important;
}
.ysee-cta-section .ysee-btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
.ysee-footer {
    background: #1E293B;
    padding: 60px 20px 30px;
}
.ysee-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ysee-footer-heading {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #94A3B8;
    margin-bottom: 16px;
}
.ysee-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ysee-footer-link { font-size: 14px; color: #64748B; transition: color 0.2s; }
.ysee-footer-link:hover { color: #fff; }
.ysee-footer-bottom { max-width: 1100px; margin: 24px auto 0; font-size: 12px; color: #475569; text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .ysee-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .ysee-lycee-features-grid { grid-template-columns: repeat(2, 1fr); }
    .ysee-lycee-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .ysee-footer-inner { grid-template-columns: 1fr 1fr; }
    .ysee-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ysee-premium-hero { padding: 100px 20px 60px; }
    .ysee-grid-3 { grid-template-columns: 1fr; }
    .ysee-steps-grid { grid-template-columns: 1fr; }
    .ysee-lycee-features-grid { grid-template-columns: 1fr; }
    .ysee-footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .ysee-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
