/* ==========================================================================
   WEB COMPONENTS
   Reusable UI Components & Interactive Elements
   ========================================================================== */

/* ==========================================================================
   BUTTONS
   Primary, secondary and call-to-action buttons
   ========================================================================== */

.btn-primary {
    background: var(--warmth-primary);
    color: white;
    padding: 1.1rem 2.4rem 1.2rem 2.2rem;
    border-radius: 30px 25px 30px 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s var(--ease-organic);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) rotate(0deg);
    box-shadow: var(--shadow-strong);
    background: var(--warmth-accent);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--warmth-primary);
    padding: 1.1rem 2.4rem 1.2rem 2.2rem;
    border: 2px solid var(--warmth-primary);
    border-radius: 25px 30px 25px 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.4s var(--ease-organic);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--warmth-accent);
    color: white;
    transform: translateY(-2px) rotate(0deg);
    box-shadow: var(--shadow-medium);
}

.header-cta {
    background: var(--warmth-primary);
    color: white;
    padding: 0.85rem 2.1rem 0.95rem 1.9rem; /* Organic padding */
    border-radius: 25px 20px 25px 20px; /* Irregular border-radius */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--ease-organic);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s var(--ease-organic);
}

.header-cta:hover::before {
    left: 100%;
}

.header-cta:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: var(--shadow-medium);
    background: var(--warmth-accent);
}

/* ==========================================================================
   BADGES
   Hero, visual, stat and other badge components
   ========================================================================== */

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem; /* Maksymalny margines */
    justify-content: center;
}

@media (min-width: 769px) {
    .hero-badges {
        justify-content: flex-start;
    }
}

.hero-badge {
    display: inline-block;
    background: var(--warmth-secondary);
    color: var(--warmth-primary);
    padding: 0.6rem 1.4rem 0.7rem 1.2rem;
    border-radius: 15px 25px 15px 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transform: rotate(0deg);
    animation: gentle-pulse 3s ease-in-out infinite;
}

.practical-badge {
    background: linear-gradient(135deg, var(--warmth-accent) 0%, var(--warmth-plum) 100%);
    color: white;
    font-weight: 600;
    animation: gentle-pulse 4s ease-in-out infinite 0.5s;
}

.hero-target {
    font-size: 1rem;
    color: var(--warmth-accent);
    font-weight: 500;
    margin-bottom: 1rem; /* Zmniejszony margines */
    font-style: italic;
}

/* ==========================================================================
   HERO TITLE STYLES
   Main hero title with organic styling and visual accent
   ========================================================================== */

.hero-title {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--warmth-charcoal);
    margin-bottom: 1.8rem; /* Maksymalny margines */
    font-weight: 600;
    position: relative;
}

.hero-title span {
    color: var(--warmth-primary);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--warmth-secondary) 0%, var(--warmth-gold) 100%);
    border-radius: 4px;
    opacity: 0.3;
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(44, 38, 37, 0.8);
    margin-bottom: 2.2rem; /* Maksymalny margines */
    max-width: 600px;
}

/* ==========================================================================
   PRICING PROMO BADGE
   Promotional message for payment options
   ========================================================================== */

.pricing-promo {
    background: linear-gradient(135deg, var(--warmth-accent) 0%, var(--warmth-plum) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px 25px 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem auto 0 auto;
    max-width: 450px;
    box-shadow: var(--shadow-soft);
    transform: rotate(0deg);
    animation: gentle-pulse 4s ease-in-out infinite;
}

/* ==========================================================================
   CERTIFICATES BADGES
   Floating badges for certificate section
   ========================================================================== */

.certificates-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cert-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 12px 25px 12px 25px;
    text-align: center;
    letter-spacing: 0.1em;
    color: white;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--ease-organic);
}

.cert-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.caiwb-badge {
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-gold) 100%);
}

.caiba-badge {
    background: linear-gradient(135deg, var(--warmth-accent) 0%, var(--warmth-plum) 100%);
}

/* ==========================================================================
   COMPARISON GRID
   Course comparison section styling
   ========================================================================== */

.differentiation-section {
    background: rgba(232, 180, 143, 0.03);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 60rem;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: 20px 15px 25px 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    transition: all 0.3s var(--ease-organic);
}

.comparison-card.other-courses {
    border: 2px solid rgba(220, 53, 69, 0.2);
}

.comparison-card.our-sprint {
    border: 2px solid var(--warmth-primary);
    transform: scale(1.02);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.comparison-icon {
    font-size: 2rem;
}

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

.comparison-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.other-courses .comparison-list li {
    color: rgba(44, 38, 37, 0.7);
}

.our-sprint .comparison-list li {
    color: var(--warmth-charcoal);
}

@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-card.our-sprint {
        transform: scale(1);
    }
}

/* ==========================================================================
   AUDIENCE SECTION
   Target audience differentiation styling
   ========================================================================== */

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 70rem;
    margin: 0 auto 3rem auto;
}

.audience-card {
    background: white;
    border-radius: 20px 15px 25px 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--ease-organic);
    position: relative;
}

.audience-card.not-for {
    border: 3px solid rgba(220, 53, 69, 0.3);
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.02) 0%, white 100%);
}

.audience-card.is-for {
    border: 3px solid var(--warmth-accent);
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.02) 0%, white 100%);
    transform: scale(1.02);
}

.audience-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.audience-card.is-for:hover {
    transform: translateY(-3px) scale(1.04);
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.audience-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.audience-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin: 0;
    line-height: 1.2;
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(44, 38, 37, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

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

.audience-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--warmth-primary);
    font-weight: 600;
}

.audience-card.not-for .audience-list li::before {
    color: #dc3545;
}

.audience-card.is-for .audience-list li::before {
    color: var(--warmth-accent);
}

.audience-emphasis {
    background: linear-gradient(135deg, var(--warmth-secondary) 0%, var(--warmth-gold) 100%);
    color: var(--warmth-charcoal);
    padding: 2rem 2.5rem;
    border-radius: 20px 15px 25px 12px;
    text-align: center;
    max-width: 65rem;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
}

.audience-emphasis p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.audience-emphasis strong {
    color: var(--warmth-primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .audience-card.is-for {
        transform: scale(1);
    }
    
    .audience-card.is-for:hover {
        transform: translateY(-3px) scale(1.02);
    }
    
    .audience-emphasis {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   INDUSTRIES SECTION
   Industry-specific success stories and results
   ========================================================================== */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 75rem;
    margin: 0 auto 4rem auto;
}

.industry-card {
    background: white;
    border-radius: 18px 12px 20px 15px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--ease-organic);
    position: relative;
    border-left: 4px solid var(--warmth-primary);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.industry-card:nth-child(even) {
    border-left-color: var(--warmth-accent);
}

.industry-card:nth-child(3n) {
    border-left-color: var(--warmth-gold);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.industry-card p {
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.industry-card p strong {
    color: var(--warmth-primary);
    font-weight: 600;
}

.industry-result {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--warmth-secondary) 0%, rgba(232, 180, 143, 0.3) 100%);
    border-radius: 12px 8px 12px 8px;
    font-weight: 600;
    color: var(--warmth-charcoal);
    font-size: 0.9rem;
}

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

.industries-summary {
    max-width: 60rem;
    margin: 0 auto;
}

.summary-card {
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-accent) 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 25px 15px 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: summary-shimmer 6s ease-in-out infinite;
}

@keyframes summary-shimmer {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.summary-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.summary-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.summary-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.2rem 2rem;
    border-radius: 15px 10px 15px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.summary-highlight strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warmth-gold);
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .industry-card {
        padding: 2rem 1.5rem;
    }
    
    .industry-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .summary-card {
        padding: 2rem 1.5rem;
    }
    
    .summary-card h3 {
        font-size: 1.4rem;
    }
    
    .summary-card p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   AI REASONS SECTION
   Why AI + websites work together styling
   ========================================================================== */

.ai-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 75rem;
    margin: 0 auto 4rem auto;
}

.reason-card {
    background: white;
    border-radius: 20px 15px 25px 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--ease-organic);
    position: relative;
    border-top: 4px solid var(--warmth-accent);
}

.reason-card.primary-reason {
    border-top-color: var(--warmth-primary);
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.02) 0%, white 100%);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.reason-card.primary-reason:hover {
    transform: translateY(-5px) scale(1.02);
}

.reason-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reason-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.reason-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin: 0;
    line-height: 1.2;
}

.reason-card p {
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.reason-card p strong {
    color: var(--warmth-primary);
    font-weight: 600;
}

.reason-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--warmth-secondary) 0%, rgba(232, 180, 143, 0.2) 100%);
    border-radius: 12px 8px 12px 8px;
    font-weight: 600;
    color: var(--warmth-charcoal);
    font-size: 0.9rem;
}

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

.ai-web-insight {
    max-width: 65rem;
    margin: 0 auto;
}

.insight-card {
    background: linear-gradient(135deg, var(--warmth-charcoal) 0%, rgba(44, 38, 37, 0.9) 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 25px 15px 30px 20px;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 74, 42, 0.1) 0%, transparent 70%);
    animation: insight-glow 8s ease-in-out infinite;
}

@keyframes insight-glow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-10deg) scale(1.1); }
}

.insight-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.insight-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: var(--warmth-gold);
}

.insight-card > p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.insight-card strong {
    color: var(--warmth-secondary);
}

.insight-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px 10px 15px 10px;
    position: relative;
    z-index: 2;
}

.comparison-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.4;
}

.comparison-item.highlight {
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-accent) 100%);
    border-radius: 12px 8px 12px 8px;
    color: white;
    font-weight: 600;
}

.comparison-arrow {
    font-size: 2rem;
    color: var(--warmth-gold);
    font-weight: 600;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .ai-reasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reason-card.primary-reason {
        transform: scale(1);
    }
    
    .reason-card.primary-reason:hover {
        transform: translateY(-5px) scale(1);
    }
    
    .reason-header {
        gap: 1rem;
    }
    
    .reason-icon {
        font-size: 2.5rem;
    }
    
    .insight-card {
        padding: 2rem 1.5rem;
    }
    
    .insight-header h3 {
        font-size: 1.5rem;
    }
    
    .insight-card > p {
        font-size: 1.1rem;
    }
    
    .insight-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .comparison-item {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   IMPLEMENTATION SUPPORT SECTION
   Enhanced support messaging and comparison styling
   ========================================================================== */

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 75rem;
    margin: 0 auto 4rem auto;
}

.support-card {
    background: white;
    border-radius: 20px 15px 25px 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--ease-organic);
    position: relative;
    border-left: 4px solid var(--warmth-accent);
}

.support-card.hands-on {
    border-left-color: var(--warmth-primary);
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.02) 0%, white 100%);
}

.support-card.community {
    border-left-color: var(--warmth-gold);
}

.support-card.accountability {
    border-left-color: var(--warmth-accent);
}

.support-card.guarantee {
    border-left-color: var(--warmth-plum);
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(123, 63, 84, 0.02) 0%, white 100%);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.support-card.hands-on:hover,
.support-card.guarantee:hover {
    transform: translateY(-5px) scale(1.02);
}

.support-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.support-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.support-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin: 0;
    line-height: 1.2;
}

.support-card p {
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.support-card p strong {
    color: var(--warmth-primary);
    font-weight: 600;
}

.support-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--warmth-secondary) 0%, rgba(232, 180, 143, 0.2) 100%);
    border-radius: 12px 8px 12px 8px;
    font-weight: 600;
    color: var(--warmth-charcoal);
    font-size: 0.9rem;
}

.support-benefit-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.support-summary {
    max-width: 70rem;
    margin: 0 auto;
}

.summary-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.comparison-side {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px 15px 25px 12px;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.comparison-side.typical {
    border-left: 4px solid #dc3545;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.02) 0%, white 100%);
}

.comparison-side.our-approach {
    border-left: 4px solid var(--warmth-accent);
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.02) 0%, white 100%);
    transform: scale(1.02);
}

.comparison-side h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--warmth-charcoal);
}

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

.comparison-side li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(44, 38, 37, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.comparison-side li:last-child {
    border-bottom: none;
}

.comparison-side.typical li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 600;
}

.comparison-side.our-approach li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--warmth-accent);
    font-weight: 600;
}

.support-cta {
    background: linear-gradient(135deg, var(--warmth-charcoal) 0%, rgba(44, 38, 37, 0.9) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px 15px 25px 12px;
    text-align: center;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.support-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 74, 42, 0.1) 0%, transparent 70%);
    animation: support-glow 10s ease-in-out infinite;
}

@keyframes support-glow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.support-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.support-cta strong {
    color: var(--warmth-gold);
    font-weight: 700;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-card.hands-on,
    .support-card.guarantee {
        transform: scale(1);
    }
    
    .support-card.hands-on:hover,
    .support-card.guarantee:hover {
        transform: translateY(-5px) scale(1);
    }
    
    .support-header {
        gap: 1rem;
    }
    
    .support-icon {
        font-size: 2.5rem;
    }
    
    .summary-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-side.our-approach {
        transform: scale(1);
    }
    
    .support-cta {
        padding: 2rem 1.5rem;
    }
    
    .support-cta p {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   DEEP LEARNING METHODOLOGY SECTION
   Learning through practice vs surface-level content styling
   ========================================================================== */

.learning-methodology {
    max-width: 75rem;
    margin: 0 auto;
}

.methodology-intro {
    max-width: 60rem;
    margin: 0 auto 4rem auto;
}

.intro-card {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, white 100%);
    border: 2px solid rgba(220, 53, 69, 0.2);
    border-radius: 20px 15px 25px 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.intro-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 1.5rem;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(44, 38, 37, 0.8);
    margin: 0;
}

.intro-card p strong {
    color: var(--warmth-primary);
    font-weight: 600;
}

.deep-learning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.learning-level {
    background: white;
    border-radius: 20px 15px 25px 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--ease-organic);
    position: relative;
    border-top: 4px solid #ccc;
}

.learning-level.surface {
    border-top-color: #dc3545;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.02) 0%, white 100%);
}

.learning-level.strategic {
    border-top-color: var(--warmth-primary);
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.02) 0%, white 100%);
    transform: scale(1.05);
}

.learning-level.mastery {
    border-top-color: var(--warmth-gold);
    background: linear-gradient(135deg, rgba(212, 146, 90, 0.02) 0%, white 100%);
}

.learning-level:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.learning-level.strategic:hover {
    transform: translateY(-5px) scale(1.05);
}

.level-header {
    text-align: center;
    margin-bottom: 2rem;
}

.level-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.level-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 0.8rem;
}

.level-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.level-label.typical {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.level-label.our-method {
    background: rgba(201, 74, 42, 0.1);
    color: var(--warmth-primary);
}

.level-label.bonus {
    background: rgba(212, 146, 90, 0.1);
    color: var(--warmth-gold);
}

.level-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.level-features li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(44, 38, 37, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.level-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 600;
}

.learning-level.surface .level-features li::before {
    color: #dc3545;
}

.learning-level.strategic .level-features li::before {
    color: var(--warmth-primary);
}

.learning-level.mastery .level-features li::before {
    color: var(--warmth-gold);
}

.level-result {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 12px 8px 12px 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.learning-level.surface .level-result {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.learning-level.strategic .level-result {
    background: rgba(201, 74, 42, 0.1);
    color: var(--warmth-primary);
}

.learning-level.mastery .level-result {
    background: rgba(212, 146, 90, 0.1);
    color: var(--warmth-gold);
}

.result-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.practice-emphasis {
    max-width: 65rem;
    margin: 0 auto;
}

.emphasis-card {
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-accent) 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 25px 15px 30px 20px;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.emphasis-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: practice-shimmer 12s ease-in-out infinite;
}

@keyframes practice-shimmer {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-15deg) scale(1.2); }
}

.emphasis-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.emphasis-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: var(--warmth-gold);
}

.practice-comparison {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.practice-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px 10px 15px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item.highlight {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.stat-number {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warmth-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.2;
}

.stat-vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warmth-gold);
}

.emphasis-card > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.emphasis-card strong {
    color: var(--warmth-secondary);
    font-weight: 700;
}

.our-approach {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px 10px 15px 10px;
    position: relative;
    z-index: 2;
}

.our-approach h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--warmth-gold);
}

.practice-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.practice-steps li {
    counter-increment: step-counter;
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 3rem;
}

.practice-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 2rem;
    height: 2rem;
    background: var(--warmth-gold);
    color: var(--warmth-charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.practice-steps li strong {
    color: var(--warmth-gold);
    font-weight: 700;
}

@media (max-width: 968px) {
    .deep-learning-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .learning-level.strategic {
        transform: scale(1);
    }
    
    .learning-level.strategic:hover {
        transform: translateY(-5px) scale(1);
    }
}

@media (max-width: 768px) {
    .methodology-intro {
        display: none;
    }
    
    .intro-card {
        padding: 2rem 1.5rem;
    }
    
    .intro-card h3 {
        font-size: 1.3rem;
    }
    
    .intro-card p {
        font-size: 1rem;
    }
    
    .learning-level {
        padding: 2rem 1.5rem;
    }
    
    .level-icon {
        font-size: 2.5rem;
    }
    
    .emphasis-card {
        padding: 2rem 1.5rem;
    }
    
    .emphasis-header h3 {
        font-size: 1.5rem;
    }
    
    .practice-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-vs {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .our-approach {
        padding: 1.5rem;
    }
    
    .practice-steps li {
        padding-left: 2.5rem;
        font-size: 0.95rem;
    }
    
    .practice-steps li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
        top: 0.9rem;
    }
}

/* ==========================================================================
   ENHANCED BUSINESS INTEGRATIONS SECTION
   Premium styling for business integration showcase with flow and cards
   ========================================================================== */

.business-integrations-showcase {
    max-width: 75rem;
    margin: 0 auto;
}

/* Integration Flow */
.integrations-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 25px 15px 30px 20px;
    box-shadow: var(--shadow-soft);
    transform: rotate(0deg);
    position: relative;
    overflow: hidden;
}

.integrations-flow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(42, 92, 78, 0.02) 0%, transparent 70%);
    animation: flow-pulse 20s ease-in-out infinite;
}

@keyframes flow-pulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(3deg) scale(1.02); }
}

.flow-step {
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 140px;
}

.flow-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem auto;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--ease-organic);
}

.flow-step.action .flow-icon {
    background: linear-gradient(135deg, var(--warmth-accent) 0%, var(--warmth-plum) 100%);
}

.flow-step.automation .flow-icon {
    background: linear-gradient(135deg, var(--warmth-gold) 0%, rgba(212, 146, 90, 0.9) 100%);
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.flow-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.flow-step p {
    color: rgba(44, 38, 37, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--warmth-primary);
    font-weight: bold;
    position: relative;
    z-index: 2;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(5px); opacity: 1; }
}

/* Premium Integration Cards */
.integrations-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.integration-premium-card {
    background: white;
    border-radius: 20px 15px 25px 12px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: all 0.4s var(--ease-organic);
    transform: rotate(0deg);
    position: relative;
    border-top: 4px solid transparent;
}

.integration-premium-card.payments {
    border-top-color: #00d4aa;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.02) 0%, white 100%);
}

.integration-premium-card.email {
    border-top-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.02) 0%, white 100%);
}

.integration-premium-card.privacy {
    border-top-color: #a8e6cf;
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.02) 0%, white 100%);
}

.integration-premium-card:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: var(--shadow-strong);
}

.integration-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    position: relative;
}

.integration-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.integration-content {
    flex: 1;
}

.integration-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.integration-subtitle {
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.6);
    margin: 0;
    font-weight: 500;
}

.integration-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-gold) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px 6px 12px 6px;
}

.integration-details {
    padding: 0 2.5rem 2rem 2.5rem;
}

.integration-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(44, 38, 37, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.integration-feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

/* Enhanced Summary Section */
.integrations-summary .summary-content {
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.08) 0%, rgba(201, 74, 42, 0.05) 100%);
    border: 2px solid rgba(42, 92, 78, 0.15);
    padding: 2.5rem;
    border-radius: 25px 15px 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.integrations-summary .summary-content::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(ellipse at center, rgba(42, 92, 78, 0.02) 0%, transparent 70%);
    animation: summary-glow 25s ease-in-out infinite;
}

@keyframes summary-glow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(8deg) scale(1.05); }
}

.integrations-summary h3 {
    color: var(--warmth-accent);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.integrations-summary p {
    color: rgba(44, 38, 37, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 2;
}

.summary-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

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

.stat-highlight .stat-number {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warmth-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-highlight .stat-label {
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .integrations-flow {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .flow-step {
        min-width: auto;
    }
    
    .flow-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.8rem;
    }
    
    .integrations-premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integration-header {
        padding: 1.5rem 2rem 1.2rem 2rem;
    }
    
    .integration-details {
        padding: 0 2rem 1.8rem 2rem;
    }
    
    .integration-badge {
        position: static;
        margin-top: 1rem;
        align-self: flex-start;
    }
    
    .integrations-summary .summary-content {
        padding: 2rem 1.5rem;
    }
    
    .summary-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-highlight .stat-number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   BUSINESS INTEGRATIONS SECTION (LEGACY)
   Styling for business integration cards with different border colors
   ========================================================================== */

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.integration-card {
    background: white;
    border-radius: 18px 12px 20px 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-organic);
    transform: rotate(0deg);
    position: relative;
    overflow: hidden;
}

.integration-card.payments {
    border-left: 4px solid #00d4aa;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.02) 0%, white 100%);
}

.integration-card.email {
    border-left: 4px solid #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.02) 0%, white 100%);
}

.integration-card.crm {
    border-left: 4px solid #4ecdc4;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.02) 0%, white 100%);
}

.integration-card.privacy {
    border-left: 4px solid #a8e6cf;
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.02) 0%, white 100%);
}

.integration-card:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: var(--shadow-medium);
}

.integration-card:nth-child(even) {
    transform: rotate(0deg);
}

.integration-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(0deg);
}

.integration-header {
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    position: relative;
}

.integration-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.integration-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.integration-header p {
    color: rgba(44, 38, 37, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.integration-details {
    padding: 0 2.5rem 2rem 2.5rem;
}

.integration-method {
    background: rgba(44, 38, 37, 0.03);
    padding: 1rem 1.2rem;
    border-radius: 12px 8px 12px 8px;
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.8);
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(44, 38, 37, 0.08);
}

.integration-card.payments .integration-method {
    background: rgba(0, 212, 170, 0.08);
    border-color: rgba(0, 212, 170, 0.2);
    color: #00a085;
}

.integration-card.email .integration-method {
    background: rgba(255, 107, 107, 0.08);
    border-color: rgba(255, 107, 107, 0.2);
    color: #e55555;
}

.integration-card.crm .integration-method {
    background: rgba(78, 205, 196, 0.08);
    border-color: rgba(78, 205, 196, 0.2);
    color: #3eb8b0;
}

.integration-card.privacy .integration-method {
    background: rgba(168, 230, 207, 0.08);
    border-color: rgba(168, 230, 207, 0.2);
    color: #8bc9a4;
}

.integrations-summary {
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.05) 0%, rgba(201, 74, 42, 0.03) 100%);
    border: 2px solid rgba(42, 92, 78, 0.15);
    padding: 2rem 2.5rem;
    border-radius: 20px 15px 25px 12px;
    text-align: center;
    max-width: 55rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.integrations-summary::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(ellipse at center, rgba(42, 92, 78, 0.02) 0%, transparent 70%);
    animation: integration-glow 25s ease-in-out infinite;
}

@keyframes integration-glow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(8deg) scale(1.05); }
}

.integrations-summary h3 {
    color: var(--warmth-accent);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.integrations-summary p {
    color: rgba(44, 38, 37, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Business Integrations Mobile Responsive */
@media (max-width: 768px) {
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integration-card {
        transform: rotate(0deg);
    }
    
    .integration-card:hover {
        transform: translateY(-5px) rotate(0deg);
    }
    
    .integration-header {
        padding: 1.5rem 2rem 1.2rem 2rem;
    }
    
    .integration-icon {
        font-size: 2.2rem;
    }
    
    .integration-header h3 {
        font-size: 1.2rem;
    }
    
    .integration-details {
        padding: 0 2rem 1.8rem 2rem;
    }
    
    .integrations-summary {
        padding: 1.8rem 2rem;
    }
    
    .integrations-summary h3 {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   AI MODELS & TOOLS SECTION
   Styling for AI models recommendations and tools
   ========================================================================== */

.ai-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.model-card {
    background: white;
    border-radius: 20px 15px 25px 12px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: all 0.4s var(--ease-organic);
    transform: rotate(0deg);
    position: relative;
}

.model-card.primary {
    border: 3px solid var(--warmth-primary);
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.02) 0%, white 100%);
    transform: scale(1.02);
}

.model-card.alternative {
    border: 2px solid var(--warmth-accent);
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.02) 0%, white 100%);
}

.model-card.updates {
    border: 2px solid var(--warmth-gold);
    background: linear-gradient(135deg, rgba(212, 146, 90, 0.02) 0%, white 100%);
    transform: rotate(0deg);
}

.model-card:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: var(--shadow-strong);
}

.model-card.primary:hover {
    transform: translateY(-8px) scale(1.02);
}

.model-header {
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-gold) 100%);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.model-card.alternative .model-header {
    background: linear-gradient(135deg, var(--warmth-accent) 0%, var(--warmth-plum) 100%);
}

.model-card.updates .model-header {
    background: linear-gradient(135deg, var(--warmth-gold) 0%, rgba(212, 146, 90, 0.9) 100%);
}

.model-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: model-glow 12s ease-in-out infinite;
}

@keyframes model-glow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.model-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.model-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    position: relative;
    z-index: 2;
}

.model-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px 8px 15px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.model-badge.recommended {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.model-content {
    padding: 2rem 2.5rem 2.5rem 2.5rem;
}

.model-item {
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    background: rgba(201, 74, 42, 0.03);
    border-radius: 12px 8px 12px 8px;
    border-left: 3px solid var(--warmth-primary);
    line-height: 1.5;
}

.model-card.alternative .model-item {
    background: rgba(42, 92, 78, 0.03);
    border-left-color: var(--warmth-accent);
}

.model-card.updates .update-item {
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    background: rgba(212, 146, 90, 0.03);
    border-radius: 12px 8px 12px 8px;
    border-left: 3px solid var(--warmth-gold);
    line-height: 1.5;
}

.model-item strong,
.update-item strong {
    color: var(--warmth-charcoal);
    font-weight: 700;
}

.model-tools {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 74, 42, 0.1);
}

.model-tools h4 {
    color: var(--warmth-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.model-tools ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-tools li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(201, 74, 42, 0.05);
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.5;
}

.model-tools li:last-child {
    border-bottom: none;
}

.model-note {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.08) 0%, rgba(42, 92, 78, 0.03) 100%);
    border-radius: 15px 10px 15px 10px;
    border: 1px solid rgba(42, 92, 78, 0.2);
}

.model-note p {
    margin: 0;
    color: var(--warmth-accent);
    font-weight: 600;
    line-height: 1.5;
}

.models-summary {
    max-width: 65rem;
    margin: 0 auto;
}

.summary-box {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(232, 180, 143, 0.1) 100%);
    border: 2px solid rgba(201, 74, 42, 0.15);
    padding: 2.5rem;
    border-radius: 20px 15px 25px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.summary-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 74, 42, 0.02) 0%, transparent 70%);
    animation: summary-pulse 20s ease-in-out infinite;
}

@keyframes summary-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.summary-box h3 {
    color: var(--warmth-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.summary-box p {
    color: rgba(44, 38, 37, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* AI Models Mobile Responsive */
@media (max-width: 768px) {
    .ai-models-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .model-card.primary {
        transform: scale(1);
    }
    
    .model-card.updates {
        transform: rotate(0deg);
    }
    
    .model-card:hover {
        transform: translateY(-5px) rotate(0deg);
    }
    
    .model-card.primary:hover {
        transform: translateY(-5px) scale(1);
    }
    
    .model-header {
        padding: 1.5rem 2rem 1.2rem 2rem;
    }
    
    .model-icon {
        font-size: 2.5rem;
    }
    
    .model-header h3 {
        font-size: 1.2rem;
    }
    
    .model-content {
        padding: 1.8rem 2rem 2rem 2rem;
    }
    
    .summary-box {
        padding: 2rem 1.5rem;
    }
    
    .summary-box h3 {
        font-size: 1.3rem;
    }
    
    .summary-box p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   SIMPLE DEPLOYMENT SECTION
   Styling for deployment workflow with numbered steps
   ========================================================================== */

.deployment-workflow {
    max-width: 60rem;
    margin: 0 auto;
}

.deployment-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
    padding: 2rem 2.5rem;
    background: white;
    border-radius: 20px 15px 25px 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-organic);
    transform: rotate(0deg);
    position: relative;
}

.deployment-step:nth-child(even) {
    transform: rotate(0deg);
    grid-template-columns: 1fr auto;
    text-align: right;
}

.deployment-step:nth-child(even) .step-content {
    order: 1;
}

.deployment-step:nth-child(even) .step-number {
    order: 2;
}

.deployment-step:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-gold) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.deployment-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, var(--warmth-accent) 0%, var(--warmth-plum) 100%);
}

.deployment-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, var(--warmth-gold) 0%, rgba(212, 146, 90, 0.9) 100%);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.step-content p {
    color: rgba(44, 38, 37, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.deployment-highlight {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.08) 0%, rgba(232, 180, 143, 0.05) 100%);
    border: 2px solid rgba(201, 74, 42, 0.15);
    padding: 2rem 2.5rem;
    border-radius: 20px 15px 25px 12px;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.deployment-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 74, 42, 0.03) 0%, transparent 70%);
    animation: deployment-glow 18s ease-in-out infinite;
}

@keyframes deployment-glow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.08); }
}

.deployment-highlight h3 {
    color: var(--warmth-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.deployment-highlight p {
    color: rgba(44, 38, 37, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Simple Deployment Mobile Responsive */
@media (max-width: 768px) {
    .deployment-step {
        grid-template-columns: auto 1fr !important;
        text-align: left !important;
        padding: 1.8rem 2rem;
        gap: 1.5rem;
        margin-bottom: 2rem;
        transform: rotate(0deg);
    }
    
    .deployment-step:nth-child(even) .step-content {
        order: 2;
    }
    
    .deployment-step:nth-child(even) .step-number {
        order: 1;
    }
    
    .deployment-step:hover {
        transform: translateY(-3px) rotate(0deg);
    }
    
    .step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .deployment-highlight {
        padding: 1.8rem 2rem;
    }
    
    .deployment-highlight h3 {
        font-size: 1.3rem;
    }
    
    .deployment-highlight p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   BUSINESS CASES SECTION
   Enhanced styling for real business case studies
   ========================================================================== */

.business-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.case-item {
    background: white;
    border-radius: 20px 15px 25px 12px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transform: rotate(0deg);
    transition: all 0.4s var(--ease-organic);
    position: relative;
}

.case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warmth-primary) 0%, var(--warmth-gold) 50%, var(--warmth-accent) 100%);
    border-radius: 20px 15px 0 0;
}

.case-item:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: var(--shadow-strong);
}

.case-item:nth-child(2n) {
    transform: rotate(0deg);
}

.case-item:nth-child(2n):hover {
    transform: translateY(-8px) rotate(0deg);
}

.case-header {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(232, 180, 143, 0.1) 100%);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.case-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(201, 74, 42, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: case-glow 15s ease-in-out infinite;
}

@keyframes case-glow {
    0%, 100% { transform: rotate(0deg) translateX(0); }
    50% { transform: rotate(10deg) translateX(-10px); }
}

.case-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.case-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--warmth-accent) 0%, var(--warmth-plum) 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 15px 8px 15px 8px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-content {
    padding: 2rem 2.5rem 2.5rem 2.5rem;
}

.case-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(44, 38, 37, 0.8);
    font-size: 1rem;
}

.case-content p strong {
    color: var(--warmth-primary);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.case-content p:last-of-type {
    margin-bottom: 2rem;
}

.case-result {
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.1) 0%, rgba(42, 92, 78, 0.05) 100%);
    padding: 1.2rem 1.5rem;
    border-radius: 12px 8px 12px 8px;
    border-left: 4px solid var(--warmth-accent);
    color: var(--warmth-accent);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.case-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(42, 92, 78, 0.03) 50%, transparent 100%);
    animation: result-shimmer 3s ease-in-out infinite;
}

@keyframes result-shimmer {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* Business Cases Mobile Responsive */
@media (max-width: 768px) {
    .business-cases {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .case-item {
        transform: rotate(0deg);
    }
    
    .case-item:hover {
        transform: translateY(-5px) rotate(0deg);
    }
    
    .case-header {
        padding: 1.5rem 2rem 1.2rem 2rem;
    }
    
    .case-header h3 {
        font-size: 1.3rem;
    }
    
    .case-content {
        padding: 1.8rem 2rem 2rem 2rem;
    }
    
    .case-content p {
        font-size: 0.95rem;
    }
    
    .case-result {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   ENHANCED COMPARISON SECTION
   Premium styling for AI vs Traditional comparison battle
   ========================================================================== */

.comparison-showcase {
    max-width: 75rem;
    margin: 0 auto;
}

/* Battle Comparison */
.comparison-battle {
    margin-bottom: 4rem;
}

.battle-header {
    text-align: center;
    margin-bottom: 3rem;
}

.battle-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.battle-header p {
    font-size: 1.1rem;
    color: rgba(44, 38, 37, 0.7);
    margin: 0;
}

.battle-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.battle-card {
    background: white;
    border-radius: 25px 15px 30px 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-organic);
    transform: rotate(0deg);
}

.battle-card.winner {
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.02) 0%, white 100%);
    border: 3px solid var(--warmth-accent);
    transform: scale(1.02);
}

.battle-card:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: var(--shadow-strong);
}

.battle-card.winner:hover {
    transform: translateY(-5px) scale(1.02);
}

.battle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.battle-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.battle-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(44, 38, 37, 0.6);
    margin-bottom: 2rem;
    font-style: italic;
}

.battle-items {
    margin-bottom: 2rem;
}

.battle-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(44, 38, 37, 0.08);
}

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

.item-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    text-align: center;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
}

.item-content strong {
    display: block;
    color: var(--warmth-charcoal);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.item-content span {
    color: rgba(44, 38, 37, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.item-cost {
    color: #dc3545;
    font-weight: 700;
    font-size: 0.95rem;
    background: rgba(220, 53, 69, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 12px 6px 12px 6px;
}

.item-benefit {
    color: var(--warmth-accent);
    font-weight: 700;
    font-size: 0.95rem;
    background: rgba(42, 92, 78, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 12px 6px 12px 6px;
}

.battle-result {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px 10px 15px 10px;
    position: relative;
    overflow: hidden;
}

.battle-result.negative {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border: 2px solid rgba(220, 53, 69, 0.2);
}

.battle-result.positive {
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.1) 0%, rgba(42, 92, 78, 0.05) 100%);
    border: 2px solid rgba(42, 92, 78, 0.2);
}

.result-cost {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.battle-result.negative .result-cost {
    color: #dc3545;
}

.battle-result.positive .result-cost {
    color: var(--warmth-accent);
}

.result-label {
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-features span {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.3rem 0;
}

/* Battle VS */
.battle-vs {
    text-align: center;
    position: relative;
    z-index: 2;
}

.vs-circle {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-gold) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
    margin: 0 auto 1rem auto;
    animation: vs-pulse 3s ease-in-out infinite;
}

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

.vs-lightning {
    font-size: 2rem;
    animation: lightning-flash 2s ease-in-out infinite;
}

@keyframes lightning-flash {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* AI Superpowers */
.ai-superpowers {
    margin-bottom: 4rem;
}

.ai-superpowers h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    margin-bottom: 2rem;
}

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

.superpower-card {
    background: white;
    border-radius: 20px 15px 25px 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-organic);
    transform: rotate(0deg);
    position: relative;
    overflow: hidden;
}

.superpower-card.intelligence {
    border-left: 4px solid var(--warmth-primary);
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.02) 0%, white 100%);
}

.superpower-card.speed {
    border-left: 4px solid var(--warmth-accent);
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.02) 0%, white 100%);
}

.superpower-card:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: var(--shadow-medium);
}

.superpower-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.superpower-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.superpower-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    margin: 0;
    line-height: 1.3;
}

.superpower-card p {
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.superpower-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(42, 92, 78, 0.08);
    border-radius: 12px 8px 12px 8px;
    color: var(--warmth-accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.superpower-card.intelligence .superpower-benefit {
    background: rgba(201, 74, 42, 0.08);
    color: var(--warmth-primary);
}

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

/* Bottom Line Summary */
.comparison-bottom-line {
    text-align: center;
}

.bottom-line-content {
    background: linear-gradient(135deg, rgba(212, 146, 90, 0.1) 0%, rgba(232, 180, 143, 0.05) 100%);
    border: 3px solid var(--warmth-gold);
    border-radius: 25px 15px 30px 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.bottom-line-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212, 146, 90, 0.05) 0%, transparent 70%);
    animation: bottom-line-glow 20s ease-in-out infinite;
}

@keyframes bottom-line-glow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.05); }
}

.bottom-line-savings {
    text-align: center;
    position: relative;
    z-index: 2;
}

.savings-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--warmth-gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.savings-label {
    font-size: 1rem;
    color: rgba(44, 38, 37, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.bottom-line-plus {
    font-size: 3rem;
    font-weight: 700;
    color: var(--warmth-primary);
    position: relative;
    z-index: 2;
}

.bottom-line-benefits {
    text-align: left;
    position: relative;
    z-index: 2;
}

.bottom-line-benefits h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warmth-primary);
    margin-bottom: 1rem;
}

.bottom-line-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bottom-line-benefits li {
    padding: 0.3rem 0;
    color: rgba(44, 38, 37, 0.8);
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.bottom-line-benefits li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0.3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .battle-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .battle-vs {
        order: 2;
    }
    
    .battle-side.ai-powered {
        order: 3;
    }
    
    .battle-card {
        transform: rotate(0deg);
        padding: 2rem;
    }
    
    .battle-card.winner {
        transform: rotate(0deg);
    }
    
    .battle-header h3 {
        font-size: 1.5rem;
    }
    
    .battle-card h4 {
        font-size: 1.3rem;
    }
    
    .result-cost {
        font-size: 2rem;
    }
    
    .vs-circle {
        width: 4rem;
        height: 4rem;
        font-size: 1.2rem;
    }
    
    .superpowers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .superpower-card {
        transform: rotate(0deg);
    }
    
    .bottom-line-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .savings-amount {
        font-size: 2.5rem;
    }
    
    .bottom-line-plus {
        font-size: 2rem;
        transform: rotate(90deg);
    }
    
    .bottom-line-benefits {
        text-align: center;
    }
}

/* ==========================================================================
   FINAL CTA SECTION
   Simple post-FAQ button to return to pricing
   ========================================================================== */

.final-cta {
    text-align: center;
    max-width: 30rem;
    margin: 0 auto;
}

.final-cta-btn {
    display: inline-block;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem 1.3rem 2.3rem;
    margin: 0;
}

@keyframes gentle-pulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(0deg) scale(1.02); }
}

.stat-badge {
    background: rgba(201, 74, 42, 0.1);
    color: var(--warmth-primary);
    padding: 0.5rem 1rem;
    border-radius: 12px 8px 12px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.visual-badge {
    background: var(--warmth-gold);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transform: rotate(0deg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--warmth-primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(-2deg);
}

.pricing-card.recommended .pricing-badge {
    background: var(--warmth-gold);
    transform: rotate(0deg);
}

.certificate-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-align: center;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.certificate-badge.advanced {
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Certificate floating image styling */
.certificate-floating-image {
    position: absolute;
    top: -50px;
    right: -20px;
    width: 160px;
    height: 160px;
    z-index: 10;
    pointer-events: none;
}

.certificate-floating-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s var(--ease-organic);
}

.certificate-card:hover .certificate-floating-image img {
    transform: scale(1.05);
}

/* Fix for CAIBA size to match CAIWB */
.certificate-card.caiba .certificate-floating-image img {
    transform: scale(1.15);
}

.certificate-card.caiba:hover .certificate-floating-image img {
    transform: scale(1.2);
}

/* ==========================================================================
   CARDS
   Visual, problem, pricing, expert, certificate and benefit cards
   ========================================================================== */

.visual-card {
    background: white;
    border-radius: 20px 15px 25px 10px; /* Irregular border-radius */
    padding: 2.5rem 2.1rem 2.8rem 2.3rem;
    box-shadow: var(--shadow-medium);
    transform: rotate(0deg);
    transition: transform 0.4s var(--ease-organic);
}

.visual-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.problem-card {
    background: white;
    padding: 2.2rem 2rem 2.4rem 1.9rem;
    border-radius: 18px 12px 20px 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-organic);
    position: relative;
    transform: rotate(0deg);
}

.problem-card:nth-child(even) {
    transform: rotate(0deg);
}

.problem-card:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: var(--shadow-medium);
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.problem-card p {
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
}

.problem-card strong {
    color: var(--warmth-primary);
}

.pricing-card {
    background: white;
    border-radius: 20px 15px 25px 10px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    transform: rotate(0deg);
    transition: all 0.4s var(--ease-organic);
}

.pricing-card.recommended {
    transform: rotate(0deg) scale(1.05);
    background: linear-gradient(135deg, white 0%, rgba(201, 74, 42, 0.02) 100%);
    border: 2px solid var(--warmth-primary);
}

.pricing-card:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: var(--shadow-strong);
}

.expert-card {
    background: white;
    border-radius: 25px 15px 30px 20px;
    padding: 3rem 2.8rem 3.2rem 2.5rem;
    box-shadow: var(--shadow-medium);
    max-width: 50rem;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: transform 0.4s var(--ease-organic);
}

.expert-card:hover {
    transform: rotate(0deg) scale(1.02);
}

/* ==========================================================================
   CERTIFICATES REDESIGNED - MODERN LAYOUT
   ========================================================================== */

.certificates-redesigned {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-modern {
    background: linear-gradient(145deg, rgba(251, 247, 242, 0.8) 0%, white 100%);
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(201, 74, 42, 0.08),
        0 4px 20px rgba(42, 92, 78, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    position: relative;
    transition: all 0.5s var(--ease-organic);
    backdrop-filter: blur(10px);
}

.certificate-modern:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(201, 74, 42, 0.12),
        0 8px 30px rgba(42, 92, 78, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Certificate Visual Section */
.cert-visual {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.cert-badge {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}

.cert-badge img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.cert-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(40px);
    z-index: 1;
    animation: cert-pulse 3s ease-in-out infinite;
}

.caiwb-glow {
    background: radial-gradient(circle, var(--warmth-primary) 0%, transparent 70%);
}

.caiba-glow {
    background: radial-gradient(circle, var(--warmth-accent) 0%, transparent 70%);
}

@keyframes cert-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Certificate Content */
.cert-content {
    padding: 0 2rem 2.5rem 2rem;
}

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

.cert-code {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.caiwb-cert .cert-code {
    color: var(--warmth-primary);
}

.caiba-cert .cert-code {
    color: var(--warmth-accent);
}

.cert-value {
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-gold) 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(201, 74, 42, 0.3);
}

.cert-bonus {
    background: linear-gradient(135deg, var(--warmth-accent) 0%, var(--warmth-plum) 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(42, 92, 78, 0.3);
}

.cert-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--warmth-charcoal);
    line-height: 1.3;
}

.cert-desc {
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Certificate Features */
.cert-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cert-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.8);
    transition: all 0.3s var(--ease-organic);
}

.cert-feature.voucher {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.08) 0%, rgba(212, 146, 90, 0.04) 100%);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 74, 42, 0.15);
}

.cert-feature.auto {
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.08) 0%, rgba(107, 76, 122, 0.04) 100%);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(42, 92, 78, 0.15);
}

.cert-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--warmth-primary);
}

.caiba-cert .cert-icon {
    color: var(--warmth-accent);
}

.cert-feature.voucher .cert-icon {
    color: var(--warmth-gold);
}

.cert-feature.auto .cert-icon {
    color: var(--warmth-accent);
}

.benefit-card {
    background: white;
    border-radius: 18px 12px 20px 15px;
    padding: 2.5rem 2.2rem 2.8rem 2.4rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-organic);
    transform: rotate(0deg);
}

.benefit-card.bonus-card {
    background: linear-gradient(135deg, rgba(212, 146, 90, 0.05) 0%, rgba(212, 146, 90, 0.02) 100%);
    border: 2px solid rgba(212, 146, 90, 0.2);
}

.benefit-card.value-card {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(201, 74, 42, 0.02) 100%);
    border: 2px solid rgba(201, 74, 42, 0.2);
    transform: rotate(0deg);
}

.benefit-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-medium);
}

/* ==========================================================================
   VIDEO COMPONENTS
   Video containers and placeholders
   ========================================================================== */

.video-container {
    background: white;
    border-radius: 20px 15px 25px 10px;
    padding: 1.5rem; /* Zmniejszony padding */
    box-shadow: var(--shadow-medium);
    transform: rotate(0deg);
    transition: transform 0.4s var(--ease-organic);
}

.video-container:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(42, 92, 78, 0.05) 100%);
    border-radius: 15px 12px 18px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s var(--ease-organic);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-play-button {
    margin-bottom: 1.5rem;
    transition: transform 0.3s var(--ease-bounce);
}

.video-placeholder:hover .video-play-button {
    transform: scale(1.1);
}

.video-text h3 {
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.video-text p {
    color: rgba(44, 38, 37, 0.7);
    font-size: 0.95rem;
}

.video-stats {
    margin-top: 1.5rem;
    text-align: center;
}

/* ==========================================================================
   ICONS & GRAPHICAL ELEMENTS
   Icons, decorative elements and visual aids
   ========================================================================== */

.problem-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(201, 74, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--warmth-primary);
}

.benefit-icon {
    font-size: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.certificate-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    opacity: 0.8;
}

/* Legacy certificate styles - keeping for backward compatibility */
.certificate-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.certificate-content {
    text-align: left;
}

@keyframes certificate-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(1deg); }
}

/* ==========================================================================
   STATISTICS & DATA DISPLAY
   Stat items, numbers, labels and data visualization
   ========================================================================== */

.visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(232, 180, 143, 0.1);
    border-radius: 12px 8px 12px 8px;
    transform: rotate(0deg);
}

.stat-item:nth-child(even) {
    transform: rotate(0deg);
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--warmth-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(44, 38, 37, 0.7);
    margin-top: 0.3rem;
}

.expert-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 74, 42, 0.1);
}

.expert-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(232, 180, 143, 0.08);
    border-radius: 12px 8px 15px 10px;
}

.expert-stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--warmth-primary);
    line-height: 1;
}

.expert-stat-label {
    font-size: 0.85rem;
    color: rgba(44, 38, 37, 0.7);
    margin-top: 0.3rem;
}

/* ==========================================================================
   TIMELINE COMPONENTS
   Timeline items, markers and content blocks
   ========================================================================== */

.timeline {
    position: relative;
    max-width: 50rem;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--warmth-primary), var(--warmth-gold), var(--warmth-accent));
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3.2rem;
    padding-left: 5.5rem;
}

.timeline-marker {
    position: absolute;
    left: 0.8rem;
    top: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--warmth-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
}

.timeline-content {
    background: white;
    padding: 2rem 1.9rem 2.2rem 2.1rem;
    border-radius: 15px 25px 15px 25px;
    box-shadow: var(--shadow-soft);
    transform: rotate(0deg);
    transition: all 0.3s var(--ease-organic);
}

.timeline-item:nth-child(even) .timeline-content {
    transform: rotate(0deg);
}

.timeline-content:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warmth-accent);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ==========================================================================
   PRICING COMPONENTS
   Pricing headers, features, values and related elements
   ========================================================================== */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 74, 42, 0.1);
    padding-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 500;
    color: var(--warmth-primary);
    line-height: 1;
}

.pricing-currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.pricing-period {
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.6);
    margin-top: 0.3rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.pricing-features .checkmark {
    color: var(--warmth-accent);
    font-weight: 600;
}

.pricing-features .cross {
    color: #ccc;
}

.pricing-cta {
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   CERTIFICATE COMPONENTS
   Certificate headers, bodies, requirements and values
   ========================================================================== */

.certificate-header {
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-gold) 100%);
    padding: 2rem 2.5rem 2.2rem 2.3rem;
    position: relative;
    overflow: hidden;
}

.certificate-card.caiba .certificate-header {
    background: linear-gradient(135deg, var(--warmth-accent) 0%, var(--warmth-plum) 100%);
}

.certificate-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: certificate-shimmer 4s ease-in-out infinite;
}

@keyframes certificate-shimmer {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

.certificate-body {
    padding: 2.5rem 2.3rem 2.8rem 2.5rem;
}

.certificate-body h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.certificate-subtitle {
    font-size: 1.05rem;
    color: var(--warmth-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: left;
}

.certificate-card.caiba .certificate-subtitle {
    color: var(--warmth-accent);
}

.certificate-description {
    margin-bottom: 1.5rem;
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    text-align: left;
}

.certificate-requirements h4 {
    color: var(--warmth-charcoal);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.requirements-list {
    list-style: none;
    margin-bottom: 2rem;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.5;
}

.requirement-dot {
    width: 8px;
    height: 8px;
    background: var(--warmth-primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
    box-shadow: 0 0 0 3px rgba(201, 74, 42, 0.2);
}

.requirement-dot.advanced {
    background: var(--warmth-accent);
    box-shadow: 0 0 0 3px rgba(42, 92, 78, 0.2);
}

.certificate-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(201, 74, 42, 0.05);
    border-radius: 15px 10px 15px 10px;
    border: 1px solid rgba(201, 74, 42, 0.1);
}

.certificate-card.caiba .certificate-value {
    background: rgba(42, 92, 78, 0.05);
    border: 1px solid rgba(42, 92, 78, 0.1);
}

.value-label {
    font-weight: 500;
    color: rgba(44, 38, 37, 0.7);
}

.value-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warmth-primary);
}

.certificate-card.caiba .value-price {
    color: var(--warmth-accent);
}

/* ==========================================================================
   BENEFIT COMPONENTS
   Benefit headers, content and bonus details
   ========================================================================== */

.certificate-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 65rem;
    margin: 0 auto;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    line-height: 1.2;
}

.bonus-highlight {
    color: var(--warmth-gold);
    font-weight: 600;
}

.benefit-content p {
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bonus-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 146, 90, 0.2);
}

/* ==========================================================================
   EXPERT COMPONENTS
   Expert profile, photo, info and story elements
   ========================================================================== */

.expert-section {
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.02) 0%, rgba(201, 74, 42, 0.02) 100%);
}

.expert-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.expert-photo {
    width: 6rem;
    height: 6rem;
    border-radius: 50% 40% 50% 40%;
    object-fit: cover;
    border: 3px solid var(--warmth-secondary);
}

.expert-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 0.3rem;
}

.expert-info p {
    color: rgba(44, 38, 37, 0.7);
    font-size: 1.05rem;
}

.expert-story {
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   Mobile and tablet adaptations for all components
   ========================================================================== */

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.8rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .header-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .visual-card,
    .problem-card,
    .pricing-card,
    .expert-card,
    .certificate-card,
    .benefit-card {
        transform: rotate(0deg);
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .timeline-item {
        padding-left: 3.5rem;
    }

    .timeline-marker {
        left: 0.3rem;
    }

    .expert-header {
        flex-direction: column;
        text-align: center;
    }

    .expert-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificate-header {
        padding: 1.8rem 1.5rem 2rem 1.5rem;
    }

    .certificate-body {
        padding: 2rem 1.5rem;
    }

    .certificate-badge {
        font-size: 1.5rem;
    }

    .certificate-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .visual-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   WEB.HTML SPECIFIC COMPONENTS
   Components specific to web.html page
   ========================================================================== */

/* Problem Cards */
.problem-card-primary {
    background: var(--bg-primary-light);
    border: 1px solid var(--border-primary-light);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.problem-card-accent {
    background: var(--bg-accent-light);
    border: 1px solid var(--border-accent-light);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Visual Cards with Colored Numbers */
.visual-card-numbered {
    padding: 2rem;
    text-align: center;
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.visual-card-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.visual-card-number-primary {
    background: var(--warmth-primary);
}

.visual-card-number-accent {
    background: var(--warmth-accent);
}

.visual-card-number-gold {
    background: var(--warmth-gold);
}

.visual-card-number-plum {
    background: var(--warmth-plum);
}

/* Colored Text Badges */
.text-badge {
    padding: 0.8rem;
    border-radius: 10px;
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 600;
}

.text-badge-primary {
    background: var(--bg-primary-medium);
    color: var(--warmth-primary);
}

.text-badge-accent {
    background: var(--bg-accent-medium);
    color: var(--warmth-accent);
}

.text-badge-gold {
    background: var(--bg-gold-medium);
    color: var(--warmth-gold);
}

.text-badge-plum {
    background: var(--bg-plum-medium);
    color: var(--warmth-plum);
}

/* Video Container */
.video-container-responsive {
    padding: 56.25% 0 0 0;
    position: relative;
}

.video-container-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Icon Circles for Three Pillars */
.icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: white;
    border: 3px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.icon-circle-primary {
    border-color: var(--warmth-primary);
}

.icon-circle-gold {
    border-color: var(--warmth-gold);
}

.icon-circle-accent {
    border-color: var(--warmth-accent);
}

/* Mixed Background Cards */
.card-mixed-gradient {
    background: var(--bg-mixed-gradient);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem auto 0;
    max-width: 800px;
    border: 1px solid var(--border-primary-light);
}

/* Section Background */
.section-cream-gradient {
    background: var(--bg-cream-gradient);
}

/* ==========================================================================
   CERTIFICATES MOBILE RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 768px) {
    .certificates-redesigned {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .certificate-modern {
        border-radius: 20px;
    }
    
    .cert-visual {
        padding: 1.5rem;
        min-height: 140px;
    }
    
    .cert-badge {
        width: 80px;
        height: 80px;
    }
    
    .cert-badge img {
        width: 60px;
        height: 60px;
    }
    
    .cert-glow {
        width: 150px;
        height: 150px;
    }
    
    .cert-content {
        padding: 0 1.5rem 2rem 1.5rem;
    }
    
    .cert-code {
        font-size: 1.8rem;
    }
    
    .cert-value,
    .cert-bonus {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .cert-title {
        font-size: 1rem;
    }
    
    .cert-desc {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .cert-features {
        gap: 0.6rem;
    }
    
    .cert-feature {
        font-size: 0.85rem;
        gap: 0.6rem;
    }
    
    .cert-feature.voucher,
    .cert-feature.auto {
        padding: 0.6rem 0.8rem;
    }
    
    .cert-icon {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   CERTIFICATE HIGHLIGHTS - BOTTOM SECTION
   ========================================================================== */

.cert-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.cert-highlight-voucher,
.cert-highlight-auto {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-organic);
}

.cert-highlight-voucher {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.1) 0%, rgba(212, 146, 90, 0.05) 100%);
    border: 2px solid rgba(201, 74, 42, 0.2);
}

.cert-highlight-auto {
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.1) 0%, rgba(107, 76, 122, 0.05) 100%);
    border: 2px solid rgba(42, 92, 78, 0.2);
}

.cert-highlight-voucher:hover,
.cert-highlight-auto:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.cert-highlight-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cert-highlight-voucher .cert-highlight-icon {
    color: var(--warmth-primary);
}

.cert-highlight-auto .cert-highlight-icon {
    color: var(--warmth-accent);
}

.cert-highlights span {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--warmth-charcoal);
}

.cert-highlights strong {
    color: var(--warmth-primary);
    font-weight: 700;
}

.cert-highlight-auto strong {
    color: var(--warmth-accent);
}

/* Mobile Responsive for Highlights */
@media (max-width: 768px) {
    .cert-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .cert-highlight-voucher,
    .cert-highlight-auto {
        padding: 1.2rem 1.5rem;
        gap: 0.8rem;
    }
    
    .cert-highlight-icon {
        width: 28px;
        height: 28px;
        padding: 6px;
    }
    
    .cert-highlights span {
        font-size: 0.9rem;
    }
}


/* ==========================================================================
   SYLWIA TESTIMONIAL SECTION - REDESIGNED
   ========================================================================== */

.sylwia-section {
    background: linear-gradient(135deg, rgba(251, 247, 242, 0.3) 0%, rgba(232, 180, 143, 0.1) 100%);
    border-top: 1px solid rgba(201, 74, 42, 0.1);
    border-bottom: 1px solid rgba(201, 74, 42, 0.1);
}

.sylwia-testimonial {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.sylwia-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sylwia-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--warmth-charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.sylwia-subtitle {
    font-size: 1.1rem;
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Grid */
.sylwia-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Profile Card */
.sylwia-profile {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(201, 74, 42, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sylwia-profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warmth-primary) 0%, var(--warmth-gold) 100%);
}

.sylwia-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.sylwia-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 32px rgba(201, 74, 42, 0.15);
    position: relative;
    z-index: 2;
}

.sylwia-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 74, 42, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.sylwia-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
}

.sylwia-role {
    font-weight: 600;
    color: var(--warmth-primary);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.sylwia-experience {
    color: rgba(44, 38, 37, 0.7);
    font-size: 0.9rem;
}

/* Quote Section */
.sylwia-quote-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sylwia-main-quote {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(201, 74, 42, 0.06);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--warmth-charcoal);
    font-style: italic;
    border-left: 4px solid var(--warmth-primary);
    margin: 0;
    position: relative;
}

.sylwia-main-quote::before {
    content: """;
    font-size: 4rem;
    color: var(--warmth-primary);
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-family: var(--font-serif);
    opacity: 0.3;
}

/* Insights Cards */
.sylwia-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sylwia-insight {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s var(--ease-organic);
}

.sylwia-insight:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.finance-insight {
    border-top: 3px solid var(--warmth-gold);
}

.secret-insight {
    border-top: 3px solid var(--warmth-accent);
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.insight-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.finance-insight .insight-icon {
    color: var(--warmth-gold);
}

.secret-insight .insight-icon {
    color: var(--warmth-accent);
}

.insight-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin: 0;
}

.sylwia-insight p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(44, 38, 37, 0.8);
    margin: 0;
}

.sylwia-insight strong {
    color: var(--warmth-primary);
    font-weight: 600;
}

/* Website Showcase */
.sylwia-showcase {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(201, 74, 42, 0.08);
    text-align: center;
}

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

.showcase-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin-bottom: 1rem;
}

.showcase-domain {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.1) 0%, rgba(212, 146, 90, 0.05) 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(201, 74, 42, 0.2);
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    color: var(--warmth-primary);
    font-weight: 500;
}

.domain-icon {
    width: 18px;
    height: 18px;
}

.showcase-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.website-preview {
    width: 100%;
    height: auto;
    display: block;
}


/* ==========================================================================
   SYLWIA SECTION - MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .sylwia-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .sylwia-main-title {
        font-size: 2rem;
    }
    
    .sylwia-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile: Single Column Layout */
    .sylwia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Profile Card - Centered on Mobile */
    .sylwia-profile {
        padding: 1.5rem;
        order: 1;
    }
    
    .sylwia-image {
        width: 100px;
        height: 100px;
    }
    
    .sylwia-image-glow {
        width: 120px;
        height: 120px;
    }
    
    .sylwia-name {
        font-size: 1.2rem;
    }
    
    /* Quote Section on Mobile */
    .sylwia-quote-section {
        gap: 1.5rem;
        order: 2;
    }
    
    .sylwia-main-quote {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .sylwia-main-quote::before {
        font-size: 3rem;
        top: -0.3rem;
        left: 1rem;
    }
    
    /* Insights - Single Column on Mobile */
    .sylwia-insights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sylwia-insight {
        padding: 1.2rem;
    }
    
    .insight-header {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .insight-icon {
        width: 20px;
        height: 20px;
    }
    
    .insight-header h4 {
        font-size: 0.95rem;
    }
    
    .sylwia-insight p {
        font-size: 0.85rem;
    }
    
    /* Showcase on Mobile */
    .sylwia-showcase {
        padding: 1.5rem;
    }
    
    .showcase-header h4 {
        font-size: 1.1rem;
    }
    
    .showcase-domain {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .domain-icon {
        width: 16px;
        height: 16px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .sylwia-profile {
        padding: 1rem;
    }
    
    .sylwia-image {
        width: 80px;
        height: 80px;
    }
    
    .sylwia-image-glow {
        width: 100px;
        height: 100px;
    }
    
    .sylwia-main-quote {
        padding: 1.2rem;
    }
    
    .sylwia-insight {
        padding: 1rem;
    }
    
    .sylwia-showcase {
        padding: 1rem;
    }
}


/* ==========================================================================
   CERTIFICATE CARD HIGHLIGHTS - INTEGRATED FEATURES
   ========================================================================== */

.cert-voucher-highlight,
.cert-auto-highlight {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.08) 0%, rgba(212, 146, 90, 0.04) 100%) !important;
    border: 1px solid rgba(201, 74, 42, 0.2) !important;
    border-radius: 12px !important;
    padding: 1rem 1.2rem !important;
    margin-top: 0.5rem !important;
    transition: all 0.3s var(--ease-organic) !important;
}

.cert-auto-highlight {
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.08) 0%, rgba(107, 76, 122, 0.04) 100%) !important;
    border: 1px solid rgba(42, 92, 78, 0.2) !important;
}

.cert-voucher-highlight:hover,
.cert-auto-highlight:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

.cert-voucher-highlight .cert-icon {
    color: var(--warmth-gold) !important;
}

.cert-auto-highlight .cert-icon {
    color: var(--warmth-accent) !important;
}

.cert-voucher-highlight span,
.cert-auto-highlight span {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}

.cert-voucher-highlight strong,
.cert-auto-highlight strong {
    display: block !important;
    margin-bottom: 0.2rem !important;
    font-weight: 700 !important;
}

.cert-voucher-highlight strong {
    color: var(--warmth-primary) !important;
}

.cert-auto-highlight strong {
    color: var(--warmth-accent) !important;
}

.cert-voucher-highlight small,
.cert-auto-highlight small {
    opacity: 0.8 !important;
    font-size: 0.8rem !important;
    color: rgba(44, 38, 37, 0.7) !important;
}

/* Mobile adjustments for certificate highlights */
@media (max-width: 768px) {
    .cert-voucher-highlight,
    .cert-auto-highlight {
        padding: 0.8rem 1rem !important;
    }
    
    .cert-voucher-highlight span,
    .cert-auto-highlight span {
        font-size: 0.85rem !important;
    }
    
    .cert-voucher-highlight small,
    .cert-auto-highlight small {
        font-size: 0.75rem !important;
    }
}


/* ==========================================================================
   WEBSITE PREVIEW - SMALLER WINDOW FOR BETTER QUALITY
   ========================================================================== */

.showcase-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    /* Limit maximum width for better image quality */
    max-width: 600px !important;
    margin: 0 auto !important;
}

.website-preview {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    /* Add slight border for better definition */
    border: 1px solid rgba(201, 74, 42, 0.1);
    border-radius: 8px;
}

/* Sylwia showcase specific adjustments */
.sylwia-showcase .showcase-image {
    max-width: 500px !important;
    margin: 0 auto;
}

.sylwia-showcase .website-preview {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s var(--ease-organic);
}

.sylwia-showcase .website-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

/* Mobile adjustments for smaller preview */
@media (max-width: 768px) {
    .showcase-image {
        max-width: 400px !important;
    }
    
    .sylwia-showcase .showcase-image {
        max-width: 350px !important;
    }
}

@media (max-width: 480px) {
    .showcase-image {
        max-width: 300px !important;
    }
    
    .sylwia-showcase .showcase-image {
        max-width: 280px !important;
    }
}

