/* Wizetrace Page Styles */

/* Match index page: section has 6% horizontal padding, container has none */
.wizetrace-intro-section .container,
.how-it-works-section .container,
.wizetrace-dashboard-section .container,
.wizetrace-dark-features-section .container,
.wizetrace-pricing-section .container,
.wizetrace-security-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Hero Section - Frame 7 */
.wizetrace-hero {
    position: relative;
    background-image: url('../img/wizetrace-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 446px; 
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.wizetrace-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.wizetrace-hero .container {
    padding-left: 0;
    padding-right: 0;
}

.wizetrace-content-container {
    position: relative;
    z-index: 2; /* above overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wizetrace-logo {
    width: 280px;
    height: auto;
    margin-bottom: 24px;
}

.wizetrace-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 1040px;
}

.wizetrace-desc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.wizetrace-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 32px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.wizetrace-btn:hover {
    background-color: #ffffff;
    color: #61358c;
}

.wizetrace-btn img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.wizetrace-btn:hover img {
    transform: translateX(4px);
    filter: invert(36%) sepia(54%) saturate(760%) hue-rotate(231deg) brightness(88%) contrast(92%);
}

/* What is Wizetrace Section (Frame 928_9046) */
.wizetrace-intro-section {
    background-color: #f9fafb;
    padding: 80px 6%;
    box-sizing: border-box;
}

.wizetrace-intro-header {
    text-align: center;
    max-width: 953px;
    margin: 0 auto 50px;
}

.wizetrace-intro-title {
    font-size: 38px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 20px;
    line-height: 1.2;
}

.wizetrace-intro-desc {
    font-size: 17px;
    line-height: 1.5;
    color: #4a5565;
    letter-spacing: -0.33px;
}

.wizetrace-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.wizetrace-feature-card {
    background-color: #ffffff;
    border-radius: 17px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wizetrace-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}

/* Icon Background Colors */
.bg-orange-pale { background-color: #ffedd4; }
.bg-purple-pale { background-color: #f3e8ff; }
.bg-green-pale { background-color: #dcfce7; }
.bg-red-pale { background-color: #ffe2e2; }

.feature-icon {
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 19px;
    font-weight: 500;
    color: #101828;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-desc {
    font-size: 15px;
    color: #6a7282;
    line-height: 1.5;
}

/* How It Works Section (Frame 928_9180) */
.how-it-works-section {
    background-color: #000000;
    padding: 80px 6%;
    color: #ffffff;
    box-sizing: border-box;
}

.how-it-works-title {
    font-size: 63px;
    font-weight: 700;
    color: #d2d3d5;
    text-align: center;
    margin-bottom: 50px;
}

.how-it-works-content {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    justify-content: space-between;
}

.how-it-works-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 17px;
    border: 1px solid rgba(49, 65, 88, 0.5);
    background: linear-gradient(100.55deg, rgba(29, 41, 61, 0.5) 0%, rgba(15, 23, 43, 0.5) 100%);
    box-shadow: 0px 26px 52px -13px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 32px 64px -12px rgba(0, 0, 0, 0.4);
    border-color: rgba(49, 65, 88, 0.8);
    background: linear-gradient(100.55deg, rgba(39, 52, 75, 0.6) 0%, rgba(22, 32, 55, 0.6) 100%);
}

.step-number-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0px 10px 16px -3px rgba(0,0,0,0.1);
}

/* Step Number Gradients */
.step-1-gradient { background: linear-gradient(135deg, #615fff 0%, #ad46ff 50%, #f6339a 100%); }
.step-2-gradient { background: linear-gradient(135deg, #2b7fff 0%, #00b8db 50%, #00bba7 100%); }
.step-3-gradient { background: linear-gradient(135deg, #00bc7d 0%, #00c950 50%, #7ccf00 100%); }
.step-4-gradient { background: linear-gradient(135deg, #ff6900 0%, #fe9a00 50%, #f0b100 100%); }

.step-content {
    flex: 1;
    z-index: 2;
}

.step-title {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 15px;
    color: #90a1b9;
    line-height: 1.5;
}

/* Glow Effect for Steps */
.step-glow {
    position: absolute;
    right: -20px;
    bottom: -40px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.15;
    z-index: 1;
}

.how-it-works-image {
    flex: 1;
    max-width: 611px;
    height: 430px;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(49, 65, 88, 0.5);
    position: relative;
}

.how-it-works-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dashboard Section (Frame 930_9376) */
.wizetrace-dashboard-section {
    background-color: #ffffff;
    padding: 80px 6%;
    box-sizing: border-box;
}

.wizetrace-dashboard-header {
    text-align: center;
    margin-bottom: 60px;
}

.wizetrace-dashboard-title {
    font-size: 42px;
    font-weight: 600;
    color: #101828;
    line-height: 1.2;
    margin-bottom: 10px;
}

.wizetrace-dashboard-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.dashboard-features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    padding: 16px 20px;
    height: 87px;
}

.feature-item-icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Feature Item Colors */
.bg-red-vivid { background-color: #fb2c36; }
.bg-green-vivid { background-color: #00c950; }
.bg-orange-vivid { background-color: #ff6900; }
.bg-purple-vivid { background-color: #ad46ff; }
.bg-blue-vivid { background-color: #2b7fff; }
.bg-teal-vivid { background-color: #00bba7; }
.bg-orange-red-vivid { background-color: #f54900; }
.bg-slate-vivid { background-color: #62748e; }

.feature-item-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.feature-item-text {
    font-size: 14px;
    font-weight: 400;
    color: #18181b;
    line-height: 1.4;
}

.dashboard-preview-card {
    flex: 1;
    background-color: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 810px;
}

.dashboard-preview-title {
    font-size: 24px;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 10px;
}

.dashboard-preview-desc {
    font-size: 16px;
    color: #71717b;
    margin-bottom: 40px;
}

.dashboard-mockup-img {
    width: 256px;
    height: auto;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

/* Dark UI Design Section (Frame 931_9687) */
.wizetrace-dark-features-section {
    background-color: #030712;
    padding: 80px 6%;
    color: #ffffff;
    box-sizing: border-box;
}

.dark-features-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 64px;
}

.dark-features-title {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.37px;
}

.dark-features-desc {
    font-size: 16px;
    color: #99a1af;
    line-height: 1.5;
    letter-spacing: -0.31px;
}

.dark-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dark-feature-card {
    background-color: #101828;
    border: 1px solid #1e2939;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.dark-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(232, 92, 41, 0.1); /* #e85c291a */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.dark-feature-icon {
    width: 28px;
    height: 28px;
}

.dark-feature-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.45px;
}

.dark-feature-desc {
    font-size: 16px;
    color: #99a1af;
    line-height: 1.6;
    letter-spacing: -0.31px;
}

/* Sleek UI Design - Pricing Section (Frame 933_9872) */
.wizetrace-pricing-section {
    background-color: #f9fafb;
    padding: 80px 6% 60px;
    box-sizing: border-box;
}

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

.pricing-title {
    font-size: 49px;
    font-weight: 700;
    color: #101828;
    letter-spacing: 0.36px;
    margin-bottom: 16px;
}

.pricing-desc {
    font-size: 16px;
    color: #6a7282;
    letter-spacing: -0.32px;
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

/* Basic Plan Card */
.pricing-card-basic {
    flex: 1;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 32px 32px 40px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.pricing-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.bg-blue-light { background-color: rgba(97, 53, 140, 0.15); }
.bg-white-transp { background-color: rgba(255, 255, 255, 0.2); }

.pricing-plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 8px;
}

.pricing-price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: #101828;
}

.pricing-period {
    font-size: 18px;
    color: #6a7282;
    margin-left: 4px;
}

.pricing-plan-desc {
    font-size: 14px;
    color: #6a7282;
    margin-bottom: 24px;
}

.pricing-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 16px;
    height: 16px;
}

.feature-text {
    font-size: 14px;
    color: #364153;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-solid {
    background-color: rgb(97, 53, 140);
    color: #ffffff;
}

.btn-primary-solid:hover {
    background-color: rgb(78, 45, 122);
}

.btn-white {
    background-color: #ffffff;
    color: rgb(97, 53, 140);
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.no-credit-card {
    text-align: center;
    font-size: 12px;
    color: #99a1af;
    margin-top: 12px;
}

/* Pro Plan Card */
.pricing-card-pro {
    flex: 1;
    background: linear-gradient(142.4deg, rgb(97, 53, 140) 0%, rgb(78, 45, 122) 100%);
    border-radius: 24px;
    padding: 32px 32px 40px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.pricing-card-pro .pricing-plan-name,
.pricing-card-pro .pricing-price {
    color: #ffffff;
}

.pricing-card-pro .pricing-period,
.pricing-card-pro .pricing-plan-desc,
.pricing-card-pro .no-credit-card {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card-pro .feature-text {
    color: #ffffff;
}

.free-setup-text {
    text-align: center;
    color: rgb(97, 53, 140);
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .wizetrace-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .how-it-works-content, .wizetrace-dashboard-layout {
        flex-direction: column;
        align-items: center;
    }

    .how-it-works-steps, .dashboard-features-list, .dashboard-preview-card {
        width: 100%;
        max-width: 100%;
    }

    .how-it-works-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .dashboard-preview-card {
        min-height: auto;
    }

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

@media (max-width: 768px) {
    .wizetrace-hero {
        padding: 60px 20px;
        min-height: 400px;
    }

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

    .wizetrace-desc {
        font-size: 16px;
    }

    .wizetrace-logo {
        width: 200px;
    }

    .wizetrace-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 50px auto 0;
    }

    .how-it-works-title, .wizetrace-dashboard-title, .dark-features-title, .pricing-title {
        font-size: 32px;
    }

    .step-card {
        flex-direction: row; 
        align-items: flex-start;
    }

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

    .pricing-cards-container {
        flex-direction: column;
    }
}

/* Security & Compliance Section (Frame 933_9981) */
.wizetrace-security-section {
    background-color: #ffffff;
    padding: 100px 6%;
    box-sizing: border-box;
}

.security-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    padding: 0;
}

.security-header {
    flex: 0 0 350px; /* Reduced width to force wrapping */
}

.security-title {
    font-size: 42px;
    font-weight: 700;
    color: #101828;
    line-height: 1.3;
    margin-bottom: 0; /* Remove bottom margin, use desc top margin */
    letter-spacing: 0.36px;
    max-width: 300px; /* Force wrapping as per image */
}

.security-desc {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    letter-spacing: 0.36px;
    max-width: 250px; /* Force wrapping as per image */
    margin-top: 60px; /* Large gap as per design */
}

.security-faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Slightly larger gap */
}

.security-faq-item {
    display: flex;
    flex-direction: column;
    background-color: #f9fafb;
    border-radius: 10px;
    padding: 24px 32px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.security-faq-item:hover {
    background-color: #f0f2f5;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.faq-text {
    font-size: 18px;
    font-weight: 500;
    color: #1e2939;
    padding-right: 20px;
    letter-spacing: -0.44px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: #e85d29;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    transition: background-color 0.3s, transform 0.3s;
}
.faq-toggle:hover {
    background-color: #c94f1f;
}
.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin-top 0.3s ease;
    opacity: 0;
}

.faq-answer p {
    font-size: 16px;
    color: #4a5565;
    line-height: 1.6;
    margin: 0;
}

/* Active State */
.security-faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 16px;
}

.security-faq-item.active .faq-toggle,
.security-faq-item.active .faq-icon-wrapper {
    background-color: #101828;
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 992px) {
    .security-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .security-header {
        flex: 1;
        max-width: 100%;
        text-align: center;
    }
    
    .security-desc {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .security-faq-list {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .security-title {
        font-size: 32px;
    }
    
    .security-desc, .faq-text {
        font-size: 16px;
    }
}
