/* ==========================================================================
   PRIDENS — SUBSCRIPTION PAGE  |  Professional & Sleek Design
   Aligned with the main landing page aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary:        #2db7cc;
    --primary-dark:   #1a9ab0;
    --primary-light:  #e6f8fb;
    --text-dark:      #0f172a;
    --text-mid:       #334155;
    --text-muted:     #64748b;
    --bg-page:        #f8fafc;
    --bg-white:       #ffffff;
    --border:         #e2e8f0;
    --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:      0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg:      0 20px 50px rgba(0,0,0,0.10);
    --shadow-primary: 0 8px 30px rgba(45,183,204,0.25);
}

/* Force page background */
body {
    background: var(--bg-page) !important;
    font-family: 'Poppins', sans-serif !important;
}

/* ─── SHARED ANIMATE ON SCROLL ─────────────────────────────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SECTION WRAPPER ──────────────────────────────────────────────────── */
.subscription-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 90px 24px 60px;
}

/* ─── SHARED BADGE & HEADER ────────────────────────────────────────────── */
.sub-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid rgba(45,183,204,0.25);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.subscription-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.subscription-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.subscription-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── TOGGLE ───────────────────────────────────────────────────────────── */
.toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 56px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 28px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
    white-space: nowrap;
}

.toggle-label.active {
    color: var(--primary);
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    display: inline-block;
    flex-shrink: 0;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    inset: 0;
    background: #e2e8f0;
    border-radius: 28px;
    cursor: pointer;
    transition: background 0.35s;
}

.slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

input:checked + .slider { background: var(--primary); }
input:checked + .slider::before { transform: translateX(24px); }

/* ─── PRICING GRID ──────────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45,183,204,0.25);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-primary);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pc-featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 16px;
    border-radius: 0 0 12px 12px;
    white-space: nowrap;
}

.pc-tier-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pc-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pc-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 20px;
}

.pc-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.pc-price {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.pc-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pc-note {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.pc-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.pc-features li {
    font-size: 0.9rem;
    color: var(--text-mid);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc-features li:last-child { border-bottom: none; }

.pc-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: var(--primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}


/* ─── DETAIL SECTION ────────────────────────────────────────────────────── */
.detail-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 24px 100px;
}

.detail-section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.detail-section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin: 0 0 12px;
}

.detail-section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── PLAN TABS ─────────────────────────────────────────────────────────── */
.plan-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.plan-tabs {
    display: flex;
    gap: 12px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 8px;
    box-shadow: var(--shadow-sm);
}

.plan-tab {
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 12px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
}

.plan-tab .tab-tier {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: color 0.25s;
}

.plan-tab .tab-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-mid);
    transition: color 0.25s;
}

.plan-tab:hover {
    background: var(--primary-light);
}

.plan-tab:hover .tab-tier,
.plan-tab:hover .tab-name {
    color: var(--primary);
}

.plan-tab.active {
    background: var(--primary);
    box-shadow: var(--shadow-primary);
}

.plan-tab.active .tab-tier,
.plan-tab.active .tab-name {
    color: #fff;
}

/* ─── PLAN DETAIL PANEL ─────────────────────────────────────────────────── */
.plan-detail {
    display: none;
}

.plan-detail.active {
    display: block;
}

.plan-detail-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    animation: planFadeIn 0.45s ease;
}

@keyframes planFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── PLAN SHOWCASE (Left Column) ──────────────────────────────────────── */
.plan-showcase {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 560px;
    position: relative;
    overflow: hidden;
}

/* Per-plan gradients */
.saver-theme { background: linear-gradient(160deg, #a0eefa 0%, #67c9d8 100%); }
.basic-theme { background: linear-gradient(160deg, #2db7cc 0%, #1d8fa3 100%); }
.prime-theme  { background: linear-gradient(160deg, #0e6fa8 0%, #0a4a75 100%); }

/* Decorative circle behind card images */
.plan-showcase::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    bottom: -80px;
    right: -80px;
    pointer-events: none;
}

.showcase-tier {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.saver-theme .showcase-tier { color: rgba(10,50,70,0.65); }

.plan-showcase-label h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 12px;
}

.saver-theme .plan-showcase-label h3 { color: #0f172a; }

.showcase-insurance-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.saver-theme .showcase-insurance-tag {
    background: rgba(10,50,70,0.12);
    color: #0f172a;
    border-color: rgba(10,50,70,0.2);
}

/* Card Stack */
.plan-card-stack {
    position: relative;
    height: 210px;
    margin: 32px 0;
}

.stack-back {
    position: absolute;
    width: 80%;
    right: 0;
    top: 0;
    border-radius: 12px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.18));
    transform: rotate(4deg);
}

.stack-front {
    position: absolute;
    width: 88%;
    left: 0;
    bottom: 0;
    border-radius: 12px;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.25));
    z-index: 2;
    transform: rotate(-2deg);
}

/* Price block */
.plan-showcase-price {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 18px 22px;
}

.saver-theme .plan-showcase-price {
    background: rgba(10,50,70,0.1);
    border-color: rgba(10,50,70,0.15);
}

.showcase-price-main {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.saver-theme .showcase-price-main { color: #0f172a; }

.showcase-price-main span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.showcase-price-sub {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.saver-theme .showcase-price-sub { color: rgba(10,50,70,0.65); }

/* ─── PLAN DETAILS RIGHT COLUMN ─────────────────────────────────────────── */
.plan-details-right {
    padding: 40px 36px 40px 8px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.details-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.details-block {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
}

.monthly-block {
    background: var(--primary-light);
    border-color: rgba(45,183,204,0.3);
}

.details-block-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-block-title.accent {
    color: var(--primary-dark);
}

.details-block-title svg {
    color: var(--text-muted);
}

.details-block-title.accent svg {
    color: var(--primary);
}

.detail-term-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    font-size: 0.875rem;
    color: var(--text-mid);
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.details-list li:last-child { border-bottom: none; }

.details-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--text-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center;
}

.accent-list li::before {
    background-color: var(--primary);
}

/* ─── COVERAGE TABLE ────────────────────────────────────────────────────── */
.coverage-table {
    background: #0f172a;
    border-radius: 18px;
    padding: 24px 26px;
    color: #fff;
}

.coverage-table-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.coverage-title {
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.coverage-title svg { color: var(--primary); }

.coverage-contestability {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

.coverage-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.coverage-row.last { border-bottom: none; }

.coverage-amount {
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #fff;
    white-space: nowrap;
}

.coverage-amount.varies {
    background: rgba(45,183,204,0.2);
    border-color: rgba(45,183,204,0.3);
    color: var(--primary);
}

.coverage-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card.featured { transform: scale(1); }
    .plan-detail-inner { grid-template-columns: 1fr; }
    .plan-showcase { min-height: auto; }
    .plan-details-right { padding: 32px; }
    .details-top-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .subscription-header h1 { font-size: 2rem; }
    .plan-tabs { flex-direction: column; gap: 8px; }
}

/* --------------------------------------------------------------------------
   MOBILE APP SECTION
-------------------------------------------------------------------------- */
.extra-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.extra-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 60px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

/* Subtle teal glow top-right */
.extra-section-inner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45,183,204,0.07) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.app-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 14px 0 16px;
    letter-spacing: -0.5px;
}

.app-left > p {
    font-size: 0.975rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.app-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.app-feat-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-feat-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.app-feat-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.app-feat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* App Store Buttons */
.app-store-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--text-dark);
    color: #fff;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 12px;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid transparent;
}

.store-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.store-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.store-btn span {
    display: block;
    font-size: 0.68rem;
    opacity: 0.7;
    line-height: 1;
    margin-bottom: 3px;
}

.store-btn strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

/* Phone Mockups */
.app-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-row {
    position: relative;
    height: 560px;
    width: 100%;
}

.phone-frame {
    position: absolute;
    width: 200px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    border: 3px solid rgba(255,255,255,0.9);
    background: #000;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-back {
    height: 400px;
}

.phone-main {
    width: 220px;
    height: 460px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,1);
}

.phone-frame:first-child {
    left: 0;
    top: 20px;
    transform: rotate(-5deg);
    z-index: 1;
    opacity: 0.85;
}

.phone-frame:last-child {
    right: 0;
    top: 60px;
    transform: rotate(5deg) translateY(30px);
    z-index: 1;
    opacity: 0.85;
}


/* --------------------------------------------------------------------------
   TRUST SECTION: Insurance + Payment
-------------------------------------------------------------------------- */
.trust-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px 120px;
}

.trust-section-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.trust-block {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insurance-block {
    background: linear-gradient(160deg, #f0fafb 0%, #ffffff 100%);
    border-right: 1px solid var(--border);
}

.payment-block {
    background: linear-gradient(160deg, #ffffff 0%, #f0f9ff 100%);
}

.trust-divider {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
}

.trust-block-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-block-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.payment-icon {
    background: #eff6ff;
}

.payment-icon svg {
    color: #3b82f6;
}

.trust-block-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 4px;
}

.payment-block .trust-block-label {
    color: #3b82f6;
}

.trust-block h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.3px;
}

.trust-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.trust-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid rgba(45,183,204,0.2);
    padding: 5px 14px;
    border-radius: 50px;
}

.payment-tags span {
    background: #eff6ff;
    color: #2563eb;
    border-color: rgba(59,130,246,0.2);
}

.xendit-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    padding: 12px 18px;
    background: #f0f9ff;
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 12px;
    width: fit-content;
}

.xendit-badge svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.xendit-badge span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.xendit-badge strong {
    color: #0b4d8f;
}

/* Responsive */
@media (max-width: 1024px) {
    .extra-section-inner {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    .phone-mockup-row {
        height: 380px;
    }
    .phone-frame { width: 140px; }
    .phone-back  { height: 280px; }
    .phone-main  { width: 160px; height: 320px; }

    .trust-section-inner {
        grid-template-columns: 1fr;
    }
    .trust-divider { display: none; }
    .insurance-block {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .trust-block { padding: 36px 28px; }
}

@media (max-width: 640px) {
    .app-features-grid { grid-template-columns: 1fr; }
}

/* Coming Soon store buttons */
.coming-soon-btn {
    opacity: 0.85;
    position: relative;
}
.coming-soon-btn .coming-tag {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 3px;
}

/* Xendit logo image */
.xendit-logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
}
