/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #141118;
    overflow-x: hidden;
}

/* Sticky Bar */
.sticky-bar {
    position: sticky;
    top: 0;
    background: #e9d4f5cc;
    /* background: rgba(127, 25, 230, 0.1); */
    border-bottom: 1px solid rgba(127, 25, 230, 0.2);
    padding: 8px 17px;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.sticky-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.sticky-bar-content p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.35px;
    text-transform: uppercase;
    line-height: 20px;
}

.purple-text {
    color: #7f19e6;
}

.pink-text{
    color: #F903B3;
}

.green-text {
    color: #2fc82a;
}

.cancel-text {
    color: #7f19e6;
    text-transform: capitalize;
    font-weight: 500;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(127, 25, 230, 0.1);
    padding: 16px 80px;
    position: sticky;
    /* top: 37px; */
    z-index: 999;
}

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

.logo {
    height: 39px;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    margin-right: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #141118;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #7f19e6;
}

.btn-trial {
    background: #7f19e6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    min-width: 100px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 25, 230, 0.3);
}

/* Hero Section */
.hero {
    padding: 80px 90px;
    /* max-width: 1280px; */
    margin: 0 auto;
    background: #F7F6F8;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.offer-badge {
    background: rgba(127, 25, 230, 0.1);
    border: 1px solid rgba(127, 25, 230, 0.2);
    border-radius: 9999px;
    padding: 9px 17px;
    max-width: 572px;
}

.offer-badge p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.35px;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    color: #141118;
    letter-spacing: -1.8px;
    line-height: 65px;
    text-align: center;
    max-width: 1100px;
}

.hero-subtitle {
    font-size: 65px;
    font-weight: 900;
    color: #141118;
    letter-spacing: -1.8px;
    line-height: 68px;
    text-align: center;
    max-width: 1100px;
}

.hero-description {
    font-size: 20px;
    font-weight: 500;
    color: rgba(20, 17, 24, 0.7);
    line-height: 28px;
    text-align: center;
    max-width: 701px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: #7f19e6;
    color: white;
    border: none;
    padding: 14px 33px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    min-width: 200px;
    box-shadow: 0px 20px 25px -5px rgba(127, 25, 230, 0.2), 0px 8px 10px -6px rgba(127, 25, 230, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 25px 30px -5px rgba(127, 25, 230, 0.3), 0px 12px 15px -6px rgba(127, 25, 230, 0.3);
}

.btn-secondary {
    background: white;
    color: #7f19e6;
    border: 2px solid #7f19e6;
    padding: 14px 37px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    min-width: 200px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #7f19e6;
    color: white;
}

/* Our Work Section */
.our-work {
    background: white;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.our-work .section-header {
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: #7f19e6;
    letter-spacing: -0.9px;
    line-height: 40px;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(20, 17, 24, 0.6);
    line-height: 28px;
}

/* Carousel */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel {
    display: flex;
    gap: 110px;
    padding: 60px 0;
    animation: scroll 32s linear infinite;
}

.carousel-item {
    flex-shrink: 0;
}

.work-image {
    width: 170px;
    height: 170px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 8));
    }
}

.carousel:hover {
    animation-play-state: paused;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 25px;
    margin-top: 48px;
}

.feature-card {
    background: #f7f6f8;
    border: 1px solid rgba(127, 25, 230, 0.05);
    border-radius: 16px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1); */
}

.purple-bg {
    background: #7f19e6;
}

.cyan-bg {
    background: #00f5ff;
}

.purple-light-bg {
    background: rgba(127, 25, 230, 0.2);
}

.yellow-bg {
    background: #ffd700;
}

.teal-bg {
    background: #00d4aa;
}

.green-bg {
    background: #2fc82a;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #141118;
    line-height: 28px;
}

.plus-badge {
    font-size: 14px;
    color: #7f19e6;
    font-weight: 700;
}

.feature-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(20, 17, 24, 0.7);
    line-height: 26px;
}

/* Comparison Section */
.comparison-section {
    background: #f7f6f8;
    padding: 80px 20px;
    width: 100%;
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 80px auto 0;
}

.comparison-card {
    background: white;
    border: 1px solid rgba(127, 25, 230, 0.05);
    border-radius: 16px;
    padding: 34px 33px 35px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
}

.comparison-right {
    border: 2px solid #7f19e6;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.comparison-left {
    opacity: 0.8;
}

.comparison-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
}

.comparison-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #141118;
}

.icon-x {
    font-size: 24px;
}

.icon-check {
    font-size: 24px;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 19.5px;
}

.comparison-list li {
    font-size: 18px;
    color: rgba(20, 17, 24, 0.6);
    font-weight: 500;
    line-height: 28px;
}

.comparison-list.highlighted li {
    color: #141118;
    font-weight: 700;
}

.price-highlight {
    font-weight: 700 !important;
    color: #7f19e6 !important;
}

.price-highlight span {
    color: #8d8b8e;
}

.comparison-list.highlighted .price-highlight {
    color: #7f19e6 !important;
}

.comparison-list.highlighted .price-highlight span {
    color: #7f19e6 !important;
}

/* 4 Simple Steps Section */
.steps-section {
    background: white;
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 64px auto 0;
}

.step-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 48px;
}

.purple-light-text {
    color: rgba(127, 25, 230, 0.2);
}

.cyan-text {
    color: rgba(0, 245, 255, 0.4);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #141118;
    line-height: 28px;
}

.step-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(20, 17, 24, 0.6);
    line-height: 26px;
}

/* Guarantees Section */
.guarantees-section {
    background: white;
    padding: 0px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.guarantees-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 64px auto 0;
    
}

.guarantees-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.guarantee-item {
    padding-bottom: 22.75px;
}

.guarantee-item:last-child {
    padding-bottom: 0;
}

.guarantee-header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 11px;
}

.guarantee-icon {
    font-size: 20px;
}

.guarantee-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #141118;
    line-height: 28px;
}

.guarantee-item p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(20, 17, 24, 0.6);
    line-height: 22.75px;
}

.guarantees-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.guarantees-image img {
    max-width: 100%;
    height: auto;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 526 / 350.31;
    border-radius: 16px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.image-gradient {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 128px;
    height: 128px;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 9999px;
    filter: blur(20px);
    z-index: -1;
}

/* Pricing Section */
.pricing-section {
    background: #F7F6F8;
    padding: 80px 20px;
    width: 100%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-title {
    font-size: 48px;
    font-weight: 900;
    color: #141118;
    letter-spacing: -1.2px;
    line-height: 48px;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #7f19e6;
    line-height: 24px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.plan-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.plan-name {
    font-size: 24px;
    font-weight: 900;
    color: #141118;
}

.badge-popular {
    background: #f3e8ff;
    color: #7f19e6;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.price-strikethrough {
    font-size: 32px;
    font-weight: 700;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    color: #141118;
    letter-spacing: -1px;
}

.price-period {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
}

.plan-badge-dark {
    background: #141118;
    color: #00f5ff;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-trial-text {
    color: #7f19e6;
    font-size: 12px;
    font-weight: 500;
}

.plan-divider {
    border: none;
    border-top: 1px solid #f3f4f6;
    margin: 24px 0;
}

.plan-plus-features {
    text-align: center;
    margin-bottom: 24px;
}

.badge-standard {
    background: #f3e8ff;
    color: #7f19e6;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.plus-sign {
    color: #7f19e6;
    font-size: 24px;
    font-weight: 700;
    margin-top: 12px;
}

.plan-features {
    list-style: none;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #141118;
}

.check-icon-circle {
    display: flex;
    align-items: center;
}

.see-more-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #7f19e6;
    font-size: 18px;
    font-weight: 800;
    margin: 32px 0 24px;
    cursor: pointer;
}

.see-more-link svg {
    transition: transform 0.3s ease;
}

.plan-button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background: #f7f6f8;
    border: 1px solid rgba(127, 25, 230, 0.05);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-title {
    font-size: 20px;
    font-weight: 700;
    color: #141118;
    line-height: 28px;
}

.faq-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(20, 17, 24, 0.7);
    line-height: 26px;
}

/* Footer CTA */
.footer-cta {
    background: #7f19e6;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 0;
    width: 35%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(14.22deg);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: 60px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 60px;
    letter-spacing: -1.5px;
}

.footer-description {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 28px;
}

.footer-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 24px;
    font-weight: 900;
    color: #00f5ff;
    line-height: 32px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.7px;
    line-height: 20px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-buttons {
    display: flex;
    gap: 13px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    background: #00f5ff;
    color: #7f19e6;
    border: none;
    padding: 18px 44px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    min-width: 220px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
}

.btn-cta:hover {
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 41px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    min-width: 220px;
    transition: background 0.3s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        padding: 16px 40px;
    }

    .hero {
        padding: 60px 40px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }

    .hero-subtitle {
        font-size: 48px;
        line-height: 56px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .comparison-right {
        transform: scale(1);
    }

    .guarantees-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sticky-bar-content p {
        font-size: 11px;
    }

    .header {
        padding: 12px 20px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }

    .hero-subtitle {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-title {
        font-size: 32px;
        line-height: 38px;
    }

    .footer-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-234px * 5));
        }
    }
}

@media (max-width: 480px) {
    .sticky-bar-content p {
        font-size: 9px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }

    .hero-subtitle {
        font-size: 26px;
        line-height: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-title {
        font-size: 26px;
        line-height: 32px;
    }

    .pricing-title {
        font-size: 32px;
    }
}

/* Site Footer */
.site-footer {
    background: white;
    text-align: center;
    padding: 24px 20px;
    border-top: 1px solid #f3e8ff;
}

.site-footer p {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
}
