/* Review Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Disclosure Banner - Moved to footer
.disclosure-banner {
    background: #fff3cd;
    border-bottom: 1px solid #ffc107;
    padding: 12px 0;
    font-size: 13px;
}

.disclosure-banner p {
    margin: 0;
    text-align: center;
    color: #856404;
}
*/

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #0a4a81;
}

.logo-accent {
    color: #04d36f;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #0a4a81;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f4faff 0%, #ffffff 100%);
    padding: 40px 0 60px;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #0a4a81;
    text-decoration: none;
}

.main-title {
    font-size: 42px;
    font-weight: 800;
    color: #081935;
    line-height: 1.2;
    margin-bottom: 25px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0a4a81;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 74, 129, 0.2);
    background: linear-gradient(135deg, #0a4a81 0%, #0d5fa3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.author-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
    font-size: 16px;
}

.author-credentials {
    font-size: 13px;
    color: #0a4a81;
    font-weight: 500;
    margin-bottom: 4px;
    font-style: italic;
}

.publish-date {
    font-size: 13px;
    color: #666;
}

.review-time {
    font-size: 14px;
    color: #666;
}

/* Rating Card */
.rating-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.rating-left {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.badge-item {
    background: #04d36f;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.review-count {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.special-offer-banner {
    background: linear-gradient(135deg, #fff9e6 0%, #ffecb3 100%);
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.offer-text {
    font-size: 14px;
    color: #856404;
    margin-bottom: 8px;
    font-weight: 500;
}

.guarantee-text {
    font-size: 14px;
    color: #155724;
    margin: 0;
    font-weight: 500;
}

.cta-subtext {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.stat-icon {
    font-size: 28px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info strong {
    font-size: 18px;
    color: #0a4a81;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-info span {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #155724;
}

.feature-icon {
    background: #04d36f;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.rating-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rating-right h2 {
    font-size: 32px;
    color: #081935;
    margin-bottom: 20px;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.rating-score {
    font-size: 64px;
    font-weight: 800;
    color: #0a4a81;
    line-height: 1;
}

.rating-stars {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #ffc107;
    font-size: 24px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.rating-breakdown {
    margin-bottom: 30px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-item span:first-child {
    flex: 0 0 150px;
    font-size: 14px;
    font-weight: 500;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #04d36f 0%, #02a859 100%);
    border-radius: 4px;
}

.rating-item span:last-child {
    flex: 0 0 50px;
    font-size: 14px;
    font-weight: 600;
    color: #0a4a81;
    text-align: right;
}

/* CTA Buttons */
.cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    padding: 16px 35px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF7A47 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.primary-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

/* Quick Summary */
.quick-summary {
    padding: 60px 0;
    background: #fff;
}

.summary-box {
    background: #f9f9f9;
    border-left: 4px solid #0a4a81;
    padding: 30px;
    border-radius: 8px;
}

.summary-box h2 {
    font-size: 28px;
    color: #081935;
    margin-bottom: 20px;
}

.summary-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.verdict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.verdict-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
}

.verdict-item.good {
    border-color: #04d36f;
}

.verdict-item.neutral {
    border-color: #ffc107;
}

.verdict-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #081935;
}

.verdict-item ul {
    list-style: none;
}

.verdict-item li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
}

/* Standout Section */
.standout-section {
    padding: 60px 0;
    background: #fff;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: #0a4a81;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.comparison-header .feature-col {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.comparison-header .product-col {
    padding: 20px;
    text-align: center;
}

.comparison-header .nervease {
    background: #04d36f;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

.comparison-row:nth-child(even) {
    background: #f9f9f9;
}

.comparison-row .feature-col {
    padding: 18px 20px;
    font-weight: 500;
    color: #333;
    border-right: 1px solid #e5e5e5;
}

.comparison-row .product-col {
    padding: 18px 20px;
    text-align: center;
    font-size: 14px;
}

.comparison-row .nervease {
    background: #f0fdf4;
    color: #155724;
    font-weight: 600;
}

.comparison-row .competitor {
    color: #666;
}

.comparison-cta {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 0;
}

.comparison-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

/* Pros and Cons */
.pros-cons-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f4faff 0%, #ffffff 100%);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #081935;
    text-align: center;
    margin-bottom: 40px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pros-box, .cons-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.pros-box {
    border-top: 4px solid #04d36f;
}

.cons-box {
    border-top: 4px solid #ff5722;
}

.pros-box h3, .cons-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.pros-box h3 {
    color: #04d36f;
}

.cons-box h3 {
    color: #ff5722;
}

.pros-box ul, .cons-box ul {
    list-style: none;
}

.pros-box li, .cons-box li {
    padding: 12px 0 12px 30px;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
}

.pros-box li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #04d36f;
    font-weight: bold;
    font-size: 18px;
}

.cons-box li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff5722;
    font-weight: bold;
    font-size: 18px;
}

/* Detailed Analysis */
.detailed-analysis {
    padding: 60px 0;
    background: #fff;
}

.analysis-content {
    max-width: 900px;
    margin: 0 auto;
}

.analysis-content h3 {
    font-size: 28px;
    color: #081935;
    margin: 40px 0 20px;
}

.analysis-content h3:first-child {
    margin-top: 0;
}

.analysis-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.info-box {
    background: #f4faff;
    border-left: 4px solid #0a4a81;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box h4 {
    font-size: 20px;
    color: #0a4a81;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.6;
}

.info-box strong {
    color: #081935;
}

.evidence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.evidence-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 25px;
    border-radius: 8px;
}

.evidence-item h4 {
    font-size: 20px;
    color: #081935;
    margin-bottom: 10px;
}

.evidence-level {
    font-size: 13px;
    margin-bottom: 12px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

.badge.good {
    background: #d4edda;
    color: #155724;
}

.badge.moderate {
    background: #fff3cd;
    color: #856404;
}

.evidence-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.warning-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.warning-box h4 {
    font-size: 18px;
    color: #856404;
    margin-bottom: 12px;
}

.warning-box p {
    font-size: 15px;
    color: #856404;
    margin: 0;
}

/* Ingredients Section */
.ingredients-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f4faff 0%, #ffffff 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.ingredient-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.ingredient-card h3 {
    font-size: 20px;
    color: #081935;
    margin-bottom: 8px;
}

.ingredient-purpose {
    font-size: 13px;
    color: #0a4a81;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.ingredient-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.dosage-info {
    font-size: 12px;
    color: #888;
    font-style: italic;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.safety-info {
    max-width: 900px;
    margin: 0 auto;
}

.safety-info h3 {
    font-size: 28px;
    color: #081935;
    margin-bottom: 20px;
}

.safety-info > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.safety-box {
    padding: 25px;
    border-radius: 8px;
    border: 2px solid;
}

.safety-box.green {
    background: #d4edda;
    border-color: #04d36f;
}

.safety-box.yellow {
    background: #fff3cd;
    border-color: #ffc107;
}

.safety-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.safety-box ul {
    list-style: none;
}

.safety-box li {
    padding: 8px 0;
    font-size: 15px;
}

/* User Reviews Section */
.user-reviews-section {
    padding: 60px 0;
    background: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: -20px;
    margin-bottom: 40px;
}

.reviews-summary {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
}

.summary-stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #0a4a81;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.reviews-distribution {
    max-width: 600px;
    margin: 0 auto 50px;
}

.reviews-distribution h3 {
    font-size: 24px;
    color: #081935;
    margin-bottom: 20px;
}

.distribution-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.star-label {
    flex: 0 0 50px;
    font-size: 14px;
    font-weight: 500;
}

.distribution-bar .bar {
    flex: 1;
    height: 20px;
    background: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
}

.distribution-bar .fill {
    height: 100%;
    background: #ffc107;
    border-radius: 10px;
}

.distribution-bar .percentage {
    flex: 0 0 50px;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.review-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info strong {
    font-size: 16px;
    color: #081935;
}

.verified {
    display: block;
    font-size: 12px;
    color: #04d36f;
    margin-top: 4px;
}

.review-rating {
    color: #ffc107;
    font-size: 18px;
}

.review-title {
    font-size: 16px;
    color: #081935;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.review-meta {
    font-size: 12px;
    color: #888;
}

/* ============================================
   PRICING SECTION - CLEAN PROFESSIONAL DESIGN  
   ============================================ */

/* Pricing Section Container */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

/* Pricing Intro */
.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-eyebrow {
    display: inline-block;
    background: #0a4a81;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

/* Pricing Cards - ALTURA UNIFORME */
.pricing-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    min-height: 700px;
}

.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.pricing-card.popular {
    border: 2px solid #0a4a81;
    box-shadow: 0 4px 20px rgba(10, 74, 129, 0.15);
}

.pricing-card.maximum-value {
    border: 2px solid #155724;
    box-shadow: 0 4px 20px rgba(21, 87, 36, 0.15);
}

/* Simple Badge - Top of Card */
.popular-ribbon,
.value-ribbon {
    background: #0a4a81;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.value-ribbon {
    background: #155724;
}

/* Pricing Header - ALTURA FIXA */
.pricing-header {
    padding: 30px 25px 20px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card.popular .pricing-header,
.pricing-card.maximum-value .pricing-header {
    padding-top: 15px;
    min-height: 85px;
}

.pricing-header h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 6px;
    font-weight: 700;
}

.supply-text {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Pricing Image - ALTURA FIXA */
.pricing-image {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-image img {
    max-width: 180px;
    max-height: 140px;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-image img {
    transform: scale(1.03);
}

/* Pricing Body - ALTURA FLEXÍVEL */
.pricing-body {
    padding: 30px 25px 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-container {
    position: relative;
    margin-bottom: 20px;
    min-height: 140px;
}

.old-price {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin: 8px 0;
}

.price.highlight {
    color: #0a4a81;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
}

.price-per-day {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
    font-weight: 400;
}

.savings-badge {
    display: inline-block;
    background: #10b981;
    color: #fff;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.savings-badge.premium {
    background: #059669;
}

.total-price {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Pricing Features - ALTURA FIXA */
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: auto;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    min-height: 150px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
}

.check-icon {
    background: #10b981;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Pricing Button - FIXO NO FINAL */
.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 40px);
    margin: 0 20px 15px;
    padding: 14px 24px;
    background: #0a4a81;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pricing-btn:hover {
    background: #083a66;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 74, 129, 0.3);
}

.btn-arrow {
    font-size: 16px;
    transition: transform 0.3s;
}

.pricing-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.pricing-btn.primary {
    background: #FF6B35;
}

.pricing-btn.primary:hover {
    background: #FF5722;
}

/* Stock Status */
.stock-status {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.stock-status.selling-fast {
    color: #dc2626;
}

/* Pricing Footer */
.pricing-footer {
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
}

.trust-icon {
    font-size: 20px;
}

/* Guarantee Box - Clean Design */
.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    background: #f0fdf4;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #10b981;
    text-align: center;
}

.guarantee-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.guarantee-box h3 {
    font-size: 24px;
    color: #166534;
    margin-bottom: 15px;
    font-weight: 700;
}

.guarantee-box p {
    font-size: 15px;
    color: #166534;
    line-height: 1.7;
    margin-bottom: 20px;
}

.value-analysis {
    max-width: 800px;
    margin: 0 auto;
}

.value-analysis h3 {
    font-size: 24px;
    color: #081935;
    margin-bottom: 15px;
}

.value-analysis p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #fff;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #0a4a81;
}

.faq-question {
    font-size: 18px;
    color: #081935;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* Methodology Section */
.methodology-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f4faff 0%, #ffffff 100%);
}

.methodology-content {
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-content > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.method-item {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.method-item h3 {
    font-size: 16px;
    color: #081935;
    margin-bottom: 12px;
}

.method-item p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

.transparency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 30px;
    border-radius: 12px;
}

.transparency-box h3 {
    font-size: 20px;
    color: #856404;
    margin-bottom: 15px;
}

.transparency-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #856404;
    margin: 0;
}

/* Verdict Section */
.verdict-section {
    padding: 60px 0;
    background: #fff;
}

.verdict-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.verdict-score {
    flex: 0 0 200px;
}

.score-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a4a81 0%, #0d5fa3 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(10, 74, 129, 0.3);
}

.score-number {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.score-label {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-top: 8px;
}

.verdict-text {
    flex: 1;
}

.verdict-text h3 {
    font-size: 28px;
    color: #081935;
    margin-bottom: 20px;
}

.verdict-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.recommendation-box {
    background: #d4edda;
    border-left: 4px solid #04d36f;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.recommendation-box h4 {
    font-size: 18px;
    color: #155724;
    margin-bottom: 15px;
}

.recommendation-box ul {
    list-style: none;
}

.recommendation-box li {
    padding: 8px 0;
    font-size: 15px;
    color: #155724;
    line-height: 1.6;
}

.final-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #FF7A47 0%, #FF6B35 100%);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #ff5722;
}

.disclaimer-box h3 {
    font-size: 22px;
    color: #d32f2f;
    margin-bottom: 20px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #081935;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col h4 span {
    color: #04d36f;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #04d36f;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 8px 0;
}

.disclosure-text {
    font-size: 11px !important;
    color: rgba(255,255,255,0.4) !important;
    font-style: italic;
    margin-top: 15px !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sticky Floating CTA */
/* Sticky Footer CTA - Simplified */
.sticky-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #04d36f;
    margin: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.sticky-footer-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sticky-cta-info strong {
    font-size: 18px;
    color: #081935;
    font-weight: 700;
}

.sticky-offer {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.sticky-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
}

.sticky-cta-button:hover {
    background: linear-gradient(135deg, #FF7A47 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Animate pulse effect for attention */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6);
    }
}

.sticky-footer-cta.visible .sticky-cta-button {
    animation: pulse-glow 2s infinite;
}
    font-size: 13px;
    font-weight: 600;
    color: #0a4a81;
}

.sticky-offer {
    font-size: 12px;
    color: #ff5722;
    font-weight: 600;
    margin: 0;
}

.sticky-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.sticky-cta-text {
    font-size: 13px;
    color: #155724;
    font-weight: 600;
    margin: 0;
}

.sticky-cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
}

.sticky-cta-button:hover {
    background: linear-gradient(135deg, #FF7A47 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Pulse animation for sticky CTA */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6);
    }
}

.sticky-cta-button {
    animation: pulse-glow 2s infinite;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .rating-card {
        flex-direction: column;
        padding: 30px;
    }
    
    .rating-left {
        flex: auto;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-header,
    .comparison-row {
        font-size: 14px;
    }
    
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets Portrait */
@media (max-width: 900px) {
    .rating-card {
        padding: 25px;
    }
    
    .special-offer-banner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .main-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    /* Rating Card - Responsive */
    .rating-card {
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
    }
    
    .rating-left {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .rating-right {
        width: 100%;
    }
    
    .rating-right h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .overall-rating {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .rating-item {
        font-size: 13px;
    }
    
    .rating-bar {
        min-width: 120px;
    }
    
    .special-offer-banner {
        padding: 12px;
    }
    
    .offer-text,
    .guarantee-text {
        font-size: 13px;
    }
    
    /* CTA Button - Responsive */
    .cta-button {
        max-width: 100%;
        margin: 15px 0;
        font-size: 15px;
        padding: 14px 28px;
    }
    
    .cta-subtext {
        font-size: 11px;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 15px;
    }
    
    .sticky-cta-left {
        width: 100%;
    }
    
    .sticky-product-info {
        justify-content: center;
    }
    
    .sticky-product-img {
        width: 50px;
    }
    
    .sticky-product-details h4 {
        font-size: 16px;
    }
    
    .sticky-cta-right {
        width: 100%;
        align-items: center;
    }
    
    .sticky-cta-text {
        font-size: 12px;
        text-align: center;
    }
    
    .sticky-cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    
    .stat-badge {
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 6px;
    }
    
    .badge-item {
        width: 100%;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
    }
    
    .verdict-grid,
    .pros-cons-grid,
    .evidence-grid,
    .safety-grid,
    .review-cards,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .verdict-content {
        flex-direction: column;
    }
    
    .verdict-score {
        flex: auto;
        display: flex;
        justify-content: center;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .summary-box {
        padding: 20px;
    }
    
    .pros-box, .cons-box {
        padding: 25px 20px;
    }
    
    .rating-card {
        padding: 25px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .disclosure-banner p {
        font-size: 11px;
        padding: 0 5px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .main-title {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .rating-card {
        padding: 15px;
    }
    
    .rating-score {
        font-size: 52px;
    }
    
    .rating-right h2 {
        font-size: 26px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        border: 2px solid #0a4a81;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-credentials {
        font-size: 11px;
    }
    
    .publish-date {
        font-size: 11px;
    }
    
    .review-time {
        font-size: 12px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 14px 25px;
    }
    
    .special-offer-banner {
        padding: 10px;
    }
    
    .offer-text,
    .guarantee-text {
        font-size: 12px;
    }
    
    .sticky-product-img {
        width: 40px;
    }
    
    .sticky-product-details h4 {
        font-size: 13px;
    }
    
    .sticky-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .sticky-stars {
        font-size: 11px;
    }
    
    .sticky-score {
        font-size: 10px;
    }
    
    .sticky-offer {
        font-size: 10px;
    }
    
    .sticky-cta-button {
        font-size: 13px;
        padding: 11px 18px;
    }
    
    .sticky-cta-text {
        font-size: 11px;
    }
    
    .quick-stats {
        padding: 12px;
        gap: 10px;
    }
    
    .stat-badge {
        padding: 12px;
    }
    
    .stat-icon {
        font-size: 24px;
    }
    
    .stat-info strong {
        font-size: 16px;
    }
    
    .stat-info span {
        font-size: 10px;
    }
    
    .summary-box {
        padding: 15px;
    }
    
    .summary-box h2 {
        font-size: 22px;
    }
    
    .summary-box p {
        font-size: 15px;
    }
    
    .verdict-item h4 {
        font-size: 16px;
    }
    
    .verdict-item li {
        font-size: 14px;
    }
    
    .pros-box, .cons-box {
        padding: 20px 15px;
    }
    
    .pros-box h3, .cons-box h3 {
        font-size: 20px;
    }
    
    .pros-box li, .cons-box li {
        font-size: 14px;
        padding: 10px 0 10px 25px;
    }
    
    .ingredient-card {
        padding: 20px 15px;
    }
    
    .ingredient-icon {
        font-size: 36px;
    }
    
    .ingredient-card h3 {
        font-size: 18px;
    }
    
    .review-card {
        padding: 18px;
    }
    
    .review-title {
        font-size: 15px;
    }
    
    .review-text {
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 0;
    }
    
    .pricing-header {
        padding: 20px 15px 15px;
    }
    
    .pricing-header h3 {
        font-size: 20px;
    }
    
    .pricing-image {
        padding: 20px 15px;
    }
    
    .pricing-image img {
        max-width: 180px;
    }
    
    .pricing-body {
        padding: 20px 15px;
    }
    
    .price {
        font-size: 40px;
    }
    
    .pricing-features li {
        font-size: 14px;
    }
    
    .pricing-btn {
        font-size: 16px;
        padding: 13px 25px;
    }
    
    .guarantee-box {
        padding: 20px 15px;
    }
    
    .guarantee-box h3 {
        font-size: 20px;
    }
    
    .faq-item {
        padding: 18px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .method-item {
        padding: 20px 15px;
    }
    
    .score-circle {
        width: 140px;
        height: 140px;
    }
    
    .score-number {
        font-size: 48px;
    }
    
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.2fr 1fr 1fr;
        font-size: 12px;
        min-width: 500px;
    }
    
    .comparison-header .feature-col,
    .comparison-row .feature-col {
        padding: 10px 8px;
    }
    
    .comparison-header .product-col,
    .comparison-row .product-col {
        padding: 10px 6px;
        font-size: 11px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
    
    .footer-col p,
    .footer-col a {
        font-size: 13px;
    }
    
    /* Pricing Responsive - Mobile */
    .pricing-section {
        padding: 50px 0 !important;
    }
    
    .pricing-intro {
        margin-bottom: 40px !important;
    }
    
    .pricing-eyebrow {
        font-size: 12px !important;
        padding: 6px 16px !important;
    }
    
    .section-subtitle {
        font-size: 14px !important;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        display: grid !important;
    }
    
    .pricing-card {
        max-width: 100% !important;
        min-height: auto !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .pricing-card:last-child {
        grid-column: auto !important;
        max-width: 100% !important;
    }
    
    .pricing-card.popular,
    .pricing-card.maximum-value {
        border-width: 2px !important;
        transform: scale(1) !important;
    }
    
    .pricing-header {
        padding: 25px 20px 15px !important;
        min-height: auto !important;
    }
    
    .pricing-card.popular .pricing-header,
    .pricing-card.maximum-value .pricing-header {
        padding-top: 15px !important;
        min-height: auto !important;
    }
    
    .pricing-header h3 {
        font-size: 20px !important;
    }
    
    .supply-text {
        font-size: 13px !important;
    }
    
    .pricing-image {
        padding: 25px 15px !important;
        min-height: 180px !important;
        max-height: none !important;
    }
    
    .pricing-image img {
        max-width: 160px !important;
        max-height: 120px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .pricing-body {
        padding: 25px 20px 20px !important;
    }
    
    .price-container {
        min-height: auto !important;
        margin-bottom: 18px !important;
    }
    
    .price {
        font-size: 42px !important;
    }
    
    .price span {
        font-size: 15px !important;
    }
    
    .old-price {
        font-size: 15px !important;
    }
    
    .price-per-day {
        font-size: 12px !important;
    }
    
    .savings-badge {
        font-size: 12px !important;
        padding: 4px 12px !important;
    }
    
    .total-price {
        font-size: 14px !important;
        margin-bottom: 18px !important;
    }
    
    .pricing-features {
        padding: 18px 0;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .pricing-features li {
        font-size: 13px;
        padding: 7px 0;
    }
    
    .check-icon {
        width: 17px;
        height: 17px;
        font-size: 10px;
    }
    
    .pricing-btn {
        font-size: 14px;
        padding: 13px 20px;
        margin-bottom: 12px;
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .btn-arrow {
        font-size: 15px;
    }
    
    .stock-status {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .trust-indicators {
        gap: 20px;
        padding: 20px 15px;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .trust-item {
        font-size: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .trust-icon {
        font-size: 24px;
    }
    
    .guarantee-box {
        padding: 30px 20px;
    }
    
    .guarantee-icon {
        font-size: 42px;
        margin-bottom: 12px;
    }
    
    .guarantee-box h3 {
        font-size: 21px;
        margin-bottom: 12px;
    }
    
    .guarantee-box p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }
    
    .guarantee-feature {
        font-size: 13px;
        padding: 10px 15px;
    }
}

/* Pricing Responsive - Tablet */
@media (max-width: 900px) and (min-width: 481px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card {
        min-height: 650px;
    }
    
    .pricing-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-image {
        min-height: 190px;
    }
    
    .pricing-image img {
        max-width: 170px;
        max-height: 130px;
    }
    
    .trust-indicators {
        gap: 30px;
    }
}

/* Pricing Responsive - Large Tablet */
@media (max-width: 1024px) and (min-width: 901px) {
    .pricing-section {
        padding: 70px 0;
    }
    
    .pricing-grid {
        gap: 25px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .pricing-card {
        max-width: 100%;
        min-height: 680px;
    }
    
    .pricing-header h3 {
        font-size: 21px;
    }
    
    .price {
        font-size: 45px;
    }
    
    .pricing-image img {
        max-width: 170px;
    }
}

/* Pricing Responsive - Small Mobile */
@media (max-width: 360px) {
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-intro {
        margin-bottom: 30px;
    }
    
    .pricing-grid {
        gap: 20px;
    }
    
    .pricing-header {
        padding: 20px 15px 12px;
    }
    
    .pricing-header h3 {
        font-size: 19px;
    }
    
    .pricing-image {
        padding: 20px 10px;
        min-height: 160px;
    }
    
    .pricing-image img {
        max-width: 140px;
        max-height: 110px;
    }
    
    .pricing-body {
        padding: 20px 15px 15px;
    }
    
    .price {
        font-size: 38px;
    }
    
    .price span {
        font-size: 14px;
    }
    
    .pricing-btn {
        font-size: 13px;
        padding: 12px 18px;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .guarantee-box {
        padding: 25px 15px;
    }
    
    .guarantee-box h3 {
        font-size: 19px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-item {
        width: 100%;
    }
}

