/* ==========================================================================
   WEBORACO PRICING PAGE STYLESHEET
   Clean, Responsive, High-Conversion Pricing Design System
   ========================================================================== */

/* Hero Section */
.pricing-hero {
    position: relative;
    padding: 140px 5% 60px;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(10, 79, 190, 0.18) 0%, rgba(29, 27, 27, 0) 70%);
    overflow: hidden;
}

.pricing-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(35, 214, 201, 0.1);
    border: 1px solid rgba(35, 214, 201, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.pricing-badge-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #23d6c9;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-hero h1 {
    font-family: 'Milker', 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.15;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 30%, #23d6c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #cbd5e1;
    max-width: 780px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* Currency Switcher Pill */
.currency-switcher-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.currency-toggle-box {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.currency-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.currency-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.currency-btn.active {
    background: linear-gradient(135deg, #0a4fbe, #23d6c9);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(35, 214, 201, 0.35);
}

.currency-hint {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-top: 10px;
}

/* Pricing Grid */
.pricing-section {
    padding: 20px 5% 80px;
    max-width: 1360px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
    align-items: stretch;
    margin-bottom: 60px;
}

/* Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(35, 214, 201, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(35, 214, 201, 0.15);
}

/* Featured / Popular Card Highlight */
.pricing-card.popular {
    background: linear-gradient(180deg, rgba(10, 79, 190, 0.15) 0%, rgba(29, 27, 27, 0.8) 100%);
    border: 2px solid #23d6c9;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(35, 214, 201, 0.2);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7), 0 0 32px rgba(35, 214, 201, 0.3);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #23d6c9, #00f2fe);
    color: #0b1120;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(35, 214, 201, 0.4);
    white-space: nowrap;
}

.card-header-top {
    margin-bottom: 20px;
}

.tier-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.tier-tagline {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
    min-height: 42px;
}

/* Price Display */
.price-container {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

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

.price-currency {
    font-size: 1.6rem;
    font-weight: 700;
    color: #23d6c9;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    transition: all 0.25s ease;
}

.price-unit {
    font-size: 0.88rem;
    color: #94a3b8;
    margin-left: 4px;
}

.price-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 0.82rem;
    color: #38bdf8;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(56, 189, 248, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* Features List */
.features-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.feature-check-icon {
    width: 18px;
    height: 18px;
    stroke: #23d6c9;
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item strong {
    color: #ffffff;
}

/* Pricing Card CTA Button */
.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, #0a4fbe, #23d6c9);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(35, 214, 201, 0.3);
}

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 214, 201, 0.5);
}

.pricing-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.pricing-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #23d6c9;
    color: #23d6c9;
    transform: translateY(-2px);
}

/* ==========================================================================
   INTERACTIVE SCOPE & COST ESTIMATOR CALCULATOR
   ========================================================================== */
.calculator-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 36px;
    margin: 40px auto 80px;
    max-width: 1100px;
    backdrop-filter: blur(12px);
}

.calculator-header {
    text-align: center;
    margin-bottom: 36px;
}

.calculator-header h2 {
    font-family: 'Milker', 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #ffffff;
    margin-bottom: 10px;
}

.calculator-header p {
    color: #94a3b8;
    font-size: 0.96rem;
    max-width: 620px;
    margin: 0 auto;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
}

@media (max-width: 860px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
}

.calc-control-group {
    margin-bottom: 26px;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.calc-label-val {
    color: #23d6c9;
    font-weight: 700;
}

.calc-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #23d6c9;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(35, 214, 201, 0.7);
    border: 2px solid #ffffff;
}

.calc-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.calc-option-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    color: #cbd5e1;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
}

.calc-option-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(35, 214, 201, 0.4);
}

.calc-option-btn.active {
    background: rgba(10, 79, 190, 0.25);
    border-color: #23d6c9;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(35, 214, 201, 0.2);
}

/* Add-ons Checkbox List */
.calc-addons-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-checkbox-label:hover {
    background: rgba(255, 255, 255, 0.06);
}

.calc-checkbox-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.calc-checkbox-left input[type="checkbox"] {
    accent-color: #23d6c9;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.calc-addon-price {
    font-size: 0.82rem;
    color: #38bdf8;
    font-weight: 600;
}

/* Calculator Result Summary Card */
.calc-summary-card {
    background: linear-gradient(135deg, rgba(10, 79, 190, 0.2) 0%, rgba(29, 27, 27, 0.9) 100%);
    border: 1px solid rgba(35, 214, 201, 0.3);
    border-radius: 18px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.calc-summary-title {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.calc-summary-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.calc-summary-timeline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(35, 214, 201, 0.1);
    color: #23d6c9;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 8px auto 20px;
}

.calc-breakdown-list {
    list-style: none;
    text-align: left;
    font-size: 0.86rem;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-breakdown-list li {
    display: flex;
    justify-content: space-between;
}

/* ==========================================================================
   COMPARISON MATRIX TABLE
   ========================================================================== */
.comparison-section {
    padding: 40px 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-header h2 {
    font-family: 'Milker', 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #ffffff;
    margin-bottom: 10px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(8px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 650px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.04);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #ffffff;
}

.comparison-table th.col-highlight {
    background: rgba(10, 79, 190, 0.2);
    color: #23d6c9;
    border-left: 1px solid rgba(35, 214, 201, 0.2);
    border-right: 1px solid rgba(35, 214, 201, 0.2);
}

.comparison-table td.col-highlight {
    background: rgba(10, 79, 190, 0.08);
    border-left: 1px solid rgba(35, 214, 201, 0.15);
    border-right: 1px solid rgba(35, 214, 201, 0.15);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.table-check {
    color: #23d6c9;
    font-weight: bold;
    font-size: 1.1rem;
}

.table-dash {
    color: #64748b;
    font-size: 1.1rem;
}

/* ==========================================================================
   WHY CUSTOM CODE COMPARISON BANNER
   ========================================================================== */
.roi-banner-section {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 5%;
}

.roi-banner {
    background: radial-gradient(circle at 80% 50%, rgba(35, 214, 201, 0.12) 0%, rgba(10, 79, 190, 0.15) 50%, rgba(29, 27, 27, 0.95) 100%);
    border: 1px solid rgba(35, 214, 201, 0.3);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

@media (max-width: 768px) {
    .roi-banner {
        grid-template-columns: 1fr;
        padding: 28px 20px;
    }
}

.roi-title {
    font-family: 'Milker', 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #ffffff;
    margin-bottom: 12px;
}

.roi-desc {
    color: #cbd5e1;
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.roi-stat-box {
    display: flex;
    gap: 20px;
}

.roi-stat-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #23d6c9;
}

.roi-stat-item p {
    font-size: 0.82rem;
    color: #94a3b8;
}

/* ==========================================================================
   PRICING FAQ ACCORDION
   ========================================================================== */
.pricing-faq-section {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

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

.pricing-faq-header h2 {
    font-family: 'Milker', 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #ffffff;
    margin-bottom: 10px;
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item.active {
    border-color: rgba(35, 214, 201, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.faq-accordion-btn {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
    stroke: #23d6c9;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.3s ease;
    padding: 0 22px;
    color: #cbd5e1;
    font-size: 0.94rem;
    line-height: 1.7;
}

.faq-accordion-item.active .faq-accordion-body {
    padding: 0 22px 20px;
    max-height: 300px;
}
