* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: #4a4a4a;
    overflow-x: hidden;
    height: 100vh;
}
a, a:hover {
    text-decoration: none;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.6s ease-out;
}
header .btn-block {
    display: flex;
    gap: 10px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 500;
    background: linear-gradient(135deg, #5d5b5b 0%, #b2b1b1 50%, #5d5b5b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.logo-img {
    width: 30px;
    vertical-align: sub;
}
.cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.cta-button.login {
    background: none;
    box-shadow: none;
    border: 2px solid #fb763f;
    color: #fb763e;
}
.cta-button.central {
    font-size: 1.2rem; 
    padding: 1.2rem 3rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 2.2rem;
    color: #6b6b6b;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.features {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #494949;
    background: linear-gradient(135deg, #5d5b5b 0%, #b2b1b1 50%, #5d5b5b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.icon-block {
    display: inline-flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    background-color: #ffdfd2;
    border-radius: 18px;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    width: calc(25% - 1.5rem);
    min-width: 280px;
}

@media (max-width: 1400px) {
    .feature-card {
        width: calc(33.333% - 1.5rem);
    }
}

@media (max-width: 1024px) {
    .feature-card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .feature-card {
        width: 100%;
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #575757;
}

.feature-card p {
    color: #6b6b6b;
    line-height: 1.6;
}

.comparison-section {
    padding: 4rem 2rem;
    background: white;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.comparison-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-image {
    z-index: 2; /* top layer */
    clip-path: inset(0 50% 0 0); /* initially show left 50% of before */
}

.after-image {
    z-index: 1; /* underneath */
}

.slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #fff;
    cursor:grab;
    z-index: 3;
}

.slider-button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 22px rgb(31 27 23);
    font-size: 1.5rem;
    color: #ff6b35;
}

.comparison-labels {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background: white;
}

.label {
    font-weight: 700;
    font-size: 1.1rem;
}

.before-label {
    color: #8e8e8e;
}

.after-label {
    color: #ff6b35;
}

.comparison-title {
    text-align: center;
    padding: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2a2a2a;
    background: #f8f9fa;
}

.testimonials {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #6b6b6b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: #ff6b35;
}

.testimonial-role {
    color: #999;
    font-size: 0.9rem;
}

.final-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta .cta-button {
    background: white;
    color: #ff6b35;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    display: inline-block;
}

.final-cta .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
}

.footer {
    background: #2a2a2a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: #b8b8b8;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #404040;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #404040;
    color: #b8b8b8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* PRICING STYLES */
.pricing {
    padding: 4rem 2rem;
    background: white;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-subtitle {
    text-align: center;
    color: #6b6b6b;
    font-size: 1.2rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    /*border: 2px solid #e0e0e0;*/
    box-shadow: 0 2px 28px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

.pricing-card.coming-soon {
    opacity: 1;
    position: relative;
}

.pricing-card.coming-soon::after {
    content: 'COMING SOON';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    z-index: 10;
    letter-spacing: 2px;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6b6b6b;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.popular-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.best-value-badge {
    background: linear-gradient(135deg, #8d4caf 0%, #a04545 100%);
}

.pro-badge {
    background: linear-gradient(135deg, #07ba8d 0%, #1971d2 100%);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2a2a2a;
    margin: 1rem 0;
    text-align: center;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    text-align: center;
    margin: 1rem 0;
}

.pricing-description {
    text-align: center;
    color: #db4a1c;
    font-size: 1rem;
    margin-bottom: 2rem;
    min-height: 24px;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.pricing-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pricing-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

.free-button {
    background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.free-button:hover {
    background: #ff6b35;
    color: white;
}

/* FAQ STYLES */
.faq {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: #2a2a2a;
    font-size: 1.1rem;
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
    color: #6b6b6b;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

/* Content */
.content {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    min-height: 62%;
}
.text-center {
    text-align: center;
}
.page-error .content, .page-content .content {
    padding: 10rem 2rem;
}