.elementor-2323 .elementor-element.elementor-element-517d189{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3838ae2 *//* Gamma Review 2025 - Premium Article Styles */

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

/* CSS Variables for Consistent Design */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --background-white: #ffffff;
    --background-light: #f8fafc;
    --background-alt: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Base Styles */
.gamma-review-article {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gamma-review-article * {
    box-sizing: border-box;
}

/* Typography */
.gamma-review-article h1,
.gamma-review-article h2,
.gamma-review-article h3,
.gamma-review-article h4,
.gamma-review-article h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-top: 0;
}

.gamma-review-article h1 { font-size: 48px; }
.gamma-review-article h2 { font-size: 36px; margin-bottom: 24px; }
.gamma-review-article h3 { font-size: 28px; margin-bottom: 20px; }
.gamma-review-article h4 { font-size: 22px; margin-bottom: 16px; }

.gamma-review-article p {
    margin-bottom: 20px;
}

.gamma-review-article a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.gamma-review-article a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Hero Section */
.article-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 24px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.4;
}

.hero-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    opacity: 0.9;
}

.meta-item svg {
    width: 16px;
    height: 16px;
}

.hero-image-container {
    position: relative;
    margin: 0 -40px -80px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

/* Quick Overview */
.quick-overview {
    margin-bottom: 80px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.overview-card {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.overview-card.highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: var(--primary-color);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.overview-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.overview-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 16px;
}

/* Table of Contents */
.table-of-contents {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 60px;
}

.table-of-contents h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.table-of-contents ol {
    margin: 0;
    padding-left: 24px;
}

.table-of-contents li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.table-of-contents a {
    color: var(--text-secondary);
    font-weight: 500;
}

.table-of-contents a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Content Sections */
.content-section {
    margin-bottom: 80px;
}

.content-section.alt-background {
    background: var(--background-light);
    padding: 60px 40px;
    border-radius: 24px;
    margin-left: -40px;
    margin-right: -40px;
}

/* Article Introduction */
.article-intro {
    margin-bottom: 60px;
}

.lead-paragraph {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 32px;
    margin: 32px 0;
}

.highlight-box h3 {
    color: #92400e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-box ul {
    margin: 0;
    padding-left: 24px;
}

.highlight-box li {
    color: #78350f;
    margin-bottom: 12px;
}

/* Feature Showcase */
.feature-showcase {
    display: grid;
    gap: 48px;
}

.showcase-item {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.showcase-item.major {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.showcase-item.highlight {
    border-color: var(--warning-color);
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.showcase-header {
    padding: 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-light);
    opacity: 0.3;
}

.showcase-header h3 {
    flex: 1;
    margin: 0;
}

.feature-badge {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-badge.new {
    background: var(--accent-color);
    color: white;
}

.feature-badge.pro {
    background: var(--secondary-color);
    color: white;
}

.feature-badge.exclusive {
    background: var(--warning-color);
    color: white;
}

.feature-badge.enhanced {
    background: var(--primary-color);
    color: white;
}

.showcase-content {
    padding: 32px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.capability {
    background: var(--background-light);
    padding: 24px;
    border-radius: 12px;
}

.capability h4 {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.capability p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

.real-impact {
    background: #dcfce7;
    border: 1px solid #86efac;
    padding: 20px;
    border-radius: 8px;
    color: #166534;
    margin-top: 24px;
}

/* Animation Types */
.animation-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.animation-card {
    text-align: center;
    padding: 24px;
    background: var(--background-light);
    border-radius: 12px;
    transition: var(--transition);
}

.animation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.animation-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.animation-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.animation-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.feature-quote {
    font-style: italic;
    font-size: 20px;
    color: var(--primary-dark);
    text-align: center;
    margin: 32px 0;
    padding: 24px;
    border-left: 4px solid var(--secondary-color);
    background: rgba(139, 92, 246, 0.05);
}

/* OpenAI Features */
.openai-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.openai-card {
    background: var(--background-white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.openai-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.openai-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 32px;
}

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

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

/* Persona Grid */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.persona-card {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.persona-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.persona-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.persona-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.time-saved {
    background: var(--background-light);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-block;
}

/* Features Tabs */
.features-tabs {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: var(--background-light);
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.feature-detail h4 {
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.feature-detail ul {
    margin-bottom: 24px;
}

.feature-detail li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.compatibility-note {
    background: #f0fdf4;
    border: 1px solid #86efac;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

/* Getting Started Grid */
.getting-started-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step-card {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-card h3 {
    margin-top: 12px;
}

.limitation-note {
    background: #fef3c7;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #92400e;
    margin-top: 16px;
}

/* Test Cases */
.test-case {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.test-header {
    background: var(--background-light);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.test-header h3 {
    margin: 0;
    font-size: 24px;
}

.test-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

.test-content {
    padding: 32px;
}

.prompt-box {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
}

.prompt-box h5 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.prompt-box p {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.result-metric {
    text-align: center;
    padding: 20px;
    background: var(--background-light);
    border-radius: 8px;
}

.metric-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.test-verdict {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}

.test-verdict h4 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.test-highlights h4 {
    margin-bottom: 16px;
}

.test-highlights ul {
    margin: 0;
    padding-left: 24px;
}

.test-highlights li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

/* Workflow Section */
.workflow-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 32px;
}

.workflow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 32px;
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.workflow-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.workflow-step p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

.workflow-arrow {
    font-size: 32px;
    color: var(--primary-light);
    font-weight: 700;
    margin: 0 -16px;
}

.workflow-result {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border: 2px solid #86efac;
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
}

.workflow-result h4 {
    font-size: 28px;
    color: #166534;
    margin-bottom: 12px;
}

.workflow-result p {
    color: #15803d;
    font-size: 18px;
    margin: 0;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-header h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.price span {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
}

.annual-price {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.plan-features h4 {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.plan-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.plan-verdict {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-secondary);
}

/* Pricing Calculator */
.pricing-calculator {
    background: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
}

.pricing-calculator h3 {
    margin-bottom: 20px;
}

.roi-calculation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.calc-item {
    background: var(--background-white);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.calc-item span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.calc-item strong {
    display: block;
    font-size: 28px;
    color: var(--primary-color);
}

.calc-item.highlight {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border-color: #86efac;
}

.calc-item.highlight strong {
    color: #166534;
}

/* Affiliate Section */
.affiliate-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 24px;
    padding: 48px;
    margin: 60px 0;
    text-align: center;
}

.affiliate-content h2 {
    color: #166534;
    margin-bottom: 16px;
}

.affiliate-content p {
    color: #15803d;
    font-size: 20px;
    margin-bottom: 24px;
}

.affiliate-link {
    color: #166534;
    font-weight: 700;
    font-size: 18px;
    border-bottom: 2px solid #86efac;
}

.affiliate-link:hover {
    border-color: #166534;
}

/* Verdict Section */
.verdict-summary {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.verdict-score {
    text-align: center;
    flex-shrink: 0;
}

.score-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.score-label {
    font-size: 18px;
    color: var(--text-secondary);
}

.verdict-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.verdict-text p {
    font-size: 20px;
    color: var(--text-secondary);
    margin: 0;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.pros h3,
.cons h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pros h3 {
    color: var(--accent-color);
}

.cons h3 {
    color: var(--warning-color);
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cons li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: 700;
    font-size: 20px;
}

.bottom-line {
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 32px;
    border-radius: 8px;
}

.bottom-line h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.bottom-line p {
    margin-bottom: 16px;
}

.bottom-line p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.article-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    color: white;
    padding: 64px;
    border-radius: 24px;
    text-align: center;
    margin: 80px 0;
}

.article-cta h2 {
    color: white;
    font-size: 40px;
    margin-bottom: 16px;
}

.article-cta p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: white;
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-primary);
    text-decoration: none;
}

.cta-note {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 24px;
}

/* FAQ Section */
.faq-section {
    background: var(--background-light);
    padding: 60px 40px;
    border-radius: 24px;
    margin: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.faq-item {
    background: var(--background-white);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Article Footer */
.article-footer {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.footer-meta p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gamma-review-article {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .article-hero {
        padding: 40px 24px;
    }
    
    .hero-image-container {
        margin: 0 -24px -40px;
    }
    
    .content-section.alt-background {
        margin-left: -24px;
        margin-right: -24px;
        padding: 40px 24px;
    }
    
    .overview-grid,
    .persona-grid,
    .features-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-steps {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: -16px 0;
    }
    
    .animation-types {
        grid-template-columns: 1fr;
    }
    
    .openai-features {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .verdict-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        border-bottom: 1px solid var(--border-color);
    }
    
    .tab-button:last-child {
        border-bottom: none;
    }
    
    .tab-button.active::after {
        display: none;
    }
    
    .article-cta {
        padding: 40px 24px;
    }
    
    .article-cta h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Tab Functionality */
.tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Print Styles */
@media print {
    .gamma-review-article {
        color: black;
        font-size: 12pt;
    }
    
    .article-hero {
        background: none;
        color: black;
        border: 1px solid black;
    }
    
    .hero-image-container,
    .cta-buttons,
    .article-cta {
        display: none;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* JavaScript Tab Script - Add to page */
<script>
document.addEventListener('DOMContentLoaded', function() {
    const tabButtons = document.querySelectorAll('.tab-button');
    const tabPanes = document.querySelectorAll('.tab-pane');
    
    tabButtons.forEach(button => {
        button.addEventListener('click', function() {
            const targetTab = this.getAttribute('data-tab');
            
            tabButtons.forEach(btn => btn.classList.remove('active'));
            tabPanes.forEach(pane => pane.classList.remove('active'));
            
            this.classList.add('active');
            document.getElementById(targetTab).classList.add('active');
        });
    });
});
</script>/* End custom CSS */
/* Start custom CSS *//* ==========================================================================
   V10 WRAPPER OVERRIDES (was at top of V9.1 — preserved)
   ========================================================================== */
.mp1-wrapper {
    --mp1-brand: #4f46e5;
    --mp1-brand-dark: #4338ca;
    --sanebox-color: #4f46e5;
    --cleanemail-color: #059669;
}

.mp1-wrapper .mp1-cta-btn {
    background: #4f46e5;
    color: #ffffff !important;
}

.mp1-wrapper .mp1-cta-btn:hover {
    background: #4338ca;
    color: #ffffff !important;
}

.mp1-wrapper .mp1-cta-btn.cleanemail {
    background: #059669;
}

.mp1-wrapper .mp1-cta-btn.cleanemail:hover {
    background: #047857;
}

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
    /* --- CORE PALETTE --- */
    --mp1-ink: #0f172a;
    --mp1-text: #334155;
    --mp1-subtle: #64748b;
    
    /* --- BRANDING --- */
    --mp1-brand: #4f46e5;
    --mp1-brand-dark: #4338ca;
    --mp1-brand-soft: #e0e7ff;
    --mp1-brand-glow: rgba(79, 70, 229, 0.15);
    
    /* --- FUNCTIONAL --- */
    --mp1-success: #10b981;
    --mp1-success-bg: #dcfce7;
    --mp1-success-text: #166534;
    
    --mp1-danger: #ef4444;
    --mp1-danger-bg: #fee2e2;
    --mp1-danger-text: #991b1b;

    --mp1-warning: #f59e0b;
    --mp1-warning-bg: #fffbeb;
    --mp1-warning-border: #fcd34d;
    --mp1-warning-text: #92400e;

    /* --- UI SURFACES --- */
    --mp1-canvas: #ffffff;
    --mp1-surface: #f8fafc;
    --mp1-border: #e2e8f0;

    /* --- METRICS --- */
    --mp1-radius-sm: 8px;
    --mp1-radius-lg: 12px;
    --mp1-radius-xl: 20px;
    
    /* --- SHADOWS --- */
    --mp1-shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --mp1-shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --mp1-shadow-royal: 0 20px 40px -5px rgba(79, 70, 229, 0.15), 0 10px 20px -5px rgba(79, 70, 229, 0.1);
    --mp1-shadow-pop: 0 4px 20px rgba(0,0,0,0.06);
    
    /* --- TYPOGRAPHY --- */
    --mp1-font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --mp1-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* --- TOOL-SPECIFIC COLORS --- */
    --sanebox-color: #2563eb;
    --cleanemail-color: #059669;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
.mp1-wrapper * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

.mp1-wrapper { 
    background-color: var(--mp1-canvas); 
    font-family: var(--mp1-font-body); 
    color: var(--mp1-text); 
    line-height: 1.7; 
    font-size: 18px; 
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

.mp1-wrapper a { 
    text-decoration: none; 
    color: var(--mp1-brand); 
    font-weight: 600; 
    transition: all 0.2s; 
}

.mp1-wrapper a:hover { 
    color: var(--mp1-brand-dark); 
}

/* ==========================================================================
   V10: GLOBAL IMAGE SAFETY NET
   Prevents the `width: auto` anti-pattern — the #1 cause of image CLS.
   With HTML width/height attributes present on every <img>, this pattern
   allows the browser to reserve correct space before image loads.
   ========================================================================== */
.mp1-wrapper img {
    max-width: 100%;
    height: auto;
    /* CRITICAL: no `width: auto` anywhere on img elements */
}

/* ==========================================================================
   AFFILIATE DISCLOSURE
   ========================================================================== */
.mp1-disclosure {
    background: var(--mp1-surface);
    border-bottom: 1px solid var(--mp1-border);
    padding: 10px 20px;
    font-size: 0.8rem;
    color: var(--mp1-subtle);
    text-align: center;
}

.mp1-disclosure a { 
    font-weight: 500; 
}

/* ==========================================================================
   HERO SECTION
   V10: Flex container guarantees centering of figure regardless of
   any theme/Elementor styles that might interfere with margin: auto
   ========================================================================== */
.mp1-hero { 
    position: relative; 
    background: linear-gradient(180deg, #f8fafc 0%, rgba(255,255,255,0) 100%); 
    border-bottom: 1px solid var(--mp1-border); 
    padding: 60px 20px 50px 20px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mp1-hero-container { 
    width: 100%;
    max-width: 840px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 1; 
}

/* Category Pill */
.mp1-pill { 
    display: inline-flex; 
    align-items: center; 
    background: var(--mp1-brand); 
    color: #ffffff !important;
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    padding: 6px 14px; 
    border-radius: 100px; 
    margin-bottom: 24px; 
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3); 
}

.mp1-pill:hover {
    color: #ffffff !important;
}

.mp1-title { 
    font-family: var(--mp1-font-display); 
    font-size: clamp(2rem, 5vw, 3rem); 
    font-weight: 800; 
    color: var(--mp1-ink); 
    line-height: 1.15; 
    letter-spacing: -0.02em; 
    margin-bottom: 20px; 
}

.mp1-subtitle { 
    font-size: 1.1rem; 
    color: var(--mp1-subtle); 
    margin-bottom: 28px; 
    line-height: 1.6; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
}

.mp1-meta-row { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    font-size: 0.85rem; 
    color: var(--mp1-subtle); 
    flex-wrap: wrap; 
    align-items: center; 
}

/* ==========================================================================
   LAYOUT GRID
   ========================================================================== */
.mp1-layout { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 50px 20px; 
    display: grid; 
    grid-template-columns: 1fr 320px; 
    gap: 50px; 
    align-items: start; 
}

/* ==========================================================================
   CONTENT TYPOGRAPHY
   ========================================================================== */
.mp1-content h2 { 
    font-family: var(--mp1-font-display); 
    font-size: 1.75rem; 
    color: var(--mp1-ink); 
    font-weight: 700; 
    margin: 50px 0 20px 0; 
    letter-spacing: -0.02em; 
    scroll-margin-top: 100px; 
}

.mp1-content h2:first-of-type { 
    margin-top: 0; 
}

.mp1-content h3 { 
    font-size: 1.35rem; 
    color: var(--mp1-ink); 
    font-weight: 600; 
    margin: 35px 0 14px 0; 
    scroll-margin-top: 100px; 
}

.mp1-content h4 {
    font-size: 1.1rem; 
    color: var(--mp1-ink);
    font-weight: 600; 
    margin: 25px 0 12px 0;
}

.mp1-content p { 
    margin-bottom: 20px; 
}

.mp1-content ul, 
.mp1-content ol { 
    margin-bottom: 20px; 
    padding-left: 24px; 
}

.mp1-content li { 
    margin-bottom: 8px; 
    color: var(--mp1-text); 
}

.mp1-content strong { 
    color: var(--mp1-ink); 
}

/* ==========================================================================
   IMAGES & FIGURES
   V10: Aspect-ratio reservation on container prevents CLS even if browser
   hasn't yet parsed HTML width/height attributes. Belt + suspenders.
   ========================================================================== */
.mp1-figure { 
    margin: 32px 0; 
    cursor: zoom-in; 
    position: relative; 
    border-radius: var(--mp1-radius-lg); 
    overflow: hidden; 
    box-shadow: var(--mp1-shadow-card); 
    border: 1px solid var(--mp1-border); 
    transition: transform 0.2s, border-color 0.2s;
    /* V10: Reserve space for 16:9 content images before load */
    aspect-ratio: 16 / 9;
    background: var(--mp1-surface);
}

.mp1-figure:hover { 
    border-color: var(--mp1-brand-soft); 
}

.mp1-figure img { 
    display: block; 
    width: 100%; 
    height: 100%;           /* V10: fill container exactly */
    object-fit: cover;      /* V10: crop to container aspect-ratio */
    background: var(--mp1-surface); 
}

/* V10: Hero Image — aspect-ratio approach replaces width:auto anti-pattern.
   Higher specificity (.mp1-wrapper prefix) + explicit width: 100% ensures
   reliable centering inside Elementor's HTML widget wrapper. */
.mp1-wrapper .mp1-hero .mp1-figure {
    display: block;
    aspect-ratio: 1200 / 675; /* Adjust if your hero is a different ratio */
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    margin-bottom: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    overflow: visible;
    cursor: zoom-in;
    position: relative;
}

.mp1-wrapper .mp1-hero .mp1-figure img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    border-radius: var(--mp1-radius-lg);
    box-shadow: var(--mp1-shadow-card);
    border: 1px solid var(--mp1-border);
    object-fit: cover;
    background: var(--mp1-surface);
}

.mp1-zoom-icon { 
    position: absolute; 
    top: 12px; 
    right: 12px; 
    background: rgba(0,0,0,0.6); 
    color: white; 
    padding: 6px; 
    border-radius: 6px; 
    pointer-events: none; 
    opacity: 0; 
    transition: opacity 0.2s;
    z-index: 2;
}

.mp1-figure:hover .mp1-zoom-icon { 
    opacity: 1; 
}

/* ==========================================================================
   V10: ADSENSE SLOT SPACE RESERVATION
   Per Google Publisher Tag 2025 guidance, fluid ads ALWAYS cause some
   shift by design — but we minimize it by reserving the most common
   creative height on mobile (250px) and desktop (90px leaderboard).
   
   Important:
   - Uses min-height (not height) so container can expand for taller ads
   - Never collapse via JS on no-fill — creates reverse CLS shift
   - Background is kept subtle so no-fill blank space is unobtrusive
   ========================================================================== */
.mp1-wrapper .mp1-ad-slot {
    display: block;
    width: 100%;
    margin: 32px 0;
    text-align: center;
    min-height: 250px; /* Mobile default: 300x250 is dominant creative */
    background: var(--mp1-surface);
    border-radius: var(--mp1-radius-sm);
    overflow: hidden;
    position: relative;
}

.mp1-wrapper .mp1-ad-slot .adsbygoogle {
    display: block;
    width: 100%;
    min-height: inherit;
}

/* V10: Desktop in-article — 728x90 leaderboard is the dominant creative */
@media (min-width: 768px) {
    .mp1-wrapper .mp1-ad-slot.mp1-ad-in-article {
        min-height: 90px;
    }
}

/* V10: Sidebar ad — 300x250 rectangle is standard */
.mp1-wrapper .mp1-sidebar .mp1-ad-slot,
.mp1-wrapper .mp1-ad-slot.mp1-ad-sidebar {
    min-height: 250px;
}

/* V10: Legacy class compatibility — if old AdSense blocks use the
   previous wrapper class, they get the same treatment */
.mp1-wrapper .tool-review-oct25-adsense-card {
    display: block;
    width: 100%;
    margin: 32px 0;
    text-align: center;
    min-height: 250px;
    background: var(--mp1-surface);
    border-radius: var(--mp1-radius-sm);
    overflow: hidden;
}

@media (min-width: 768px) {
    .mp1-wrapper .tool-review-oct25-adsense-card {
        min-height: 90px;
    }
}

.mp1-wrapper .tool-review-oct25-adsense-card .adsbygoogle {
    display: block;
    width: 100%;
    min-height: inherit;
}

/* ==========================================================================
   VERDICT / TLDR CARD
   ========================================================================== */
.mp1-verdict-card { 
    background: linear-gradient(135deg, #ffffff 0%, #f0f5ff 100%); 
    border: 1px solid #e0e7ff; 
    border-radius: var(--mp1-radius-xl); 
    padding: 32px; 
    margin-bottom: 40px; 
    box-shadow: var(--mp1-shadow-royal); 
    position: relative; 
    overflow: hidden; 
}

.mp1-verdict-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 5px; 
    background: linear-gradient(90deg, var(--sanebox-color), var(--cleanemail-color)); 
}

.mp1-verdict-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mp1-ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp1-verdict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.mp1-verdict-item {
    background: white;
    border-radius: var(--mp1-radius-sm);
    padding: 16px;
    border: 1px solid var(--mp1-border);
}

.mp1-verdict-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mp1-verdict-item.sanebox h4 { 
    color: var(--sanebox-color); 
}

.mp1-verdict-item.cleanemail h4 { 
    color: var(--cleanemail-color); 
}

.mp1-verdict-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--mp1-text);
    line-height: 1.5;
}

/* Mini Table in Verdict */
.mp1-mini-table {
    width: 100%;
    font-size: 0.9rem;
    border-collapse: collapse;
    margin-top: 16px;
}

.mp1-mini-table th {
    text-align: left;
    padding: 8px 12px;
    background: var(--mp1-surface);
    font-weight: 600;
    color: var(--mp1-subtle);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--mp1-border);
}

.mp1-mini-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--mp1-border);
    vertical-align: middle;
}

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

/* ==========================================================================
   CTA BUTTONS
   ========================================================================== */
@keyframes mp1-shine {
    0% { left: -100%; opacity: 0; }
    20% { left: 100%; opacity: 0.3; }
    100% { left: 100%; opacity: 0; }
}

.mp1-cta-btn { 
    display: inline-block; 
    background: var(--mp1-brand); 
    color: white !important; 
    text-align: center; 
    padding: 14px 28px; 
    border-radius: var(--mp1-radius-lg); 
    font-weight: 700; 
    font-size: 1rem; 
    transition: transform 0.2s, box-shadow 0.2s; 
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3); 
    position: relative; 
    overflow: hidden; 
}

.mp1-cta-btn::after {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: -100%; 
    width: 50%; 
    height: 100%; 
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); 
    transform: skewX(-20deg); 
    animation: mp1-shine 4s infinite; 
}

.mp1-cta-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4); 
    color: white !important;
}

.mp1-cta-btn.sanebox { 
    background: var(--sanebox-color); 
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); 
}

.mp1-cta-btn.sanebox:hover { 
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); 
}

.mp1-cta-btn.cleanemail { 
    background: var(--cleanemail-color); 
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3); 
}

.mp1-cta-btn.cleanemail:hover { 
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4); 
}

.mp1-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.mp1-cta-subtext {
    font-size: 0.8rem;
    color: var(--mp1-subtle);
    margin-top: 8px;
}

/* ==========================================================================
   TABLES
   ========================================================================== */
.mp1-table-wrapper { 
    overflow-x: auto; 
    margin: 28px 0; 
    padding: 4px; 
    background: transparent; 
}

.mp1-table { 
    width: 100%; 
    border-collapse: separate; 
    border-spacing: 0; 
    min-width: 600px; 
}

.mp1-table th { 
    text-align: left; 
    padding: 14px 16px; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    color: var(--mp1-subtle); 
    border-bottom: 1px solid var(--mp1-border); 
    background: var(--mp1-canvas); 
    font-weight: 700;
}

.mp1-table td { 
    padding: 14px 16px; 
    border-bottom: 1px solid var(--mp1-border); 
    font-size: 0.95rem; 
    vertical-align: middle; 
    background: var(--mp1-canvas); 
}

.mp1-table .mp1-col-sanebox {
    background: #eff6ff; 
    border-left: 1px solid #bfdbfe; 
    border-right: 1px solid #bfdbfe;
}

.mp1-table th.mp1-col-sanebox {
    border-top: 1px solid #bfdbfe;
    border-top-left-radius: 8px; 
    border-top-right-radius: 8px;
    color: var(--sanebox-color);
    background: #eff6ff;
}

.mp1-table tr:last-child td.mp1-col-sanebox {
    border-bottom: 1px solid #bfdbfe;
    border-bottom-left-radius: 8px; 
    border-bottom-right-radius: 8px;
}

.mp1-table .mp1-col-cleanemail {
    background: #ecfdf5;
    border-left: 1px solid #a7f3d0; 
    border-right: 1px solid #a7f3d0;
}

.mp1-table th.mp1-col-cleanemail {
    border-top: 1px solid #a7f3d0;
    border-top-left-radius: 8px; 
    border-top-right-radius: 8px;
    color: var(--cleanemail-color);
    background: #ecfdf5;
}

.mp1-table tr:last-child td.mp1-col-cleanemail {
    border-bottom: 1px solid #a7f3d0;
    border-bottom-left-radius: 8px; 
    border-bottom-right-radius: 8px;
}

/* ==========================================================================
   BADGES
   ========================================================================== */
.mp1-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 5px; 
    padding: 4px 10px; 
    border-radius: 100px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    line-height: 1; 
    white-space: nowrap; 
}

.mp1-badge-success { 
    background: var(--mp1-success-bg); 
    color: var(--mp1-success-text); 
}

.mp1-badge-danger { 
    background: var(--mp1-danger-bg); 
    color: var(--mp1-danger-text); 
}

.mp1-badge-neutral { 
    background: var(--mp1-surface); 
    color: var(--mp1-subtle); 
}

.mp1-badge-winner { 
    background: #fef3c7; 
    color: #92400e; 
}

/* ==========================================================================
   CALLOUTS
   ========================================================================== */
.mp1-callout { 
    padding: 20px; 
    border-radius: var(--mp1-radius-lg); 
    margin: 28px 0; 
    font-size: 0.95rem; 
    display: flex; 
    gap: 14px; 
    align-items: flex-start; 
}

.mp1-callout-icon { 
    flex-shrink: 0; 
    width: 22px; 
    height: 22px; 
    margin-top: 2px; 
}

.mp1-callout-tip { 
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%); 
    border: 1px solid #bfdbfe; 
    color: #1e3a8a; 
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.05); 
}

.mp1-callout-tip .mp1-callout-icon { 
    color: #2563eb; 
}

.mp1-callout-warning { 
    background: var(--mp1-warning-bg); 
    border-left: 4px solid var(--mp1-warning); 
    color: var(--mp1-warning-text); 
}

.mp1-callout-warning .mp1-callout-icon { 
    color: var(--mp1-warning); 
}

.mp1-callout-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
    border: 1px solid #a7f3d0; 
    color: #166534;
}

.mp1-callout-success .mp1-callout-icon { 
    color: var(--mp1-success); 
}

/* ==========================================================================
   PROS / CONS LISTS
   ========================================================================== */
.mp1-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.mp1-pros, 
.mp1-cons {
    padding: 20px;
    border-radius: var(--mp1-radius-lg);
}

.mp1-pros {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.mp1-cons {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.mp1-pros h4, 
.mp1-cons h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 12px 0;
}

.mp1-pros h4 { 
    color: #166534; 
}

.mp1-cons h4 { 
    color: #991b1b; 
}

.mp1-pros ul, 
.mp1-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mp1-pros li, 
.mp1-cons li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.9rem;
    margin: 0;
}

.mp1-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.mp1-cons li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.mp1-faq-item {
    border-bottom: 1px solid var(--mp1-border);
    padding: 20px 0;
}

.mp1-faq-item:last-child { 
    border-bottom: none; 
}

.mp1-faq-question {
    font-weight: 700;
    color: var(--mp1-ink);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.mp1-faq-answer {
    color: var(--mp1-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   SIDEBAR (non-sticky)
   ========================================================================== */
.mp1-sidebar { 
    position: static;
    top: auto;
    display: flex; 
    flex-direction: column; 
    gap: 32px; 
    align-self: start; 
}

.mp1-widget-title { 
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    color: var(--mp1-subtle); 
    margin-bottom: 14px; 
    border-bottom: 2px solid var(--mp1-surface); 
    padding-bottom: 8px; 
}

/* Tool Items */
.mp1-tool-item { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 14px; 
    padding: 8px; 
    border-radius: 8px; 
    transition: background 0.2s; 
}

.mp1-tool-item:hover { 
    background: var(--mp1-surface); 
}

.mp1-tool-logo { 
    width: 36px; 
    height: 36px; 
    border-radius: 8px; 
    background: white; 
    border: 1px solid var(--mp1-border); 
    display: grid; 
    place-items: center; 
    overflow: hidden;
    flex-shrink: 0; /* V10: prevent shrinking during sidebar layout */
}

.mp1-tool-logo img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    aspect-ratio: 1 / 1; /* V10: reserve square space */
}

.mp1-tool-info { 
    flex: 1; 
}

.mp1-tool-name { 
    display: block; 
    font-weight: 700; 
    color: var(--mp1-ink); 
    font-size: 0.9rem; 
    line-height: 1.2; 
}

.mp1-tool-rating { 
    font-size: 0.75rem; 
    color: var(--mp1-warning); 
    font-weight: 600; 
}

/* Article Items */
.mp1-article-item { 
    display: flex; 
    gap: 14px; 
    margin-bottom: 16px; 
    text-decoration: none; 
    align-items: start; 
}

.mp1-article-thumb { 
    width: 100px; 
    aspect-ratio: 16/9; 
    border-radius: 6px; 
    background: var(--mp1-surface); 
    object-fit: cover; 
    flex-shrink: 0; 
    border: 1px solid var(--mp1-border); 
}

.mp1-article-content { 
    flex: 1; 
}

.mp1-article-title { 
    font-size: 0.85rem; 
    font-weight: 600; 
    color: var(--mp1-ink); 
    line-height: 1.4; 
    display: block; 
    margin-bottom: 4px; 
    transition: color 0.2s; 
}

.mp1-article-item:hover .mp1-article-title { 
    color: var(--mp1-brand); 
}

.mp1-article-meta { 
    font-size: 0.7rem; 
    color: var(--mp1-subtle); 
    display: block; 
}

/* TOC Links */
.mp1-toc-link { 
    display: block; 
    padding: 7px 12px; 
    color: var(--mp1-subtle); 
    font-size: 0.85rem; 
    border-left: 2px solid var(--mp1-border); 
    margin-left: 0; 
    transition: all 0.2s; 
}

.mp1-toc-link:hover { 
    color: var(--mp1-brand); 
    border-left-color: var(--mp1-brand-soft); 
}

.mp1-toc-link.active { 
    color: var(--mp1-brand); 
    font-weight: 600; 
    border-left-color: var(--mp1-brand); 
    background: linear-gradient(90deg, #f8fafc 0%, transparent 100%); 
}

/* ==========================================================================
   FINAL VERDICT
   ========================================================================== */
.mp1-final-verdict { 
    background: var(--mp1-surface); 
    border-radius: var(--mp1-radius-xl); 
    padding: 32px; 
    margin-top: 50px; 
    border: 1px solid var(--mp1-border); 
}

.mp1-final-title { 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--mp1-ink); 
    margin-bottom: 16px; 
}

.mp1-verdict-table {
    width: 100%;
    font-size: 0.9rem;
    border-collapse: collapse;
    margin: 20px 0;
}

.mp1-verdict-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--mp1-border);
}

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

.mp1-verdict-table td:first-child { 
    color: var(--mp1-subtle); 
}

.mp1-verdict-table td:last-child { 
    font-weight: 600; 
    color: var(--mp1-ink); 
}

/* ==========================================================================
   MOBILE STICKY FOOTER
   ========================================================================== */
.mp1-mobile-sticky { 
    display: none; 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: rgba(255,255,255,0.97); 
    backdrop-filter: blur(12px); 
    padding: 12px 16px; 
    border-top: 1px solid var(--mp1-border); 
    z-index: 900; 
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1); 
}

.mp1-mobile-sticky .mp1-cta-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin: 0;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.mp1-lightbox { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(15, 23, 42, 0.95); 
    z-index: 9999; 
    justify-content: center; 
    align-items: center; 
    padding: 20px; 
    backdrop-filter: blur(5px); 
}

.mp1-lightbox.active { 
    display: flex; 
    animation: mp1-fadeIn 0.2s ease-out; 
}

@keyframes mp1-fadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}

.mp1-lightbox-img { 
    max-width: 95%; 
    max-height: 95vh;
    width: auto;        /* V10: auto OK here — lightbox is overlay, not in flow */
    height: auto;
    border-radius: 4px; 
    box-shadow: 0 0 40px rgba(0,0,0,0.5); 
}

.mp1-lightbox-close { 
    position: absolute; 
    top: 20px; 
    right: 30px; 
    color: white; 
    font-size: 2rem; 
    cursor: pointer; 
    opacity: 0.8; 
}

.mp1-lightbox-close:hover { 
    opacity: 1; 
}

/* ==========================================================================
   V10: FONT LOADING SAFETY
   `font-display: optional` prevents font-swap layout shift (FOUT).
   If your Inter/SF Pro web fonts are slow to load, browsers will use
   the system fallback rather than re-rendering text mid-paint.
   ========================================================================== */
.mp1-wrapper {
    font-display: optional;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .mp1-layout { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .mp1-sidebar { 
        display: none; 
    }
    
    .mp1-mobile-sticky { 
        display: block; 
    }
    
    .mp1-wrapper { 
        padding-bottom: 80px; 
    }
}

@media (max-width: 640px) {
    .mp1-hero { 
        padding: 40px 16px 36px; 
    }
    
    .mp1-title { 
        font-size: 1.75rem; 
    }
    
    .mp1-verdict-grid { 
        grid-template-columns: 1fr; 
    }
    
    .mp1-pros-cons { 
        grid-template-columns: 1fr; 
    }
    
    .mp1-cta-row { 
        flex-direction: column; 
    }
    
    .mp1-cta-btn { 
        display: block; 
        width: 100%; 
        text-align: center; 
    }
    
    .mp1-table { 
        min-width: 500px; 
    }
}/* End custom CSS */