/* Reset y base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Comparison Navigation Styles */
.comparison-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.comparison-link {
    display: block;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comparison-link:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.comparison-link strong {
    display: block;
    color: inherit;
    margin-bottom: 0.25rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #6c757d;
}

/* Brand Link Styles */
.brand-link {
    color: inherit;
    text-decoration: none;
}

.brand-link:hover {
    color: inherit;
    text-decoration: none;
}

/* Comparison Page Hero Styles - Override default hero */
body.comparison-page .hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 4rem 0 !important;
    text-align: center !important;
    min-height: auto !important;
    display: block !important;
    align-items: initial !important;
}

body.comparison-page .hero .container {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    align-items: initial !important;
}

body.comparison-page .hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

body.comparison-page .hero-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

body.comparison-page .hero-subtitle {
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    opacity: 0.9 !important;
    line-height: 1.6 !important;
}

/* Quick Comparison in Hero */
.quick-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-item {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #333 !important; /* Forzar color oscuro en cards */
}

.comparison-item.winner {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
    position: relative;
}

.comparison-item.winner::before {
    content: '🏆 GANADOR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.comparison-price {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin: 1rem 0;
}

.comparison-item h3 {
    color: #333 !important;
    margin-bottom: 1rem;
}

.comparison-item ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: #333 !important;
}

.comparison-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #333 !important;
}

.comparison-note {
    color: #6c757d !important;
    font-style: italic;
    margin-top: 1rem;
}

/* Detailed Comparison Table */
.detailed-comparison {
    background: #f8f9fa;
    padding: 4rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
}

.comparison-table th.highlight-winner {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
}

.comparison-table .highlight-winner {
    background: #e8f5e8;
    font-weight: 600;
    color: #155724;
}

.comparison-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

/* Pricing Analysis */
.pricing-analysis {
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-card.winner {
    border-color: #28a745;
    transform: scale(1.02);
}

.pricing-card.winner::before {
    content: '🏆 MEJOR VALOR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
}

.price span {
    font-size: 1rem;
    color: #6c757d;
}

.annual-price {
    color: #28a745;
    font-weight: 500;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-value {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.savings-highlight {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

/* Pros and Cons */
.pros-cons {
    background: #f8f9fa;
    padding: 4rem 0;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros-cons-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pros, .cons {
    margin: 1.5rem 0;
}

.pros h4 {
    color: #28a745;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cons h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.pros li, .cons li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Use Cases */
.use-cases {
    padding: 4rem 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.use-case {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.use-case.recommended {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.use-case h3 {
    margin-bottom: 1rem;
    color: #333;
}

.use-case ul {
    list-style: none;
    padding: 0;
}

.use-case li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.use-case li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.use-case-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.use-case-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
}

/* Final Verdict */
.final-verdict {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.verdict-content {
    text-align: center;
}

.verdict-summary {
    margin: 2rem 0;
}

.verdict-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.verdict-score {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.score-item {
    text-align: center;
}

.score-item.winner .score {
    color: #28a745;
    background: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.score {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.score span {
    font-size: 1rem;
    opacity: 0.7;
}

.final-recommendation {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.recommendation-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Related Comparisons */
.related-comparisons {
    background: #f8f9fa;
    padding: 4rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #333;
}

.related-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Backlink Analysis Specific Styles */
.backlink-analysis {
    padding: 4rem 0;
    background: #f8f9fa;
}

.backlink-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.backlink-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.backlink-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.backlink-header h3 {
    color: #333;
    margin: 0;
}

.backlink-score {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
}

.backlink-score span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.backlink-features ul {
    list-style: none;
    padding: 0;
}

.backlink-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.backlink-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.backlink-verdict {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 3px solid #667eea;
}

.backlink-recommendation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

/* Beginner Focus Styles */
.beginner-focus {
    padding: 4rem 0;
    background: #f8f9fa;
}

.beginner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.beginner-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.beginner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.beginner-header h3 {
    color: #333;
    margin: 0;
}

.beginner-score {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
}

.beginner-score span {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.beginner-pros li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.beginner-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.beginner-verdict {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 3px solid #667eea;
}

.beginner-recommendation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.recommendation-case {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.recommendation-case h4 {
    margin-bottom: 1rem;
    color: white;
}

.recommendation-case ul {
    list-style: none;
    padding: 0;
}

.recommendation-case li {
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Learning Curve Styles */
.learning-curve {
    padding: 4rem 0;
}

.curve-comparison {
    margin: 2rem 0;
}

.curve-timeline {
    margin-bottom: 3rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.timeline-marker.se-ranking {
    background: #28a745;
}

.timeline-marker.moz {
    background: #667eea;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.timeline-content li {
    padding: 0.2rem 0;
    color: #666;
}

.curve-factors {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.factor {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.factor h5 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.factor p {
    font-size: 0.9rem;
    margin: 0.3rem 0;
    color: #666;
}

/* Value Comparison Styles */
.value-comparison {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

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

.metric {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.metric h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.metric p {
    margin: 0.5rem 0;
    color: #666;
}

.metric .winner {
    display: block;
    background: #28a745;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
}

/* User Scenarios */
.user-scenarios {
    padding: 4rem 0;
    background: #f8f9fa;
}

.scenario-profile {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.scenario-profile p {
    margin: 0.3rem 0;
    color: #333;
}

.scenario-result ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.scenario-result li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.scenario-result li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Budget Analysis Styles */
.budget-analysis {
    padding: 4rem 0;
    background: #f8f9fa;
}

.budget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.budget-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.budget-card.winner {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.budget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.budget-header h3 {
    color: #333;
    margin: 0;
}

.budget-savings {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.budget-cost {
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.budget-breakdown h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.budget-features {
    margin: 1rem 0;
}

.budget-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    margin: 0.5rem 0;
    background: #f8f9fa;
    border-radius: 6px;
}

.feature-amount {
    font-weight: bold;
    color: #28a745;
    font-size: 1.1rem;
}

.feature-desc {
    flex: 1;
    margin: 0 1rem;
    color: #666;
}

.feature-value {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 500;
}

.budget-verdict {
    background: rgba(102, 126, 234, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
}

.budget-recommendation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.budget-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.budget-scenario {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.budget-scenario h4 {
    color: white;
    margin-bottom: 1rem;
}

/* Feature Deep Dive Styles */
.feature-deep-dive {
    padding: 4rem 0;
}

.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.deep-dive-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.deep-dive-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.strength-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.strength-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.strength-item h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.strength-item p {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.strength-item ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.strength-item li {
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1.2rem;
    color: #666;
    font-size: 0.9rem;
}

.strength-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Migration Guide Styles */
.migration-guide {
    padding: 4rem 0;
    background: #f8f9fa;
}

.migration-scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.migration-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.migration-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.migration-reasons, .migration-process {
    margin: 1.5rem 0;
}

.migration-reasons h4, .migration-process h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.migration-reasons ul, .migration-process ol {
    padding-left: 1.5rem;
}

.migration-reasons li, .migration-process li {
    padding: 0.3rem 0;
    color: #666;
}

.migration-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.migration-warning p {
    color: #856404;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.migration-warning ul {
    list-style: none;
    padding: 0;
}

.migration-warning li {
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1.2rem;
    color: #856404;
}

.migration-warning li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Comparatives Section Styles */
.comparatives {
    padding: 4rem 0;
    background: #f8f9fa;
}

.comparatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.comparative-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
    position: relative;
}

.comparative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.comparative-card.featured {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.comparative-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.comparative-header h3 {
    color: #333;
    margin: 0;
    font-size: 1.3rem;
}

.comparative-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparative-badge.popular {
    background: #ff6b6b;
    color: white;
}

.comparative-badge.backlinks {
    background: #667eea;
    color: white;
}

.comparative-badge.beginner {
    background: #20bf6b;
    color: white;
}

.comparative-badge.budget {
    background: #f39c12;
    color: white;
}

.comparative-preview {
    margin: 1rem 0;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-item {
    padding: 0.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.price-item.winner {
    background: #e8f5e8;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.price-item:not(.winner) {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.winner-highlight {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
}

.comparative-description {
    color: #666;
    margin: 1rem 0;
    line-height: 1.5;
}

.comparative-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.highlight-item {
    background: #e9ecef;
    color: #495057;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Comparatives Summary */
.comparatives-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0 0;
    text-align: center;
}

.summary-content h3 {
    margin-bottom: 1rem;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #20bf6b;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.3;
}

.summary-cta {
    margin-top: 2rem;
}

/* Real Scenarios */
.real-scenarios {
    padding: 4rem 0;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.scenario-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #28a745;
}

.scenario-card.success {
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.scenario-content p {
    margin: 0.5rem 0;
}

.scenario-content strong {
    color: #28a745;
}

.scenario-card blockquote {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
    margin: 1rem 0;
    border-left: 3px solid #28a745;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial blockquote {
    font-style: italic;
    color: #555;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.testimonial cite {
    font-weight: bold;
    color: #333;
    font-style: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    body.comparison-page .hero-title {
        font-size: 2rem !important;
    }

    body.comparison-page .hero-subtitle {
        font-size: 1rem !important;
    }

    body.comparison-page .hero {
        padding: 2rem 0 !important;
    }

    .quick-comparison,
    .pricing-grid,
    .pros-cons-grid,
    .use-cases-grid,
    .backlink-grid,
    .scenarios-grid,
    .beginner-grid,
    .recommendation-grid,
    .factors-grid,
    .value-metrics,
    .budget-grid,
    .deep-dive-grid,
    .migration-scenarios {
        grid-template-columns: 1fr;
        margin: 2rem 0;
    }

    .verdict-score {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .score-item.winner .score {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }

    .comparison-item {
        padding: 1.5rem;
    }

    .comparison-price {
        font-size: 1.5rem;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    flex: 1;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
    display: block;
}

.brand-subtitle {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

.header-cta {
    flex-shrink: 0;
}

.header-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image a:hover img {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #20bf6b, #26de81);
    color: white;
    box-shadow: 0 4px 15px rgba(32, 191, 107, 0.4);
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 191, 107, 0.6);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.cta-disclaimer, .cta-guarantee {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
    text-align: center;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #4a5568;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background-color: #f8fafc;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.features-image {
    position: sticky;
    top: 100px;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-image a:hover img {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.features-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-benefit h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
    line-height: 1.3;
}

.feature-benefit p {
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.benefit-item .benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-item strong {
    display: block;
    color: #2d3748;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.features-cta {
    text-align: center;
}

/* Comparison Section */
.comparison {
    background-color: #ffffff;
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #2d3748;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th.highlight {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.comparison-table td.highlight {
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    font-weight: 600;
    color: #2d3748;
}

.comparison-details {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.comparison-details p {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0;
}

.comparison-details a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.comparison-details a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.comparison-cta {
    text-align: center;
}

/* Tutorial Section */
.tutorial {
    background-color: #f8fafc;
}

.tutorial-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
    margin-top: 1rem;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

.tutorial-cta {
    text-align: center;
}

/* Advanced Features Section */
.advanced-features {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.advanced-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23667eea" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23764ba2" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%2320bf6b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.advanced-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.advanced-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.advanced-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.advanced-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.advanced-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.advanced-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    flex: 1;
    min-width: 200px;
}

.advanced-badge {
    background: linear-gradient(45deg, #20bf6b, #26de81);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.advanced-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.advanced-list {
    list-style: none;
    padding: 0;
}

.advanced-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2d3748;
    font-size: 0.95rem;
    line-height: 1.5;
}

.advanced-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.advanced-cta {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    z-index: 1;
}

.advanced-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

/* Value Calculator Section */
.value-calculator {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.value-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="calc-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%2320bf6b" opacity="0.3"/><circle cx="0" cy="0" r="1" fill="%23667eea" opacity="0.2"/><circle cx="60" cy="60" r="1" fill="%23667eea" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23calc-pattern)"/></svg>');
}

.value-calculator h2 {
    color: white;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.calculator-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.calculator-header {
    margin-bottom: 1.5rem;
}

.calculator-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.calculator-math {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 1.1rem;
    font-weight: 600;
}

.calc-quantity {
    color: #20bf6b;
}

.calc-operator, .calc-equals {
    color: #667eea;
    font-size: 1.3rem;
}

.calc-price {
    color: #ffa726;
}

.calc-result {
    color: #ff6b6b;
    font-size: 1.3rem;
    font-weight: 700;
}

.calculator-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.calculator-comparison {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #20bf6b;
}

.calculator-comparison strong {
    color: #20bf6b;
    display: block;
    margin-bottom: 0.5rem;
}

.calculator-comparison ul {
    list-style: none;
    margin: 0;
}

.calculator-comparison li {
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.calculator-comparison .highlight {
    color: #20bf6b;
    font-weight: 600;
}

.calculator-total {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(32, 191, 107, 0.3);
    text-align: center;
    position: relative;
    z-index: 1;
}

.total-breakdown h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.total-calculation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.total-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.total-items span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.total-result {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.total-label {
    color: #20bf6b;
    font-weight: 600;
    font-size: 1.2rem;
}

.total-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #20bf6b;
    text-shadow: 0 2px 10px rgba(32, 191, 107, 0.3);
}

.total-free {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.total-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.calculator-cta {
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffa726;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-number {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial cite strong {
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.testimonial cite span {
    font-weight: 400;
    color: #667eea;
    font-size: 0.85rem;
}

.testimonials-summary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.summary-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.big-rating {
    font-size: 4rem;
    font-weight: 900;
    color: #20bf6b;
    text-shadow: 0 2px 10px rgba(32, 191, 107, 0.3);
    line-height: 1;
}

.rating-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.stars-large {
    color: #ffa726;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.rating-details span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.summary-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq {
    background-color: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.final-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.final-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.final-benefit-item {
    text-align: center;
}

.final-benefit-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #20bf6b;
    line-height: 1;
}

.final-benefit-text {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: white !important;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-image {
        position: static;
        order: 1;
    }

    .features-text {
        order: 2;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .advanced-grid {
        grid-template-columns: 1fr;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
    }

    .total-calculation {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .total-result {
        align-items: center;
    }

    .tutorial-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .summary-rating {
        flex-direction: column;
        gap: 1.5rem;
    }

    .rating-details {
        align-items: center;
        text-align: center;
    }

    .big-rating {
        font-size: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .final-benefits {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .brand-title {
        font-size: 1.3rem;
    }

    .brand-subtitle {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .final-cta {
        padding: 3rem 0;
    }
}