* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-blue: #1A5AFE;
    --text-black: #1C1C1E;
    --text-grey: #636366;
    --bg-grey: #F1EFED;
    --surface-white: #FFFFFF;
    --accent-red: #FF1414;
    --font-space: 'Space Grotesk', sans-serif;
    --font-public: 'Public Sans', sans-serif;
}

html,
body {
    height: 100%;
}

body {
    font-family: var(--font-public);
    background-color: var(--bg-grey);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    color: var(--text-black);
    overflow: hidden;
}

#app {
    width: 100%;
    max-width: 500px;
    height: 100vh;
    min-height: 100vh;
    background-color: var(--bg-grey);
    position: relative;
    overflow: hidden;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
}

.page.active {
    display: flex;
}

/* System Bar - Removed as per user request */
.system-bar {
    display: none;
}

/* Content Container */
.content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    padding-top: 0px !important;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.content-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.content-container.center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Page 1 Styles */
.header-logo {
    text-align: center;
    margin-top: 20px;
}

.logo {
    font-family: var(--font-space);
    font-size: 32px;
    font-weight: 700;
}

.reviews-badge {
    position: relative;
    width: 176px;
    height: 63px;
    margin: 40px auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reviews-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stars {
    display: flex;
    gap: 3px;
    z-index: 2;
    margin-bottom: 5px;
}

.stars img {
    width: 14px;
    height: 14px;
}

.reviews-text {
    font-size: 10px;
    font-weight: 600;
    color: #A1A1AA;
    letter-spacing: 1px;
    z-index: 2;
}

.hero-text {
    text-align: center;
    margin-top: 40px;
}

.hero-text h2 {
    font-family: var(--font-space);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.blue-text {
    color: var(--primary-blue);
}

.illustration {
    margin: 30px auto;
    width: 352px;
    height: 160px;
}

.illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.question {
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    margin: 20px 0;
    padding: 0 20px;
}

.button-group {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-bottom: 20px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: opacity 0.2s;
}

.btn-primary:active {
    opacity: 0.8;
}

.btn-primary.full-width {
    width: 100%;
    flex: none;
}

.disclaimer {
    font-size: 13px;
    color: var(--text-grey);
    text-align: center;
    padding: 0 20px 20px;
}

.disclaimer a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Page 2 Styles */
.trust-header {
    margin-bottom: 60px;
}

.trust-header h2 {
    font-family: var(--font-space);
    font-size: 22px;
    margin-bottom: 8px;
}

.sub-text {
    color: var(--text-grey);
    font-size: 17px;
}

.avatar-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 60px;
}

.avatar-ring-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 166px;
    height: 166px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
}

.avatar-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 1px dashed rgba(0,0,0,0.2);
}

.avatar {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-center {
    width: 102px;
    height: 102px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(26, 90, 254, 0.7);
    padding: 8px;
}

.avatar-1 { width: 66px; height: 66px; top: 20px; left: 80px; border: 1px solid rgba(0,0,0,0.1); padding: 5px; }
.avatar-2 { width: 66px; height: 66px; bottom: 40px; left: 20px; border: 1px solid rgba(255, 20, 20, 0.2); padding: 4px; }
.avatar-3 { width: 59px; height: 59px; top: 120px; left: 10px; }
.avatar-4 { width: 34px; height: 34px; top: 140px; right: 20px; }
.avatar-5 { width: 58px; height: 58px; top: 40px; right: 40px; }
.avatar-6 { width: 87px; height: 87px; bottom: 20px; left: 100px; border: 1px solid rgba(255, 0, 0, 0.1); padding: 7px; }
.avatar-7 { width: 66px; height: 66px; bottom: 100px; right: 20px; }

.bottom-action {
    width: 100%;
    padding: 0 16px 40px;
}

/* Page 3 Styles */
.top-nav {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 16px;
}

.top-nav.top-nav-slim {
    padding-top: 18px;
    padding-bottom: 0;
}

.btn-back-pill {
    width: 40px;
    height: 40px;
    border-radius: 24px;
    box-shadow: 0 2px 40px rgba(0,0,0,0.1);
    background: rgba(250,250,250,0.7);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-white);
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: #E8E8E8;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar.slim {
    border-radius: 34px;
}

.progress-bar.slim .progress-fill {
    border-radius: 34px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: width 0.3s;
}

.survey-header {
    margin: 40px 0;
    text-align: center;
}

.survey-header h1 {
    font-family: var(--font-space);
    font-size: 22px;
    margin-bottom: 8px;
}

.survey-header p {
    color: var(--text-grey);
    font-size: 17px;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-item {
    background: var(--surface-white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.option-item:active {
    border-color: var(--primary-blue);
}

.option-icon {
    font-size: 20px;
}

.option-text {
    flex: 1;
    font-weight: 700;
    font-size: 14px;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 50%;
}

.option-item.selected .radio-circle {
    border-color: var(--primary-blue);
    background-color: var(--primary-blue);
    box-shadow: inset 0 0 0 4px white;
}

/* New Page Elements */
.option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.option-subtext {
    font-size: 13px;
    color: var(--text-grey);
    font-weight: 400;
}

.bottom-action-fixed {
    width: 100%;
    margin-top: auto;
    padding: 20px 16px 40px;
    background-color: var(--bg-grey);
    text-align: center;
}

.text-link {
    font-size: 13px;
    color: var(--text-black);
    margin-bottom: 16px;
    cursor: pointer;
}

.btn-primary.disabled {
    background-color: #CACFD6;
    cursor: not-allowed;
}

/* Summary Page */
.summary-title {
    font-family: var(--font-space);
    font-size: 22px;
    margin-bottom: 30px;
}

.summary-card {
    background: var(--surface-white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 24px 20px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-card p {
    font-size: 14px;
    line-height: 1.5;
}

.summary-card span {
    color: var(--primary-blue);
}

.summary-footer {
    margin-top: 20px;
    color: var(--text-grey);
    font-size: 17px;
    padding: 0 20px;
}

/* Page 11 & 12 specific styles */
.illustration-large {
    margin: 20px auto;
    width: 100%;
    max-width: 300px;
}

.illustration-large img {
    width: 100%;
    height: auto;
}

.info-box {
    background: var(--surface-white);
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-box p {
    font-size: 15px;
    font-weight: 500;
}

.info-text {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 20px 0;
    padding: 0 10px;
}

.personalizing-title {
    font-family: var(--font-space);
    font-size: 24px;
    margin-bottom: 40px;
}

.loading-spinner {
    width: 120px;
    height: 120px;
    border: 8px solid #E8E8E8;
    border-top: 8px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Stats Cards (Page 30) */
.stats-container {
    display: flex;
    gap: 8px;
    margin: 20px 0;
    width: 100%;
}

.stat-card {
    flex: 1;
    border-radius: 9px;
    padding: 12px 8px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-card.green { background-color: #4CB26F; }
.stat-card.dark-blue { background-color: #31606A; }
.stat-card.light-green { background-color: #BFE7C5; color: var(--text-black); }

.stat-value {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-space);
}

.stat-label {
    font-size: 9px;
    font-weight: 700;
    margin-top: 4px;
    line-height: 1.2;
}

.stat-card.light-green .stat-value {
    color: #00A137;
    font-size: 16px;
}

.ring-chart {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
}

.ring-chart img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
}

/* User Control Header (Page 30) */
.control-header {
    width: 100%;
    position: relative;
    margin: 20px 0;
}

.control-banner {
    background-color: #000E32;
    color: white;
    padding: 16px;
    border-radius: 6px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.control-banner.white {
    background-color: white;
    color: #000E32;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.user-avatar-float {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    z-index: 5;
}

.user-avatar-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cancelled Subscriptions List (Page 30) */
.cancelled-list {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.cancelled-item {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px;
    padding: 12px;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cancelled-item img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}

.cancelled-item .brand-name {
    font-weight: 600;
    font-size: 16px;
}

.cancelled-item .brand-price {
    font-size: 12px;
    color: var(--text-grey);
}

/* Plan Card (Page 31) */
.plan-summary-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}

.plan-summary-card p {
    font-size: 14px;
    margin-bottom: 8px;
}

.plan-summary-card span {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Chart Styles (Page 31) */
.chart-container {
    background: white;
    border-radius: 9px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 -6px 21px rgba(0,0,0,0.02);
}

.chart-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #191B25;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
}

.chart-bg {
    width: 100%;
    height: 100%;
}

.chart-line {
    position: absolute;
    top: 0;
    left: 20px;
    width: 80%;
    height: 100%;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 7px;
    font-weight: 700;
    color: #434656;
    text-transform: uppercase;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Multi-select styling */
.multi-select .option-item.selected {
    border-color: var(--primary-blue);
}

.crafting-title {
    font-family: var(--font-space);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 24px;
}

.crafting-steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0 2px;
}

.crafting-step-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 8px;
}

.crafting-bar {
    position: relative;
    width: 100%;
    height: 16px;
}

.crafting-bar-track {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 8px;
    border-radius: 12px;
    background: rgba(0,0,0,0.1);
}

.crafting-bar-fill {
    position: absolute;
    top: 4px;
    left: 0;
    width: 0%;
    height: 8px;
    border-radius: 12px;
    background-image: linear-gradient(90deg, #00BBA4 0%, #1787F8 100%);
}

.crafting-step.running .crafting-bar-fill {
    animation: craftingFill var(--crafting-duration, 1200ms) linear forwards;
}

.crafting-step.done .crafting-bar-fill {
    width: 100%;
    background-image: linear-gradient(90deg, #00BBA4 0%, #1787F8 100%);
    animation: none;
}

.crafting-check {
    position: absolute;
    top: -4px;
    right: -2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.2s, transform 0.2s;
}

.crafting-step.done .crafting-check {
    opacity: 1;
    transform: scale(1);
}

@keyframes craftingFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.crafting-testimonials {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 10px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 12px 14px;
}

.testimonial-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.testimonial-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-black);
}

.testimonial-meta {
    text-align: right;
    font-size: 13px;
    color: var(--text-black);
}

.testimonial-date {
    font-weight: 400;
}

.testimonial-name {
    font-weight: 500;
}

.testimonial-stars {
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #F5A524;
}

.testimonial-text {
    margin-top: 8px;
    font-size: 14px;
    color: #636366;
    line-height: 1.4;
}

.paywall {
    padding-top: 14px;
}

.paywall-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--bg-grey);
    padding-top: 8px;
    padding-bottom: 10px;
}

.paywall-countdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.paywall-time {
    font-family: var(--font-space);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.paywall-sep {
    color: var(--primary-blue);
    padding: 0 2px;
}

.paywall-time-labels {
    display: flex;
    gap: 26px;
    font-size: 12px;
    color: var(--text-grey);
    margin-left: 2px;
}

.paywall-start-small {
    border: none;
    background: var(--primary-blue);
    color: white;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.paywall-hero {
    text-align: center;
}

.paywall-frame30 {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 15px;
    background: #ffffff;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.paywall-frame30-image {
    width: 100%;
    height: 216px;
    display: block;
    object-fit: cover;
}

.paywall-frame30-bottom {
    display: flex;
}

.paywall-frame30-col {
    align-items:center;
    justify-content: space-between;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 223px;
    padding: 15px 9px 0 10px;
    row-gap: 24px;
}

.paywall-frame30-col-now {
    border-right: 1px solid rgba(0,0,0,0.1);
}

.paywall-frame30-col-after {
    align-items: center;
    padding: 15px 10px 0 10px;
}

.paywall-frame30-title {
    width: min(161px, 100%);
    line-height: 30px;
    letter-spacing: 0;
    color: #1c1c1e;
    font-family: var(--font-space);
    font-size: 22px;
    font-weight: 700;
}

.paywall-frame30-bars {
    margin: 20px;
    display: flex;
    flex-shrink: 0;
    align-items: flex-start;
    align-self: stretch;
}

.paywall-frame30-bar {
    width: calc((100% - 6px) / 3);
    max-width: 52px;
    border-radius: 8px;
}

.paywall-frame30-bars-red .paywall-frame30-bar {
    background: #ff332a;
}

.paywall-frame30-bars-green {
    justify-content: space-between;
    min-width: 0;
}


.paywall-frame30-bars-green .paywall-frame30-bar {
    background: #42c255;
}

.paywall-frame30-bar-r1 {
    margin-top: 17px;
    height: 71px;
}

.paywall-frame30-bar-r2 {
    margin-top: 31px;
    margin-left: 3px;
    height: 57px;
}

.paywall-frame30-bar-r3 {
    margin-left: 3px;
    height: 88px;
}

.paywall-frame30-bar-g1 {
    margin-top: 23px;
    height: 31px;
}

.paywall-frame30-bar-g2 {
    height: 54px;
}

.paywall-frame30-bar-g3 {
    margin-top: 34px;
    height: 20px;
}

.paywall-hero-image {
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #ffffff;
}

.paywall-hero-cards {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: -18px 0 14px;
}

.paywall-hero-card {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.paywall-hero-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-black);
}

.paywall-hero-box {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.paywall-hero-box-title {
    font-size: 14px;
    font-weight: 700;
    color: #191B25;
    line-height: 1.15;
}

.paywall-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 42px;
}

.paywall-bars span {
    width: 18px;
    border-radius: 4px;
}

.paywall-bars.red span {
    background: #FF4D4D;
}

.paywall-bars.green span {
    background: #4CB26F;
}

.paywall-bars span:nth-child(1) { height: 18px; opacity: 0.65; }
.paywall-bars span:nth-child(2) { height: 34px; opacity: 0.9; }
.paywall-bars span:nth-child(3) { height: 26px; opacity: 0.8; }

.paywall-headline {
    font-family: var(--font-space);
    font-size: 20px;
    font-weight: 700;
    margin: 8px 0 18px;
}

.paywall-plans {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.paywall-plan {
    position: relative;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 14px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.paywall-plan.selected {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(23,135,248,0.12);
}

.paywall-plan-left {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.paywall-plan-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.paywall-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.25);
    margin-top: 2px;
}

.paywall-plan.selected .paywall-radio {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    box-shadow: inset 0 0 0 4px #ffffff;
}

.paywall-plan-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-black);
}

.paywall-plan-right {
    text-align: right;
}

.paywall-plan-price {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.paywall-plan-price-old {
    font-size: 12px;
    font-weight: 700;
    color: rgba(25,27,37,0.55);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.paywall-plan-price-new {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-black);
}

.paywall-perday {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-black);
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.paywall-perday-value {
    font-size: 14px;
    font-weight: 800;
}

.paywall-perday-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-grey);
}

.paywall-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: var(--primary-blue);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 10px;
}

.paywall-cta {
    margin-top: 16px;
}

.paywall-features {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.paywall-features-title {
    font-size: 12px;
    font-weight: 800;
    color: #191B25;
    text-align: center;
    margin-top: 6px;
}

.paywall-features-image {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #ffffff;
}

.paywall-feature {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.paywall-feature-img {
    width: 100%;
    height: auto;
    display: block;
}

.paywall-feature-content {
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.paywall-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-black);
}

.paywall-feature-text {
    margin-top: 4px;
    font-size: 12px;
    color: var(--text-grey);
    line-height: 1.35;
}

.paywall-press {
    margin-top: 22px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.paywall-press-image {
    width: 100%;
    display: block;
}

.paywall-press-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-grey);
    letter-spacing: 0.6px;
}

.paywall-press-logos {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #191B25;
}

 
