/* ============================================
   PRICING PLANS MAIN CONTAINER
   ============================================ */

/* Main pricing plans wrapper with 250px padding */
.wfy-pricing-plans {
    padding-left: 250px;
    padding-right: 250px;
    max-width: 100%;
    margin: 0 auto;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
    .wfy-pricing-plans {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 768px) {
    .wfy-pricing-plans {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ============================================
   PRICING PLANS HERO HEADER SECTION
   ============================================ */

/* Hero Wrapper */
.wfy-pricing-hero {
    position: relative;
    width: 100%;
    max-width: 1420px;
    height: 400px;
    margin: 0 auto 60px auto;
    background: none; /* SVG contains all design elements */
    border-radius: 16px;
    overflow: hidden;
}

/* Hero SVG Background */
.wfy-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wfy-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Hero Content */
.wfy-hero-content {
    position: relative;
    z-index: 10;
    padding: 68px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Breadcrumbs */
.wfy-hero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.wfy-breadcrumb-link {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #9DAAF2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wfy-breadcrumb-link:hover {
    color: #ffffff;
}

.wfy-breadcrumb-current {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #FF6A3D;
}

.wfy-breadcrumb-separator {
    width: 16px;
    height: 16px;
    background: #9DAAF2;
    mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 12L10 8L6 4' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Main Hero Title */
.wfy-hero-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #FFFFFF;
    margin: 0;
}



/* Responsive Design for Hero */
@media (max-width: 1200px) {
    .wfy-pricing-hero {
        max-width: 100%;
        margin: 0 20px 60px 20px;
    }
    
    .wfy-hero-content {
        padding: 40px;
    }
    
    .wfy-hero-title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (max-width: 768px) {
    .wfy-pricing-hero {
        height: 300px;
        margin: 0 10px 40px 10px;
    }
    
    .wfy-hero-content {
        padding: 30px;
    }
    
    .wfy-hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .wfy-hero-breadcrumbs {
        flex-wrap: wrap;
    }
}

/* ============================================
   ORIGINAL PRICING PLANS STYLES
   ============================================ */

/* ===========================
   PRICING PLANS PAGE STYLES
   =========================== */

.wfy-pricing-plans {
    font-family: 'Rubik', sans-serif;
    background: #F8F8FB;
    padding: 48px 0;
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
}



/* ===========================
   HEADER SECTION
   =========================== */

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

.wfy-pricing-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 42px;
    color: #1A2238;
    margin-bottom: 8px;
}

.wfy-pricing-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #1A2238;
    margin: 0;
}

/* ===========================
   PRICING CARDS
   =========================== */

.wfy-pricing-cards {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 96px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1420px;
}

.wfy-pricing-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    flex: 1;
    max-width: 400px;
    min-width: 300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wfy-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wfy-pricing-card.featured {
    border: 1.5px solid #FF6A3D;
    position: relative;
}


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

.wfy-plan-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #1A2238;
    margin: 0;
}
.wfy-pricing-card .wfy-plan-name {
    display: flex;
    justify-items: start;
}
.wfy-plan .wfy-plan-name {
 justify-content: center;
}
.wfy-pricing-card.featured .wfy-plan-name {
    color: #FF6A3D;
}

.wfy-price-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.wfy-price {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: #1A2238;
    margin: 0;
    display: flex;
    align-items: baseline;
}

.wfy-price-period {
    display: inline;
    margin-left: 8px;
    width: 186px;
    height: 26px;
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #1A2238;
}

.wfy-plan-description {
    font-family: 'Public Sans', sans-serif;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -0.005em;
    color: #1A2238;
    margin: 0;
}

.wfy-plan-tagline {
    font-family: 'Public Sans', sans-serif;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -0.005em;
    color: #1A2238;
    margin: 0;
    margin-top: 8px;
}

/* ===========================
   PLAN BUTTONS
   =========================== */

.wfy-plan-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.wfy-plan-button.primary {
    background: #FF6A3D;
    color: #FFFFFF;
}

.wfy-plan-button.primary:hover {
    background: #E55A33;
}

.wfy-plan-button.outline {
    background: transparent;
    border: 1px solid #FF6A3D;
    color: #1A2238;
}

.wfy-plan-button.outline:hover {
    background: #FF6A3D;
    color: #FFFFFF;
}

/* ===========================
   PLAN FEATURES
   =========================== */

.wfy-plan-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.wfy-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
}



.wfy-feature-text {
    font-size: 14px;
    line-height: 22px;
    color: #606977;
    flex-grow: 1;
}

/* ===========================
   COMPARISON TABLE
   =========================== */

.wfy-comparison {
    margin: 96px 0;
    width: 100%;
    max-width: 1420px;
}

.wfy-comparison-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 42px;
    color: #1A2238;
    text-align: center;
    margin-bottom: 48px;
}

.wfy-comparison-table {
    background: #F8F8FB;
    border-radius: 16px;
    overflow: hidden;
}

.wfy-table-header {
    display: flex;
    border-bottom: 1.5px solid #D9D9D9;
}

.wfy-header-spacer {
    flex: 1;
    padding: 24px;
}

.wfy-header-plan {
    flex: 1;
    padding: 24px;
    text-align: center;
    border-left: 1.5px solid #D9D9D9;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wfy-header-plan-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #1A2238;
    margin: 0;
}

.wfy-header-plan.featured .wfy-header-plan-name {
    color: #FF6A3D;
}

.wfy-header-price {
    font-size: 30px;
    font-weight: 500;
    line-height: 42px;
    color: #1A2238;
    margin: 0;
}

.wfy-header-plan.featured .wfy-header-price {
    color: #FF6A3D;
}

.wfy-table-row {
    display: flex;
    border-bottom: 1.5px solid #D9D9D9;
}

.wfy-table-row:last-child {
    border-bottom: none;
}

.wfy-feature-name {
    flex: 1;
    padding: 24px 32px;
    font-size: 18px;
    line-height: 26px;
    color: #1A2238;
    display: flex;
    align-items: center;
}

.wfy-feature-value {
    flex: 1;
    padding: 24px;
    border-left: 1.5px solid #D9D9D9;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 26px;
    color: #1A2238;
}

.wfy-check-icon {
    width: 32px;
    height: 32px;
    border: 1.5px solid #1A2238;
    border-radius: 4px;
    position: relative;
}

.wfy-check-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1A2238;
    font-size: 18px;
    font-weight: bold;
}

.wfy-cross-icon {
    width: 32px;
    height: 32px;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    position: relative;
    background: #f5f5f5;
}

.wfy-cross-icon::after {
    content: '✗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ccc;
    font-size: 18px;
    font-weight: bold;
}

/* ===========================
   FAQ SECTION
   =========================== */

.wfy-faq-section {
    margin: 96px 0;
    padding: 48px 0;
}

.wfy-faq-container {
    display: flex;
    gap: 96px;
    align-items: flex-start;
}

.wfy-faq-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 42px;
    color: #1A2238;
    margin: 0;
    flex: 0 0 512px;
}

.wfy-faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wfy-faq-item {
    border-top: 1.5px solid #D9D9D9;
    transition: all 0.3s ease;
}

.wfy-faq-item:last-child {
    border-bottom: 1.5px solid #D9D9D9;
}

.wfy-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    gap: 8px;
}

.wfy-faq-question h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #1A2238;
    margin: 0;
    flex-grow: 1;
}

.wfy-faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #1A2238;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.wfy-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.wfy-faq-answer p {
    font-size: 16px;
    line-height: 22px;
    color: #1A2238;
    margin: 0;
    padding: 0 0 24px 0;
}

.wfy-faq-item.open .wfy-faq-answer {
    max-height: 200px;
}

.wfy-faq-item.open .wfy-faq-toggle {
    transform: rotate(180deg);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Large screens and tablets */
@media (max-width: 1200px) {
    .wfy-pricing-cards {
        flex-direction: column;
        align-items: center;

    }
    
    .wfy-pricing-card {
        max-width: 500px;
        width: 100%;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .wfy-pricing-container {
        padding: 0 15px;
    }

    .wfy-pricing-title {
        font-size: 24px;
        line-height: 32px;
    }

    .wfy-pricing-subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    .wfy-price {
        font-size: 36px;
        line-height: 44px;
    }

    .wfy-comparison-title {
        font-size: 24px;
        line-height: 32px;
    }

    .wfy-table-header,
    .wfy-table-row {
        flex-direction: column;
    }

    .wfy-header-spacer {
        display: none;
    }

    .wfy-header-plan,
    .wfy-feature-value {
        border-left: none;
        border-top: 1.5px solid #D9D9D9;
    }

    .wfy-feature-name {
        padding: 16px;
        font-size: 16px;
    }

    .wfy-feature-value {
        padding: 16px;
        font-size: 16px;
    }

    .wfy-faq-container {
        flex-direction: column;
        gap: 32px;
    }

    .wfy-faq-title {
        font-size: 24px;
        line-height: 32px;
        flex: none;
    }

    .wfy-faq-question h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .wfy-faq-answer p {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Comparison Table - Figma Design */
.wfy-pricing-table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 1.5px;
    width: 100%;
    max-width: 1420px;
    height: 327px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    z-index: 1;
}

/* Plan Header Row */
.wfy-plan-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    max-width: 1420px;
    height: 176px;
    border-bottom: 1.5px solid #D9D9D9;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Spacer */
.wfy-spacer {
    width: 270px;
    height: 176px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
}

/* Individual Plan Column */
.wfy-plan {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    width: 307.5px;
    height: 176px;
    border-left: 1.5px solid #D9D9D9;
    flex: none;
    flex-grow: 1;
}

/* Plan Text Content */
.wfy-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 4px;
    width: 307px;
    height: 72px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Plan Name */
.wfy-plan-name {
    width: 260px;
    height: 26px;
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #1A2238;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Featured Plan Name (Pro) */
.wfy-plan-name.featured {
    color: #FF6A3D;
}

/* Price Container */
.wfy-price {
    display: flex;
    flex-direction: row;
    margin-left: 50px;
    align-items: baseline;
    padding: 0px;
    gap: 4px;
    width: 307px;
    height: 42px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Price Amount */
.wfy-price-amount {
    height: 42px;
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 42px;
    color: #1A2238;
    flex: none;
    order: 0;
    flex-grow: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

/* Featured Price (Pro) */
.wfy-price-amount.featured {
    color: #FF6A3D;
}

/* Price Period in Comparison Table */
.wfy-price-amount .wfy-price-period {
    font-size: 14px;
    line-height: 20px;
    margin-left: 0;
    width: auto;
    height: auto;
}

/* Comparison Buttons */
.wfy-comparison-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    width: 250px;
    height: 40px;
    border-radius: 4px;
    text-decoration: none;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Outline Button */
.wfy-comparison-button.outline {
    border: 1px solid #FF6A3D;
    background: transparent;
}

/* Primary Button (Pro) */
.wfy-comparison-button.primary {
    background: #FF6A3D;
    border: none;
}

/* Button Label */
.wfy-button-label {
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Outline Button Label */
.wfy-comparison-button.outline .wfy-button-label {
    color: #1A2238;
}

/* Primary Button Label */
.wfy-comparison-button.primary .wfy-button-label {
    color: #FFFFFF;
}

/* Feature Row */
.wfy-plan-feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    max-width: 1420px;
    height: 74px;
    border-bottom: 1.5px solid #D9D9D9;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Feature Name Column */
.wfy-feature-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    gap: 16px;
    width: 270px;
    height: 74px;
    flex: none;
    order: 0;
    flex-grow: 1;
}

.wfy-feature-name span {
    width: 291px;
    height: 26px;
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #1A2238;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Feature Available (Checkmark) */
.wfy-feature-available {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    width: 307.5px;
    height: 72px;
    border-left: 1.5px solid #D9D9D9;
    flex: none;
    flex-grow: 1;
}

/* Icon Div */
.wfy-icon-div {
    width: 307px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Check Icon */
.wfy-check {
    width: 32px;
    height: 32px;
}

/* Feature Amount (e.g., "1 GB", "10 GB") */
.wfy-amount-of-feature {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    width: 307.5px;
    height: 74px;
    border-left: 1.5px solid #D9D9D9;
    flex: none;
    flex-grow: 1;
}

.wfy-amount-of-feature span {
    width: 307px;
    height: 26px;
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #1A2238;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Feature Unavailable (Cross) */
.wfy-feature-unavailable {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    width: 355px;
    height: 74px;
    border-left: 1.5px solid #D9D9D9;
    flex: none;
    flex-grow: 1;
}

/* Cross Icon */
.wfy-cross {
    width: 32px;
    height: 32px;
}

/* Blue Contact Banner - Figma Design */
.wfy-contact-banner {
    margin-top: 96px;
    width: 100%;
    max-width: 1420px;
}

.wfy-subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 16px;
    width: 100%;
    max-width: 1420px;
    height: 316px;
    background: #034C95;
    border-radius: 20px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.wfy-banner-heading {
    width: 1356px;
    height: 42px;
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 42px;
    color: #FFFFFF;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.wfy-contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 1356px;
    height: 194px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.wfy-contact-left,
.wfy-contact-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 670px;
    height: 194px;
    flex: none;
    flex-grow: 1;
}

.wfy-contact-left {
    order: 0;
}

.wfy-contact-right {
    order: 1;
    height: 124px;
}

.wfy-contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 6px;
    width: 670px;
    height: 54px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.wfy-contact-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 12px;
    width: 670px;
    height: 22px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.wfy-contact-label span {
    width: 670px;
    height: 22px;
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #9DAAF2;
    flex: none;
    order: 0;
    flex-grow: 1;
}

.wfy-contact-value {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 12px;
    width: 670px;
    height: 26px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.wfy-contact-icon {
    width: 24px;
    height: 24px;
    flex: none;
    order: 0;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfy-contact-value span {
    width: 634px;
    height: 26px;
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    flex: none;
    order: 1;
    flex-grow: 1;
}
