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;
}

.ysee-comparison-section {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 100px 0;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.ysee-comparison-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.ysee-comp-table-wrapper {
    margin-top: 50px;
    overflow-x: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #FFE5D9;
}

.ysee-comp-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.ysee-comp-table th {
    background: #FAFAFA;
    padding: 25px 20px;
    font-weight: 800;
    color: #2D2D2A;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 2px solid #FFE5D9;
}

.ysee-column-highlight {
    background: rgba(255, 107, 107, 0.05) !important;
    color: #FF6B6B !important;
    width: 30%;
}

.ysee-comp-table td {
    padding: 20px;
    border-bottom: 1px solid #F3F4F6;
    color: #4A4A48;
    font-size: 15px;
    vertical-align: middle;
}

.ysee-feature-name {
    text-align: left;
    font-weight: 600;
    width: 30%;
    color: #2D2D2A;
    padding-left: 30px !important;
}

.ysee-check {
    color: #10B981;
    font-weight: 800;
    font-size: 20px;
}

.ysee-cross {
    color: #D1D5DB;
    font-size: 18px;
}

.ysee-comp-footer {
    margin-top: 30px;
    font-size: 14px;
    color: #9CA3AF;
    font-style: italic;
}

@media (max-width: 768px) {
    .ysee-section-title {
        font-size: 32px;
    }
}

.ysee-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Base sections */
.ysee-full-section {
    padding: 100px 0;
    width: 100%;
}

.ysee-bg-light {
    background-color: #FFF8F0;
}

/* Interactive Showcase Section */
.ysee-showcase-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.ysee-showcase-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.ysee-showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.ysee-showcase-badge {
    background: #FFE5D9;
    color: #FF6B6B;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.ysee-showcase-title {
    font-size: 38px;
    font-weight: 800;
    color: #2D2D2A;
    margin-bottom: 15px;
}

.ysee-showcase-subtitle {
    font-size: 18px;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

.ysee-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ysee-tab-btn {
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #4B5563;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ysee-tab-btn:hover {
    background: #E5E7EB;
}

.ysee-tab-btn.active {
    background: #FF6B6B;
    color: white;
    border-color: #FF6B6B;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
}

.ysee-tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.ysee-tab-panel.active {
    display: block;
}

.ysee-panel-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.ysee-panel-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2D2D2A;
}

.ysee-panel-text p {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 25px;
}

.ysee-panel-list {
    list-style: none;
    padding: 0;
}

.ysee-panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #2D2D2A;
}

.ysee-check {
    color: #FF6B6B;
    font-weight: bold;
    flex-shrink: 0;
}

/* Browser Window Mockup */
.ysee-browser {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ysee-browser-bar {
    background: #F9FAFB;
    padding: 10px 15px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ysee-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ysee-url-bar {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    padding: 4px 12px;
    flex: 1;
    font-size: 11px;
    color: #9CA3AF;
    margin-left: 10px;
}

.ysee-screenshot {
    width: 100%;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .ysee-panel-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ysee-tabs-nav {
        gap: 8px;
    }

    .ysee-tab-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .ysee-tab-emoji {
        display: none;
    }
}


/* Founder Section Revisited */
.ysee-founder-section {
    padding: 100px 0;
    background-color: #FFF8F0;
}

.ysee-founder-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.ysee-founder-image-wrapper {
    position: relative;
}

.ysee-founder-photo {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ysee-founder-quote-mark {
    font-size: 120px;
    color: #FF6B6B;
    opacity: 0.1;
    font-family: serif;
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 1;
}

.ysee-founder-title {
    font-size: 28px;
    font-weight: 800;
    color: #2D2D2A;
    margin-bottom: 25px;
    line-height: 1.3;
}

.ysee-founder-text {
    font-size: 17px;
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ysee-founder-signature {
    margin-top: 30px;
}

.ysee-founder-name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #2D2D2A;
}

.ysee-founder-role {
    font-size: 14px;
    color: #6B7280;
}

@media (max-width: 800px) {
    .ysee-founder-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .ysee-founder-image-wrapper {
        max-width: 250px;
        margin: 0 auto;
    }
}

.ysee-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
    background-color: #E63946;
}

.ysee-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .ysee-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ysee-grid-4 {
        grid-template-columns: 1fr;
    }
}

.ysee-benefit-card {
    padding: 32px;
    border-radius: 24px;
    background: #FFF8F0;
    border: 1px solid #FFE5D9;
    text-align: center;
    box-sizing: border-box;
}

.ysee-step-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    width: 100%;
    box-sizing: border-box;
}

.ysee-step-row:nth-child(even) {
    flex-direction: row-reverse;
}

.ysee-step-content {
    flex: 1;
    text-align: left;
}

.ysee-step-image-box {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #FFE5D9;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.ysee-step-image-box img {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    display: block;
}

.ysee-pricing-pro a,
.ysee-pricing-pro a:hover {
    text-decoration: none !important;
    box-shadow: none !important;
    border: none !important;
}

.ysee-pricing-pro-section {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 80px 0;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.ysee-trial-banner {
    background: #FFE5D9;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px dashed #FF6B6B;
}

.ysee-trial-text {
    color: #C44536;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.ysee-trial-subtext {
    font-size: 14px;
    color: #4A4A48;
}

.ysee-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.ysee-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 20px;
    text-align: center;
}

.ysee-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #4A4A48;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ysee-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.ysee-price-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.ysee-price-card:hover {
    transform: translateY(-10px);
    border-color: #FF6B6B;
}

.ysee-card-featured {
    border: 2px solid #FF6B6B;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.ysee-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B6B;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.ysee-plan-name {
    font-size: 16px;
    font-weight: 800;
    color: #2D2D2A;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ysee-plan-price {
    font-size: 38px;
    font-weight: 800;
    color: #FF6B6B;
    margin: 5px 0;
}

.ysee-price-commitment {
    font-size: 13px;
    color: #2D2D2A;
    font-weight: 700;
    margin-bottom: 5px;
}

.ysee-price-no-commitment {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 400;
    margin-bottom: 20px;
}

.ysee-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.ysee-toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #4A4A48;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E5E7EB;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #FF6B6B;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.ysee-discount-badge {
    background: #FFE5D9;
    color: #FF6B6B;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
}

.ysee-features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 10px 0 30px 0 !important;
    flex-grow: 1;
    text-align: left;
}

.ysee-feature-item {
    font-size: 12px;
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
    color: #4A4A48;
}

.ysee-feature-icon {
    color: #10B981;
    font-weight: bold;
    flex-shrink: 0;
}

.ysee-btn-pricing {
    background-color: #FF6B6B;
    color: white !important;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    display: block;
    transition: background 0.3s;
}

.ysee-btn-pricing:hover {
    background-color: #E63946;
}

.ysee-btn-pricing:hover {
    background-color: #E63946;
}

@media (max-width: 1200px) {
    .ysee-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .ysee-card-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .ysee-pricing-grid {
        grid-template-columns: 1fr;
    }
}

.ysee-btn-pricing {
    background-color: #FF6B6B;
    color: white !important;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    display: block;
    transition: background 0.3s;
}

@media (max-width: 1024px) {
    .ysee-pricing-grid {
        grid-template-columns: 1fr;
    }

    .ysee-price-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

.ysee-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.ysee-faq-item {
    border: 1px solid #EEE;
    border-radius: 12px;
    background: #FAFAFA;
    transition: all 0.3s ease;
}

.ysee-faq-question {
    list-style: none;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: #2D2D2A;
}

.ysee-faq-question::-webkit-details-marker {
    display: none;
}

.ysee-faq-icon {
    color: #FF6B6B;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.ysee-faq-answer {
    padding: 0 25px 25px 25px;
    color: #4A4A48;
    font-size: 16px;
    line-height: 1.6;
    display: none;
}

details[open] .ysee-faq-answer {
    display: block;
    animation: yseeFadeIn 0.4s ease-out;
}

details[open] .ysee-faq-icon {
    transform: rotate(45deg);
}

details[open] .ysee-faq-item {
    background: #FFFFFF;
    border-color: #FF6B6B;
}

@media (max-width: 1024px) {
    .ysee-hero-title {
        font-size: 36px;
    }

    .ysee-grid-3 {
        grid-template-columns: 1fr;
    }

    .ysee-step-row {
        flex-direction: column !important;
        text-align: center;
    }

    .ysee-step-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}