/* === Block 1 === */
/* ============================================
         DESIGN TOKENS (matching /agents page)
         ============================================ */
      :root {
        --primary-color: #EC5A22;
        --primary-hover: #d44f1d;
        --primary-gradient: linear-gradient(135deg, #EC5A22 0%, #EC5A22 100%);
        --secondary-color: #1E293B;
        --border-color: #E2E8F0;
        --background-light: #F8FAFC;
        --text-primary: #1E293B;
        --text-secondary: #64748B;
        --success-color: #16A34A;
        --dark-bg: #0B1120;
        --warm-bg: #F8FAFC;
        --card-bg: #FFFFFF;
        --card-border: 1px solid #E2E8F0;
        --card-border-hover: #EC5A22;
        --card-shadow-hover: 0 8px 24px rgba(0,0,0,0.06);
        --card-radius: 14px;
        --card-radius-sm: 12px;
      }

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

      body {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        background-color: #ffffff;
        color: var(--text-primary);
        line-height: 1.6;
      }

      .container {
        max-width: 1250px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      .main-content {
        margin-top: 0;
      }

      /* ============================================
         HERO SECTION (dark gradient, matching /agents)
         ============================================ */
      .pricing-hero {
        background: #0B1120;
        padding: 60px 0;
        position: relative;
        overflow: hidden;
        text-align: center !important;
      }
      .pricing-hero * {
        text-align: center !important;
      }
      .hero-label {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #EC5A22;
        margin-bottom: 1.5rem;
      }
      section.pricing-hero h1 {
        font-size: clamp(28px,4vw,52px) !important;
        font-weight: 800 !important;
        color: #fff !important;
        line-height: 1.1 !important;
        margin-bottom: 16px !important;
        max-width: 800px;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        letter-spacing: -1.5px;
      }
      .gradient-text {
        color: #EC5A22;
        -webkit-text-fill-color: #EC5A22;
      }
      .hero-subtitle {
        font-size: 17px;
        color: #94A3B8;
        max-width: 650px;
        margin: 0 auto;
        line-height: 1.7;
      }


      /* ============================================
         STEP SECTIONS (alternating backgrounds)
         ============================================ */
      .step-section {
        padding: 0;
      }
      /* Only show padding when section has visible content */
      .step-section:has(.software-section),
      .step-section:has(.active),
      .step-section:has(.notes-section) {
        padding: 60px 0;
      }
      .step-section.bg-white { background: #ffffff; }
      .step-section.bg-warm { background: var(--warm-bg); }
      .step-section.bg-dark {
        background: var(--dark-bg);
        position: relative;
        overflow: hidden;
      }


      .section-title {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 2rem;
        color: var(--text-primary);
      }

      /* ============================================
         SEARCH BAR
         ============================================ */
      .software-search-container {
        position: relative;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
      }
      .software-search-container .search-label {
        display: block;
        text-align: center;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 0.75rem;
        letter-spacing: 0.02em;
      }
      .software-search {
        width: 100%;
        padding: 1.15rem 1.25rem 1.15rem 3.5rem;
        font-size: 1.1rem;
        border: 2px solid var(--primary-color);
        border-radius: var(--card-radius-sm);
        transition: all 0.3s ease;
        background: #fff;
        color: var(--text-primary);
        box-shadow: 0 0 0 4px rgba(246,139,57,0.10), 0 4px 16px rgba(246,139,57,0.12);
      }
      .software-search::placeholder {
        color: #6b7280;
      }
      .software-search:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 6px rgba(246,139,57,0.18), 0 8px 24px rgba(246,139,57,0.15);
      }
      .search-input-wrapper {
        position: relative;
      }
      .search-icon {
        position: absolute;
        left: 1.15rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-color);
        width: 22px;
        height: 22px;
        opacity: 1;
        z-index: 1;
        pointer-events: none;
      }
      .search-results {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 2px solid rgba(246,139,57,0.15);
        border-top: none;
        border-radius: 0 0 var(--card-radius-sm) var(--card-radius-sm);
        max-height: 300px;
        overflow-y: auto;
        display: none;
        z-index: 10;
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
      }
      .search-results.active { display: block; }
      .search-result-item {
        padding: 0.75rem 1rem;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        border: 2px solid transparent;
        margin: 0.25rem;
        border-radius: 12px;
      }
      .search-result-item:hover {
        background: var(--card-bg);
        border-color: rgba(246,139,57,0.2);
      }
      .search-result-item.selected {
        border-color: var(--primary-color);
        background: rgba(246,139,57,0.06);
      }
      .search-result-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        object-fit: contain;
      }

      /* ============================================
         SOFTWARE CARDS (FMS-style horizontal)
         ============================================ */
      .software-section { margin-bottom: 0; }
      .software-card {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 10px 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        position: relative;
        text-align: left;
      }
      .software-card:hover {
        border-color: #EC5A22;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      }
      .software-card.selected {
        border-color: #EC5A22;
        background: linear-gradient(135deg, rgba(236,90,34,0.08) 0%, rgba(236,90,34,0.02) 100%);
      }
      .software-card.selected::after {
        content: "\2713";
        position: absolute;
        top: 6px;
        right: 6px;
        background: linear-gradient(135deg, #EC5A22, #F68B39);
        color: white;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        font-weight: bold;
      }
      .software-card .sw-icon-wrap {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .software-icon {
        width: 36px;
        height: 36px;
        object-fit: contain;
        border-radius: 6px;
      }
      .software-info {
        flex: 1;
        min-width: 0;
      }
      .software-name {
        font-weight: 600;
        font-size: 0.85rem;
        color: #1e293b;
        line-height: 1.2;
      }
      .software-desc {
        font-size: 0.75rem;
        color: #64748b;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      /* ============================================
         PROVIDER CARDS
         ============================================ */
      .provider-section { display: none; margin-bottom: 0; }
      .provider-section.active { display: block; }
      .provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.25rem;
        margin-bottom: 0;
      }
      .provider-card {
        background: var(--card-bg);
        border: var(--card-border);
        border-radius: var(--card-radius);
        padding: 2rem 1.5rem;
        cursor: pointer;
        transition: all 0.35s ease;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .provider-card:hover {
        border-color: var(--card-border-hover);
        box-shadow: var(--card-shadow-hover);
        transform: translateY(-6px);
      }
      .provider-card .best-value-badge {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-gradient);
        color: white;
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        padding: 3px 12px;
        border-radius: 10px;
      }
      .provider-card.selected {
        border-color: var(--primary-color);
        background: linear-gradient(135deg, rgba(246,139,57,0.12) 0%, rgba(246,139,57,0.04) 100%);
      }
      .provider-card.selected::after {
        content: "\2713";
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--primary-gradient);
        color: white;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 0.75rem;
      }
      .provider-icon {
        width: 80px;
        height: 60px;
        margin: 0 auto 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .provider-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }

      /* ============================================
         CONTINENT CARDS
         ============================================ */
      .continent-section { display: none; margin-bottom: 0; }
      .continent-section.active { display: block; }
      .continent-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.25rem;
      }
      .continent-card {
        background: var(--card-bg);
        border: var(--card-border);
        border-radius: var(--card-radius);
        padding: 2rem;
        cursor: pointer;
        transition: all 0.35s ease;
        text-align: center;
        position: relative;
      }
      .continent-card:hover {
        border-color: var(--card-border-hover);
        transform: translateY(-6px);
        box-shadow: var(--card-shadow-hover);
      }
      .continent-card.selected {
        border-color: var(--primary-color);
        background: linear-gradient(135deg, rgba(246,139,57,0.12) 0%, rgba(246,139,57,0.04) 100%);
      }
      .continent-card.selected::after {
        content: "\2713";
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--primary-gradient);
        color: white;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 0.75rem;
      }
      .continent-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
      .continent-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
      }
      .continent-info {
        font-size: 0.8rem;
        color: var(--text-secondary);
      }

      /* ============================================
         REGION CARDS
         ============================================ */
      .region-section { display: none; margin-bottom: 0; }
      .region-section.active { display: block; }
      .region-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1rem;
      }
      .region-item {
        background: var(--card-bg);
        border: var(--card-border);
        border-radius: var(--card-radius-sm);
        padding: 1rem 1.25rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 1rem;
      }
      .region-item:hover {
        border-color: var(--card-border-hover);
        box-shadow: 0 8px 20px rgba(246,139,57,0.1);
        transform: translateY(-3px);
      }
      .region-item.selected {
        border-color: var(--primary-color);
        background: linear-gradient(135deg, rgba(246,139,57,0.1) 0%, rgba(246,139,57,0.03) 100%);
      }
      .region-flag { font-size: 1.75rem; }
      .region-details { flex: 1; }
      .region-name { font-weight: 600; margin-bottom: 0.15rem; font-size: 0.95rem; }
      .region-code { font-size: 0.8rem; color: var(--text-secondary); }

      /* ============================================
         CONFIG / PLAN SECTION
         ============================================ */
      .config-section { display: none; margin-bottom: 0; }
      .config-section.active { display: block; }

      /* Architecture Tabs - pill style */
      .arch-tabs {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-bottom: 1.5rem;
        background: rgba(246,139,57,0.06);
        border-radius: 10px;
        padding: 4px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
      }
      .arch-tab {
        padding: 10px 28px;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        background: transparent;
        color: var(--text-secondary);
        border: none;
        border-radius: 10px;
        transition: all 0.3s ease;
      }
      .arch-tab:hover { color: var(--primary-color); }
      .arch-tab.active {
        background: var(--primary-gradient);
        color: white;
        box-shadow: 0 4px 12px rgba(246,139,57,0.3);
      }

      /* Plan Cards */
      .plan-cards {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .plan-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px;
        border: var(--card-border);
        border-radius: var(--card-radius-sm);
        cursor: pointer;
        transition: all 0.3s ease;
        background: var(--card-bg);
        border-left: 4px solid transparent;
      }
      .plan-card:hover {
        border-color: rgba(246,139,57,0.25);
        border-left-color: var(--primary-color);
        box-shadow: 0 8px 20px rgba(246,139,57,0.1);
        transform: translateY(-2px);
      }
      .plan-card.selected {
        border-color: var(--primary-color);
        border-left-color: var(--primary-color);
        background: linear-gradient(135deg, rgba(246,139,57,0.1) 0%, rgba(246,139,57,0.03) 100%);
        box-shadow: 0 8px 20px rgba(246,139,57,0.12);
      }
      .plan-card-title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 6px;
      }
      .plan-card-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        font-size: 0.8rem;
        color: var(--text-secondary);
      }
      .plan-card-specs span { display: flex; align-items: center; gap: 4px; }
      .plan-card-price {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--primary-color);
        white-space: nowrap;
      }
      .plan-card-price .period {
        font-size: 0.7rem;
        font-weight: 400;
        color: var(--text-secondary);
      }
      .config-results-container {
        background: transparent;
        border-radius: var(--card-radius-sm);
        overflow: hidden;
      }

      /* ============================================
         SUPPORT CARDS
         ============================================ */
      .support-section { display: none; margin-bottom: 0; }
      .support-section.active { display: block; }
      .support-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-bottom: 0;
      }
      .support-card {
        background: var(--card-bg);
        border: 2px solid rgba(246,139,57,0.12);
        border-radius: var(--card-radius);
        padding: 2rem;
        cursor: pointer;
        transition: all 0.35s ease;
        position: relative;
        overflow: hidden;
      }
      .support-card:hover {
        border-color: var(--card-border-hover);
        box-shadow: var(--card-shadow-hover);
        transform: translateY(-6px);
      }
      .support-card.selected {
        border-color: var(--primary-color);
        background: linear-gradient(135deg, rgba(246,139,57,0.12) 0%, rgba(246,139,57,0.04) 100%);
      }
      .support-card.selected::after {
        content: "\2713";
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary-gradient);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
      }
      .support-header {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(246,139,57,0.1);
      }
      .support-level {
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
      }
      .support-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-color);
      }
      .support-price.included { color: var(--success-color); }
      .support-features { list-style: none; padding: 0; }
      .support-feature {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.85rem;
        font-size: 0.85rem;
        line-height: 1.5;
        color: #555;
      }
      .support-feature::before {
        content: "\2713";
        color: var(--primary-color);
        font-weight: bold;
        margin-top: 1px;
        flex-shrink: 0;
      }
      .support-recommended {
        background: var(--primary-gradient);
        color: white;
        padding: 0.4rem 1rem;
        border-radius: 10px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-top: 1rem;
        text-align: center;
        display: inline-block;
      }

      /* ============================================
         DEPLOY SUMMARY (dark section)
         ============================================ */
      .deploy-summary { display: none; margin-top: 0; padding-bottom: 0; }
      .deploy-summary.active { display: block; }
      .deploy-summary-card {
        background: linear-gradient(135deg, #0d1025 0%, #152042 50%, #0d1025 100%);
        border-radius: 24px;
        padding: 2.5rem;
        border: 1px solid rgba(246,139,57,0.15);
        position: relative;
        overflow: hidden;
      }
      .deploy-summary-card::before {
        content: "";
        position: absolute;
        top: -150px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(246,139,57,0.06), transparent 70%);
        pointer-events: none;
      }
      .deploy-summary-card::after {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -80px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(246,139,57,0.04), transparent 70%);
        pointer-events: none;
      }
      .deploy-summary-body {
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
        background: rgba(255,255,255,0.03);
        border-radius: 16px;
        padding: 0.5rem 1.5rem;
        border: 1px solid rgba(255,255,255,0.06);
      }
      .deploy-summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
      }
      .deploy-summary-row:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .deploy-summary-label {
        font-weight: 500;
        color: rgba(255,255,255,0.5);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .deploy-summary-value {
        font-weight: 600;
        color: rgba(255,255,255,0.95);
        font-size: 0.9rem;
        text-align: right;
      }
      .deploy-summary-divider {
        display: none;
      }
      .deploy-summary-total {
        margin-top: 0.75rem;
        padding: 1.25rem 1.5rem;
        background: rgba(246,139,57,0.08);
        border: 1px solid rgba(246,139,57,0.15);
        border-radius: 14px;
        position: relative;
        z-index: 1;
      }
      .deploy-summary-total .deploy-summary-label {
        font-size: 1rem;
        font-weight: 700;
        color: rgba(255,255,255,0.9);
        text-transform: none;
        letter-spacing: 0;
      }
      .deploy-summary-price {
        font-size: 1.7rem;
        font-weight: 800;
        color: var(--primary-color);
      }
      .deploy-now-btn {
        display: block;
        width: 100%;
        padding: 18px;
        background: var(--primary-gradient);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        box-shadow: 0 8px 24px rgba(246,139,57,0.35);
      }
      .deploy-now-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(246,139,57,0.45);
      }
      .deploy-summary-note {
        text-align: center;
        color: rgba(255,255,255,0.4);
        font-size: 0.8rem;
        margin-top: 1rem;
        margin-bottom: 0;
        position: relative;
        z-index: 1;
      }

      /* ============================================
         NOTES SECTION
         ============================================ */
      .notes-section {
        background: var(--card-bg);
        border: var(--card-border);
        border-radius: var(--card-radius);
        padding: 2rem;
        margin: 0;
      }
      .notes-title {
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--text-primary);
        font-size: 0.95rem;
      }
      .notes-list {
        list-style: none;
        color: var(--text-secondary);
        font-size: 0.85rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem 2rem;
      }
      .notes-list li {
        padding-left: 1.25rem;
        position: relative;
        margin-bottom: 0;
      }
      .notes-list li::before {
        content: "\2022";
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
      }

      /* ============================================
         SCALEWAY NOTE
         ============================================ */
      .scaleway-note {
        background: rgba(246,139,57,0.06);
        border: 1px solid rgba(246,139,57,0.2);
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 1rem;
        display: none;
      }
      .scaleway-note.show { display: block; }
      .scaleway-note-text { color: #92400e; font-size: 0.85rem; }

      /* ============================================
         SELECTION CONTEXT
         ============================================ */
      .selection-context {
        padding: 0.5rem 0 0;
        display: none;
      }
      .selection-context.show { display: block; }
      .context-items {
        display: flex;
        gap: 0.75rem;
        align-items: center;
        flex-wrap: wrap;
        font-size: 0.8rem;
      }
      .context-item {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.2rem 0.75rem;
        background: rgba(246,139,57,0.06);
        border: 1px solid rgba(246,139,57,0.1);
        border-radius: 10px;
        color: var(--text-secondary);
      }
      .context-item strong { color: var(--text-primary); }
      .context-separator { color: var(--border-color); }

      /* ============================================
         LOADING / NO RESULTS
         ============================================ */
      .loading {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3rem;
        color: var(--text-secondary);
      }
      .spinner {
        width: 36px;
        height: 36px;
        border: 3px solid rgba(246,139,57,0.15);
        border-top-color: var(--primary-color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-right: 1rem;
      }
      @keyframes spin { to { transform: rotate(360deg); } }
      .no-results {
        text-align: center;
        padding: 3rem;
        color: var(--text-secondary);
      }
      .no-results-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }

      /* ============================================
         TOAST NOTIFICATIONS
         ============================================ */
      .toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 10px;
        pointer-events: none;
      }
      .toast {
        background: white;
        border-radius: 16px;
        padding: 16px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 300px;
        max-width: 500px;
        pointer-events: auto;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.3s ease;
      }
      .toast.show { opacity: 1; transform: translateX(0); }
      .toast.hide { opacity: 0; transform: translateX(100%); }
      .toast-icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
      .toast.success .toast-icon { color: var(--success-color); }
      .toast.error .toast-icon { color: #ef4444; }
      .toast.info .toast-icon { color: var(--primary-color); }
      .toast-content { flex: 1; }
      .toast-title { font-weight: 600; font-size: 14px; color: var(--text-primary); margin-bottom: 2px; }
      .toast-message { font-size: 14px; color: var(--text-secondary); }
      .toast-close {
        flex-shrink: 0;
        background: none;
        border: none;
        color: var(--text-secondary);
        cursor: pointer;
        padding: 4px;
        margin: -4px -8px -4px 8px;
        transition: color 0.2s;
      }
      .toast-close:hover { color: var(--text-primary); }


      /* ============================================
         RESPONSIVE
         ============================================ */
      @media (max-width: 768px) {
        .pricing-hero { padding: 40px 0 40px; }
        .pricing-hero h1 { font-size: 1.7rem !important; line-height: 1.2 !important; max-width: 100% !important; }
        .hero-subtitle { font-size: 1rem; }
        .step-section:has(.software-section),
        .step-section:has(.active),
        .step-section:has(.notes-section) { padding: 40px 0; }
        .section-title { font-size: 1.4rem; }
        .provider-grid, .continent-grid {
          grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        }
        .support-grid { grid-template-columns: 1fr; }
        .arch-tabs { width: 100%; }
        .arch-tab { flex: 1; padding: 10px 12px; font-size: 0.78rem; text-align: center; }
        .plan-card {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
        }
        .plan-card-price { align-self: flex-end; }
        .deploy-summary-card { padding: 1.5rem; border-radius: 16px; }
      }
      @media (max-width: 640px) {
        .toast-container { left: 10px; right: 10px; top: 10px; }
        .toast { min-width: auto; width: 100%; }
      }

      /* Load More Button */
      .load-more-container {
        text-align: center;
        margin-top: 1.5rem;
      }
      .load-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.9rem 2.5rem;
        background: linear-gradient(135deg, #F68B39 0%, #E5601A 100%);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 14px rgba(246,139,57,0.3);
      }
      .load-more-btn:hover {
        background: linear-gradient(135deg, #E5601A 0%, #D4501E 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(246,139,57,0.4);
      }
      .load-more-btn svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
        stroke: #fff;
      }
      .load-more-btn:hover svg {
        transform: translateY(2px);
      }

      /* Catalogue scroll container */
      .catalogue-scroll-wrapper {
        margin-top: 1rem;
      }
      .catalogue-load-more-container {
        text-align: center;
        margin-top: 1.5rem;
        margin-bottom: 4rem;
      }

      /* Catalogue pagination */
      .catalogue-pagination{display:flex;justify-content:center;align-items:center;gap:6px;margin-top:2.5rem;flex-wrap:wrap}
      .catalogue-pagination .cat-page-btn{min-width:40px;height:40px;padding:0 14px;display:inline-flex;align-items:center;justify-content:center;border-radius:8px;border:1px solid #e2e8f0;background:#fff;color:#64748b;font-size:14px;font-weight:500;cursor:pointer;transition:all 0.2s;text-decoration:none}
      .catalogue-pagination .cat-page-btn:hover{border-color:#EC5A22;color:#EC5A22}
      .catalogue-pagination .cat-page-btn.active{background:#EC5A22;border-color:#EC5A22;color:#fff}
      .catalogue-pagination .cat-page-btn:disabled{opacity:0.3;cursor:not-allowed}
      .catalogue-pagination .cat-page-btn:disabled:hover{border-color:#e2e8f0;color:#64748b}
      .catalogue-pagination .cat-page-ellipsis{color:#94a3b8;font-size:14px;padding:0 4px}

      .catalogue-load-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0.7rem 2rem;
        border: 1px solid rgba(246,139,57,0.3);
        background: rgba(246,139,57,0.06);
        color: #EC5A22;
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.2s ease;
      }
      .catalogue-load-more-btn:hover {
        background: rgba(246,139,57,0.12);
        border-color: rgba(246,139,57,0.5);
      }
      @keyframes catalogueFadeIn {
        from { opacity: 0; transform: translateY(8px); }
        to { opacity: 1; transform: translateY(0); }
      }
      .catalogue-grid .software-card.new-item {
        animation: catalogueFadeIn 0.3s ease forwards;
      }
      .catalogue-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 0.75rem;
      }
      .catalogue-loader {
        text-align: center;
        padding: 1.5rem 0;
        color: var(--text-secondary);
        font-size: 0.85rem;
      }
      .catalogue-loader .spinner {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid rgba(246,139,57,0.2);
        border-top-color: #EC5A22;
        border-radius: 50%;
        animation: spin 0.6s linear infinite;
        margin-right: 0.5rem;
        vertical-align: middle;
      }
      @keyframes spin {
        to { transform: rotate(360deg); }
      }
      .catalogue-count {
        text-align: center;
        padding: 0.75rem 0 0;
        font-size: 0.8rem;
        color: var(--text-secondary);
      }

      /* Notes in dark section */
      .notes-dark {
        margin-top: 1.5rem;
        padding: 1.25rem 1.5rem;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 14px;
        position: relative;
        z-index: 1;
      }
      .notes-dark .notes-title {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: rgba(255,255,255,0.6);
        font-size: 0.85rem;
      }
      .notes-dark .notes-list {
        list-style: none;
        color: rgba(255,255,255,0.4);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem 2rem;
        font-size: 0.8rem;
        padding: 0;
      }
      .notes-dark .notes-list li {
        padding-left: 1.25rem;
        position: relative;
        margin-bottom: 0.3rem;
      }
      .notes-dark .notes-list li::before {
        content: "\2022";
        position: absolute;
        left: 0;
        color: rgba(246,139,57,0.5);
        font-weight: bold;
      }
      .notes-dark .notes-list a {
        color: var(--primary-color);
        opacity: 0.8;
      }

      /* Hide old banner section from style.css */
      .banner { display: none !important; }
      /* Override old builder-header */
      .builder-header { display: none !important; }

      /* ============================================
         INSTANT DEPLOY SUMMARY
         ============================================ */
      .instant-deploy-section { display: none; scroll-margin-top: 80px; }
      .instant-deploy-section.active { display: block; }
      .instant-deploy-card {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(246,139,57,0.2);
        border-radius: var(--card-radius);
        padding: 2.5rem;
        max-width: 680px;
        margin: 0 auto;
        animation: slideUpFadeIn 0.5s ease-out;
      }
      .instant-deploy-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.5rem;
      }
      .instant-deploy-header img {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        object-fit: contain;
        background: rgba(255,255,255,0.1);
        padding: 6px;
      }
      .instant-deploy-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
      }
      .instant-deploy-subtitle {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.5);
        margin-bottom: 2rem;
      }
      .instant-deploy-rows {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .instant-deploy-row {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        transition: background 0.2s ease;
      }
      .instant-deploy-row:last-child { border-bottom: none; }
      .instant-deploy-row:hover {
        background: rgba(255,255,255,0.02);
        margin: 0 -1rem;
        padding: 1rem;
        border-radius: 12px;
      }
      .instant-deploy-row-text {
        flex: 1;
        min-width: 0;
      }
      .instant-deploy-row-label {
        display: block;
        font-size: 0.75rem;
        color: rgba(255,255,255,0.45);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
      }
      .instant-deploy-row-value {
        font-size: 0.95rem;
        color: #fff;
        font-weight: 600;
        word-break: break-word;
      }
      .instant-deploy-row-edit {
        background: none;
        border: 1px solid rgba(255,255,255,0.15);
        color: rgba(255,255,255,0.7);
        width: 34px;
        height: 34px;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        flex-shrink: 0;
        margin-top: 8px;
      }
      .instant-deploy-row-edit:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: rgba(246,139,57,0.1);
      }
      .instant-deploy-row-edit svg { width: 16px; height: 16px; }
      .instant-deploy-total {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 2px solid rgba(246,139,57,0.3);
      }
      .instant-deploy-total p {
        width: 100%;
        text-align: center;
      }
      .instant-deploy-total-label {
        font-size: 1rem;
        color: rgba(255,255,255,0.7);
        font-weight: 600;
      }
      .instant-deploy-total-price {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-color);
      }
      .instant-deploy-total-price span {
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255,255,255,0.5);
      }
      .instant-deploy-actions {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }
      .instant-deploy-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1.1rem 2rem;
        background: var(--primary-gradient);
        color: white;
        border: none;
        border-radius: 14px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        letter-spacing: 0.02em;
      }
      .instant-deploy-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(246,139,57,0.35);
      }
      .instant-deploy-note {
        text-align: center;
        font-size: 0.8rem;
        color: rgba(255,255,255,0.35);
        margin-top: 0.75rem;
      }

      /* ============================================
         MODIFICATION PANEL (OVERLAY)
         ============================================ */
      .modify-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(8px);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        padding: 2rem;
      }
      .modify-overlay.active { display: flex; }
      .modify-panel {
        background: #fff;
        border-radius: var(--card-radius);
        max-width: 720px;
        width: 100%;
        max-height: 80vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        animation: panelSlideUp 0.3s ease-out;
        box-shadow: 0 24px 80px rgba(0,0,0,0.2);
      }
      .modify-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.75rem;
        border-bottom: 1px solid var(--border-color);
      }
      .modify-panel-title {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--text-primary);
      }
      .modify-panel-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-secondary);
        cursor: pointer;
        padding: 0.25rem;
        line-height: 1;
        transition: color 0.2s;
      }
      .modify-panel-close:hover { color: var(--text-primary); }
      .modify-tabs {
        display: flex;
        border-bottom: 1px solid var(--border-color);
        padding: 0 1.75rem;
        gap: 0;
      }
      .modify-tab {
        padding: 0.85rem 1.25rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-secondary);
        border: none;
        background: none;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: all 0.2s ease;
        white-space: nowrap;
      }
      .modify-tab:hover { color: var(--text-primary); }
      .modify-tab.active {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
      }
      .modify-panel-body {
        padding: 1.5rem 1.75rem;
        overflow-y: auto;
        flex: 1;
      }
      .modify-panel-footer {
        padding: 1.25rem 1.75rem;
        border-top: 1px solid var(--border-color);
        display: flex;
        justify-content: flex-end;
        gap: 0.75rem;
      }
      .modify-apply-btn {
        padding: 0.75rem 2rem;
        background: var(--primary-gradient);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
      }
      .modify-apply-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(246,139,57,0.3);
      }
      .modify-cancel-btn {
        padding: 0.75rem 1.5rem;
        background: var(--border-color);
        color: var(--text-primary);
        border: none;
        border-radius: 12px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
      }
      .modify-cancel-btn:hover { background: #d1d5db; }

      /* Modify panel grids */
      .modify-provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
      }
      .modify-provider-card {
        background: var(--card-bg);
        border: var(--card-border);
        border-radius: 16px;
        padding: 1.25rem 1rem;
        cursor: pointer;
        transition: all 0.25s ease;
        text-align: center;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .modify-provider-card:hover {
        border-color: var(--card-border-hover);
        box-shadow: 0 8px 20px rgba(246,139,57,0.1);
      }
      .modify-provider-card.selected {
        border-color: var(--primary-color);
        background: rgba(246,139,57,0.08);
      }
      .modify-provider-card .provider-icon { width: 78px; height: 52px; margin: 0 auto; }
      .modify-continent-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
      }
      .modify-continent-pill {
        padding: 0.5rem 1rem;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        background: #fff;
        color: var(--text-secondary);
      }
      .modify-continent-pill:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
      }
      .modify-continent-pill.selected {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
      }
      .modify-region-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-height: 300px;
        overflow-y: auto;
      }
      .modify-region-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
      }
      .modify-region-item:hover {
        border-color: var(--card-border-hover);
        background: var(--card-bg);
      }
      .modify-region-item.selected {
        border-color: var(--primary-color);
        background: rgba(246,139,57,0.06);
      }
      .modify-plan-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-height: 350px;
        overflow-y: auto;
      }
      .modify-plan-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.85rem 1rem;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
      }
      .modify-plan-item:hover {
        border-color: var(--card-border-hover);
        background: var(--card-bg);
      }
      .modify-plan-item.selected {
        border-color: var(--primary-color);
        background: rgba(246,139,57,0.06);
      }
      .modify-plan-specs { font-size: 0.85rem; color: var(--text-secondary); }
      .modify-plan-price {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary-color);
        white-space: nowrap;
      }
      .modify-support-grid {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }
      .modify-support-card {
        padding: 1rem 1.25rem;
        border: 1px solid var(--border-color);
        border-radius: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .modify-support-card:hover {
        border-color: var(--card-border-hover);
        background: var(--card-bg);
      }
      .modify-support-card.selected {
        border-color: var(--primary-color);
        background: rgba(246,139,57,0.06);
      }
      .modify-support-name { font-weight: 600; color: var(--text-primary); }
      .modify-support-price { font-weight: 700; color: var(--primary-color); }
      .modify-arch-tabs {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1rem;
      }
      .modify-arch-tab {
        padding: 0.5rem 1rem;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        background: #fff;
        color: var(--text-secondary);
        transition: all 0.2s ease;
      }
      .modify-arch-tab.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
      }

      /* ============================================
         SIMPLIFIED STICKY NAV SUMMARY
         ============================================ */
      .sticky-summary-bar {
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }
      .sticky-summary-bar.active { display: flex; }
      .sticky-summary-info {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex: 1;
        min-width: 0;
      }
      .sticky-summary-info img {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        object-fit: contain;
      }
      .sticky-summary-name {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--text-primary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .sticky-summary-details {
        font-size: 0.8rem;
        color: var(--text-secondary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .sticky-summary-price {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--primary-color);
        white-space: nowrap;
      }
      .sticky-summary-deploy {
        padding: 0.6rem 1.5rem;
        background: var(--primary-gradient);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 0.85rem;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s ease;
        white-space: nowrap;
      }
      .sticky-summary-deploy:hover {
        box-shadow: 0 6px 16px rgba(246,139,57,0.3);
        transform: translateY(-1px);
      }

      /* New animations */
      @keyframes slideUpFadeIn {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
      }
      @keyframes panelSlideUp {
        from { opacity: 0; transform: translateY(20px) scale(0.97); }
        to { opacity: 1; transform: translateY(0) scale(1); }
      }
      @keyframes bottomSheetSlideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
      }
      @keyframes rowHighlight {
        0% { background: rgba(246,139,57,0.15); }
        100% { background: transparent; }
      }
      .instant-deploy-row.highlight { animation: rowHighlight 1s ease-out; }

      /* Mobile overrides for new components */
      @media (max-width: 768px) {
        .instant-deploy-card { padding: 1.5rem; }
        .instant-deploy-total-price { font-size: 1.5rem; }
        .instant-deploy-header h3 { font-size: 1.2rem; }
        .modify-overlay { padding: 0; align-items: flex-end; }
        .modify-panel {
          max-height: 85vh;
          border-radius: var(--card-radius) var(--card-radius) 0 0;
          animation: bottomSheetSlideUp 0.3s ease-out;
        }
        .modify-tabs { overflow-x: auto; }
        .modify-provider-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
        .sticky-summary-details { display: none; }
        .sticky-summary-bar { gap: 0.5rem; }
        .sticky-summary-deploy { padding: 0.5rem 1rem; font-size: 0.8rem; }
      }

/* === Block 2: FAQ (domains-style) === */
.prc-faq { padding: 80px 0; background: #FFFFFF; }
.prc-faq-wrap { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.prc-faq-header { text-align: center; margin-bottom: 48px; }
.prc-faq-header h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; color: #1E293B; letter-spacing: -1px; margin: 0 0 12px; }
.prc-faq-header p { font-size: 16px; color: #64748B; margin: 0; }
.prc-faq-list { list-style: none; padding: 0; margin: 0; }
.prc-faq-item { border: 1px solid #E2E8F0; border-radius: 10px; margin-bottom: 8px; overflow: hidden; background: #F8FAFC; transition: border-color 0.2s; }
.prc-faq-item:hover { border-color: rgba(236,90,34,0.3); }
.prc-faq-title { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; cursor: pointer; transition: background 0.2s; }
.prc-faq-title:hover { background: rgba(0,0,0,0.03); }
.prc-faq-title span { font-size: 15px; font-weight: 600; color: #1E293B; line-height: 1.4; }
.prc-faq-icon { width: 24px; height: 24px; flex-shrink: 0; color: #EC5A22; transition: transform 0.3s; }
.prc-faq-item.active .prc-faq-icon { transform: rotate(45deg); }
.prc-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.prc-faq-body-inner { padding: 12px 24px 20px; }
.prc-faq-body p { font-size: 14px; color: #64748B; line-height: 1.7; margin: 0 0 12px; }
.prc-faq-body p:last-child { margin-bottom: 0; }

/* === Block 3 === */
#instantDeployIcon,img[id="instantDeployIcon"]{background:#fff;border-radius:8px;padding:4px}

/* === Block 4 === */
#instantDeployIcon,img[id="instantDeployIcon"]{background:#fff;border-radius:8px;padding:4px}

      /* Support detail cards in modify modal */
      .modify-panel.modify-panel--wide {
        max-width: 1060px !important;
      }
      .modify-support-cards {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem;
        align-items: stretch;
      }
      .modify-support-detail-card {
        border: 1px solid var(--border-color);
        border-radius: 14px;
        padding: 1.25rem;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        position: relative;
        min-width: 0;
      }
      .modify-support-detail-card:hover {
        border-color: var(--card-border-hover);
        background: var(--card-bg);
      }
      .modify-support-detail-card.selected {
        border-color: var(--primary-color);
        background: rgba(246,139,57,0.06);
      }
      .msd-tag {
        display: inline-block;
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #fff;
        padding: 3px 10px;
        border-radius: 20px;
        margin-bottom: 0.75rem;
        width: fit-content;
      }
      .msd-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
      }
      .msd-subtitle {
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin-bottom: 0.75rem;
      }
      .msd-price {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 0.15rem;
      }
      .msd-price-hour {
        font-size: 0.75rem;
        color: var(--text-secondary);
        margin-bottom: 0.75rem;
      }
      .msd-features-label {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
      }
      .msd-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        flex: 1;
      }
      .msd-features li {
        font-size: 0.78rem;
        color: var(--text-primary);
        padding: 0.25rem 0;
        line-height: 1.4;
      }
      .msd-footer {
        font-size: 0.75rem;
        color: var(--text-secondary);
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-color);
        text-align: center;
      }
      @media (max-width: 768px) {
        .modify-support-cards {
          grid-template-columns: 1fr !important;
        }
        .modify-panel.modify-panel--wide { max-width: 100% !important; }
      }
