/* ============================================
   WEBSITES PAGE ENHANCEMENTS
   Enhanced Visual Design & Colors
   ============================================ */

/* ========== למה לבחור בנו - Enhanced Section ========== */

/* Section Background & Layout */
.why-us-unique-section {
    position: relative;
    overflow: hidden;
}

.why-us-unique-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.why-us-unique-section .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Grid */
.unique-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Enhanced Feature Cards with Colorful Gradients */
.unique-feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(147, 51, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* Gradient Accent Bar on Top */
.unique-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Animated Gradient Background on Hover */
.unique-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.unique-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow:
        0 20px 40px rgba(147, 51, 234, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.unique-feature-card:hover::before {
    opacity: 1;
}

.unique-feature-card:hover::after {
    opacity: 1;
    animation: rotateGradient 3s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Highlighted Card - Special Treatment */
.unique-feature-card.highlight {
    background: linear-gradient(135deg,
        rgba(147, 51, 234, 0.03) 0%,
        rgba(236, 72, 153, 0.03) 100%);
    border: 2px solid rgba(147, 51, 234, 0.2);
    box-shadow:
        0 8px 16px rgba(147, 51, 234, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.unique-feature-card.highlight::before {
    opacity: 0.6;
}

.unique-feature-card.highlight:hover {
    background: linear-gradient(135deg,
        rgba(147, 51, 234, 0.06) 0%,
        rgba(236, 72, 153, 0.06) 100%);
    box-shadow:
        0 24px 48px rgba(147, 51, 234, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

/* Enhanced Icons with Colorful Backgrounds */
.feature-icon-unique {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    position: relative;
    box-shadow:
        0 8px 16px rgba(147, 51, 234, 0.25),
        0 0 0 4px rgba(147, 51, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-unique::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    padding: 4px;
    background: linear-gradient(135deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.unique-feature-card:hover .feature-icon-unique {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 24px rgba(147, 51, 234, 0.35),
        0 0 0 6px rgba(147, 51, 234, 0.15);
}

.unique-feature-card:hover .feature-icon-unique::before {
    opacity: 1;
}

.feature-icon-unique i {
    font-size: 2.2rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Enhanced Typography */
.unique-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
}

.unique-feature-card p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

.unique-feature-card p strong {
    color: #1a202c;
    font-weight: 600;
}

/* Enhanced Learn More Button */
.btn-learn-more-card {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-learn-more-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-learn-more-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.35);
}

.btn-learn-more-card:hover::before {
    opacity: 1;
}

.btn-learn-more-card i {
    transition: transform 0.3s ease;
}

.btn-learn-more-card:hover i {
    transform: translateX(-3px);
}


/* ========== ההבדל שלנו - Professional Comparison Section ========== */

/* Professional Section Styling */
.comparison-section-professional {
    position: relative;
    background: #fafbff;
    padding: 5rem 0;
    overflow: hidden;
}

.comparison-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 20%, rgba(147, 51, 234, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(0, 187, 249, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
}

.comparison-section-professional .container {
    position: relative;
    z-index: 1;
}

/* Professional Grid Layout */
.differences-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

/* Professional Difference Cards */
.difference-card-pro {
    background: linear-gradient(135deg, #ffffff 0%, #fefeff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(147, 51, 234, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.03),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

/* Subtle gradient accent on top */
.difference-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.difference-card-pro:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.2);
    box-shadow:
        0 16px 32px rgba(147, 51, 234, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.difference-card-pro:hover::before {
    opacity: 1;
}

/* Professional Icons */
.difference-icon-pro {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(147, 51, 234, 0.1) 0%,
        rgba(236, 72, 153, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.difference-icon-pro::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg,
        var(--primary-color),
        var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.difference-card-pro:hover .difference-icon-pro {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(147, 51, 234, 0.25);
}

.difference-card-pro:hover .difference-icon-pro::after {
    opacity: 0.2;
}

.difference-icon-pro i {
    font-size: 1.8rem;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.difference-card-pro:hover .difference-icon-pro i {
    -webkit-text-fill-color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Professional Typography */
.difference-card-pro h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.difference-card-pro:hover h3 {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.difference-card-pro p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.02rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .differences-grid-professional {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .differences-grid-professional {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .difference-card-pro {
        padding: 2rem;
    }

    .difference-icon-pro {
        width: 56px;
        height: 56px;
    }

    .difference-icon-pro i {
        font-size: 1.6rem;
    }

    .difference-card-pro h3 {
        font-size: 1.25rem;
    }

    .difference-card-pro p {
        font-size: 0.98rem;
    }

    .comparison-section-professional {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .difference-card-pro {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .difference-icon-pro {
        width: 48px;
        height: 48px;
    }

    .difference-icon-pro i {
        font-size: 1.4rem;
    }
}


/* ========== הבעיה עם רוב האתרים - Enhanced Comparison Section (Legacy - keeping for compatibility) ========== */

/* Section Background with Warning Theme */
.comparison-section {
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 25%, rgba(239, 68, 68, 0.04) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(34, 197, 94, 0.04) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
}

.comparison-section .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Warning Badge */
.section-badge-new.warning {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.section-badge-new.warning i {
    color: #dc2626;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Enhanced Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Enhanced Comparison Columns */
.comparison-column {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Bad Column - Enhanced Red Theme */
.comparison-column.bad {
    background: linear-gradient(135deg,
        rgba(254, 242, 242, 1) 0%,
        rgba(255, 247, 237, 1) 100%);
    border: 3px solid rgba(239, 68, 68, 0.2);
    box-shadow:
        0 8px 16px rgba(239, 68, 68, 0.08),
        0 0 0 1px rgba(239, 68, 68, 0.05) inset;
}

.comparison-column.bad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg,
        #ef4444 0%,
        #f97316 100%);
}

.comparison-column.bad:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 32px rgba(239, 68, 68, 0.15),
        0 0 0 1px rgba(239, 68, 68, 0.1) inset;
    border-color: rgba(239, 68, 68, 0.3);
}

/* Good Column - Enhanced Green Theme */
.comparison-column.good {
    background: linear-gradient(135deg,
        rgba(240, 253, 244, 1) 0%,
        rgba(240, 249, 255, 1) 100%);
    border: 3px solid rgba(34, 197, 94, 0.3);
    box-shadow:
        0 8px 16px rgba(34, 197, 94, 0.12),
        0 0 0 1px rgba(34, 197, 94, 0.1) inset;
}

.comparison-column.good::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg,
        #22c55e 0%,
        #10b981 50%,
        #06b6d4 100%);
}

.comparison-column.good:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(34, 197, 94, 0.2),
        0 0 0 1px rgba(34, 197, 94, 0.15) inset;
    border-color: rgba(34, 197, 94, 0.4);
}

/* Enhanced Comparison Headers */
.comparison-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

/* Enhanced Icons with Colorful Backgrounds */
.comparison-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bad-icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 4px solid rgba(239, 68, 68, 0.2);
    box-shadow:
        0 8px 20px rgba(239, 68, 68, 0.2),
        0 0 0 8px rgba(239, 68, 68, 0.05);
}

.bad-icon i {
    font-size: 2.8rem;
    color: #dc2626;
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
}

.comparison-column.bad:hover .bad-icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow:
        0 12px 28px rgba(239, 68, 68, 0.3),
        0 0 0 12px rgba(239, 68, 68, 0.08);
}

.good-icon {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border: 4px solid rgba(34, 197, 94, 0.3);
    box-shadow:
        0 8px 20px rgba(34, 197, 94, 0.25),
        0 0 0 8px rgba(34, 197, 94, 0.08);
}

.good-icon i {
    font-size: 2.8rem;
    color: #16a34a;
    filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.3));
}

.comparison-column.good:hover .good-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow:
        0 12px 28px rgba(34, 197, 94, 0.35),
        0 0 0 12px rgba(34, 197, 94, 0.12);
}

/* Enhanced Headers Text */
.comparison-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.comparison-column.bad .comparison-header h3 {
    color: #b91c1c;
}

.comparison-column.good .comparison-header h3 {
    background: linear-gradient(135deg, #15803d 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 500;
}

/* Enhanced Comparison Items */
.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.3rem;
    margin-bottom: 1rem;
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.comparison-column.bad .comparison-item {
    background: rgba(254, 226, 226, 0.4);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.comparison-column.bad .comparison-item:hover {
    background: rgba(254, 226, 226, 0.7);
    border-color: rgba(239, 68, 68, 0.25);
    transform: translateX(-4px);
}

.comparison-column.good .comparison-item {
    background: rgba(220, 252, 231, 0.4);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.comparison-column.good .comparison-item:hover {
    background: rgba(220, 252, 231, 0.7);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateX(4px);
}

/* Enhanced Item Icons */
.comparison-item > i {
    font-size: 1.3rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.comparison-column.bad .comparison-item > i {
    color: #dc2626;
    background: rgba(254, 226, 226, 0.8);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-column.good .comparison-item > i {
    color: #16a34a;
    background: rgba(220, 252, 231, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.comparison-item:hover > i {
    transform: scale(1.15);
}

/* Enhanced Item Content */
.item-content strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.comparison-column.bad .item-content strong {
    color: #991b1b;
}

.comparison-column.good .item-content strong {
    color: #14532d;
}

.item-content p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* Enhanced CTA Box */
.comparison-cta {
    margin-top: 3.5rem;
}

.comparison-cta .cta-content {
    background: linear-gradient(135deg,
        rgba(147, 51, 234, 0.05) 0%,
        rgba(236, 72, 153, 0.05) 100%);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(147, 51, 234, 0.15);
    box-shadow:
        0 8px 16px rgba(147, 51, 234, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.comparison-cta .cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%);
}

.comparison-cta h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
}

.comparison-cta p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0;
}


/* ========== General Visual Enhancements ========== */

/* Enhanced Section Badge (Global) */
.section-badge-new {
    position: relative;
    overflow: hidden;
}

.section-badge-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.section-badge-new:hover::before {
    width: 200px;
    height: 200px;
}

/* Enhanced Primary Button (Global) */
.btn-primary-new {
    position: relative;
    overflow: hidden;
}

.btn-primary-new::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary-new:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary-new span,
.btn-primary-new i {
    position: relative;
    z-index: 1;
}


/* ========== Responsive Design ========== */

@media (max-width: 768px) {
    .unique-features-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .unique-feature-card,
    .comparison-column {
        padding: 2rem;
    }

    .feature-icon-unique,
    .comparison-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon-unique i {
        font-size: 1.8rem;
    }

    .comparison-icon i {
        font-size: 2.2rem;
    }

    .unique-feature-card h3,
    .comparison-header h3 {
        font-size: 1.3rem;
    }

    .comparison-cta .cta-content {
        padding: 2rem;
    }

    .comparison-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .unique-feature-card,
    .comparison-column {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .comparison-item {
        padding: 1rem;
        gap: 0.8rem;
    }

    .item-content strong {
        font-size: 1rem;
    }

    .item-content p {
        font-size: 0.92rem;
    }
}


/* ========== Additional Enhancements ========== */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States for Accessibility */
.unique-feature-card:focus-within,
.comparison-column:focus-within {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .unique-feature-card::after,
    .comparison-column::before,
    .section-badge-new::before,
    .btn-primary-new::after {
        display: none;
    }
}
