/* ============================================
   SULIRAJT — Page-Specific Overrides
   Extends v2-landing.css with orange/warm accent theme
   ============================================ */

/* --- Page Accent Colors (Orange = Energy, Confidence, Readiness) --- */
:root {
    --v2-hero-gradient: linear-gradient(135deg, rgba(253, 230, 212, 0.8) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(214, 240, 235, 0.7) 100%);
    --v2-cta-gradient: linear-gradient(135deg, #13525b 0%, #1a7f8a 100%);
    --v2-cta-hover: linear-gradient(135deg, #1a7f8a 0%, #209cac 100%);
    --v2-hero-blob1: #ffb17a;
    --v2-hero-blob2: #92dcd0;
    --v2-text-gradient: linear-gradient(135deg, #1a7f8a 0%, #e87b3a 100%);
    --v2-accent-gradient: linear-gradient(90deg, #e87b3a 0%, #1a7f8a 100%);
    --v2-icon-gradient: linear-gradient(135deg, #fce0cd 0%, #d6f0eb 100%);
    --v2-banner-gradient: linear-gradient(135deg, var(--teal-dark) 0%, #1a4f5a 100%);
    --v2-outcomes-bg: linear-gradient(160deg, #fdf6ef 0%, #f6fdfc 45%, var(--cream) 100%);
    --v2-support-card-border: rgba(232, 148, 90, 0.14);
    --v2-support-card-hover-shadow: 0 12px 36px rgba(232, 148, 90, 0.16);
    --v2-support-card-hover-shadow-soft: 0 12px 36px rgba(232, 148, 90, 0.12);
    --v2-support-card-heading-color: var(--text-on-peach);
    --v2-support-card-accent-color: var(--orange);
    --v2-star-color: var(--orange);
    --v2-bullet-color: var(--orange-dark);
    --v2-deep-dive-bg: linear-gradient(160deg, #fdf6ef 0%, #fefcfb 50%, #f6fdfc 100%);
    --v2-bridge-bg: linear-gradient(135deg, #fdf6ef 0%, #fefcfb 50%, #f6fdfc 100%);
    --v2-warning-bg: linear-gradient(135deg, #fce0cd 0%, #d6f0eb 100%);
    /* FIX: Darker warning text for WCAG AA contrast on peach-light bg (was orange-dark ~2.8:1, now ~7:1) */
    --v2-warning-color: #7a3a15;
    --v2-warning-border: transparent;
    --v2-lead-bg: linear-gradient(135deg, var(--orange) 0%, var(--peach-light) 100%);
    --v2-lead-border: rgba(255, 255, 255, 0.55);
    --v2-pricing-bg: linear-gradient(160deg, #14454d 0%, var(--teal-dark) 35%, #1a6b75 70%, #1a5f5a 100%);
    --v2-featured-border: var(--orange);
    --v2-badge-gradient: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    --v2-badge-color: white;
    --v2-badge-shadow: rgba(232, 148, 90, 0.35);
    --v2-discount-bg: var(--peach-light);
    /* FIX: Darker discount text for WCAG AA contrast on peach-light bg */
    --v2-discount-color: #7a3a15;
    --v2-bonus-border: var(--peach-light);
    --v2-bonus-bar: linear-gradient(90deg, var(--orange) 0%, var(--teal) 100%);
    --v2-bonus-glow: rgba(232, 148, 90, 0.15);
    --v2-bonus-value-bg: linear-gradient(135deg, var(--peach-light) 0%, var(--orange) 100%);
    --v2-zs-border: var(--peach-light);
    --v2-additional-border: var(--orange);
    --v2-sticky-price-color: var(--teal);

    /* Module circle overrides (orange theme) */
    --v2-module-number-bg: var(--teal);
    --v2-module-highlight-bg: linear-gradient(135deg, var(--peach-light) 0%, white 100%);
    --v2-module-highlight-border: var(--orange);
    --v2-module-highlight-number-bg: #9e5420;

    /* Pricing glow overrides (orange theme) */
    --v2-pricing-border-gradient: linear-gradient(135deg, var(--orange), var(--teal), var(--orange-dark), var(--orange));
    --v2-pricing-glow-soft: rgba(232, 148, 90, 0.1);
    --v2-pricing-glow-strong: rgba(232, 148, 90, 0.2);
}

/* --- Pull-Quote: Orange gradient override --- */
/* FIX: White text for contrast on orange→teal gradient (teal-dark on orange = ~3.2:1, FAILS AA) */
.v2-pull-quote {
    background: linear-gradient(135deg, var(--orange) 0%, var(--teal) 100%);
    border-top-color: rgba(255, 255, 255, 0.15);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.v2-pull-quote p {
    color: white;
}

.v2-pull-quote span {
    color: rgba(255, 255, 255, 0.85);
}

/* --- Featured Testimonial: Orange border --- */
.v2-featured-testimonial {
    border-left-color: var(--orange);
}

/* --- Testimonials: Orange left border --- */
.v2-testimonials-grid .testimonial {
    border-left-color: var(--orange);
}

/* --- Comparison Table: Orange accent for "course" column --- */
.v2-comp-col-course {
    background: var(--peach-light);
    border-color: var(--orange);
}

/* Module styles now handled by v2-landing.css .v2-modules with CSS variable hooks */

/* --- Guarantee Section: Peach background + orange-themed border --- */
.v2-guarantee {
    background: var(--peach-light);
}

.v2-guarantee .v2-guarantee-card {
    border-color: var(--peach);
}

.v2-guarantee .v2-guarantee-icon {
    background: linear-gradient(135deg, var(--peach-light) 0%, white 100%);
    box-shadow: 0 4px 20px rgba(232, 148, 90, 0.15);
}

/* --- Final CTA: Orange-to-teal gradient --- */
/* FIX: White text for contrast on colored gradient (teal-dark/text on orange gradient = poor contrast) */
.v2-final-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--teal) 100%);
}

.v2-final-cta .v2-final-cta-content h2 {
    color: white;
}

.v2-final-cta .v2-final-cta-content p {
    color: rgba(255, 255, 255, 0.92);
}

/* FIX: Outline button needs visible border on dark gradient */
.v2-final-cta .btn-outline {
    color: white;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.v2-final-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* --- Related Cards: Orange hover accent --- */
.v2-additional-card:hover {
    border-color: var(--orange);
}

.v2-additional-link {
    color: var(--orange-dark);
}

/* Pricing glow now handled by v2-landing.css v2-pricing-pulse with CSS variable hooks */

/* --- Two-Tier Pricing Grid (wider PRO card) --- */
.v2-pricing-grid {
    grid-template-columns: 1.4fr 1fr;
    max-width: 1060px;
}

/* --- Pricing description text --- */
.sr-pricing-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* --- Pricing value calculation --- */
.sr-pricing-calc {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0.75rem 0;
    line-height: 1.5;
}

/* --- FAQ: Orange accent for toggle --- */
.v2-faq .faq-item summary::after {
    background: var(--peach-light);
    color: var(--orange-dark);
}

.v2-faq .faq-item[open] summary::after {
    background: var(--orange-dark);
    color: white;
}

.v2-faq .faq-item[open] summary {
    background: var(--peach-light);
    border-bottom-color: var(--orange);
}

.v2-faq .faq-item summary:hover {
    background: var(--peach-light);
}

/* --- Trust Metrics: Orange accent icons --- */
.v2-metric-icon {
    background: linear-gradient(135deg, rgba(232, 148, 90, 0.15) 0%, rgba(232, 148, 90, 0.08) 100%);
    color: #c06a20;
}

/* --- Hero mobile: shrink padding to tease metrics bar --- */
@media (max-width: 768px) {
    .v2-hero {
        padding-bottom: calc(var(--space-lg) * 0.8);
    }
}

@media (min-width: 769px) {
    .v2-hero {
        padding-bottom: var(--space-xl);
    }
}

/* --- Kételyek Checklist (extended pain points as list) --- */
.sr-kételyek-list {
    max-width: 700px;
    margin: var(--space-lg) auto 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.sr-kételyek-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text);
    padding: 0.4rem 0;
}

.sr-kételyek-list li::before {
    content: '\2022';
    color: var(--orange-dark);
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1.3;
}

/* --- Video Section: proper v2-video styling --- */
.sr-video-section {
    padding: var(--v2-section-gap) 0;
    background: white;
}

.sr-video-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.sr-video-wrapper h2 {
    text-align: center;
    color: var(--teal-dark);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

/* --- Instructor Gallery --- */
.sr-instructor-gallery {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sr-instructor-gallery img {
    border-radius: 16px;
    max-width: 320px;
    width: 100%;
    height: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sr-instructor-gallery img:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

/* --- Bonus card images (v2-bonus-image exists in v2-landing.css) --- */
.v2-bonus-card .v2-bonus-image img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-bonus-card:hover .v2-bonus-image img {
    transform: scale(1.04);
}

/* --- ZseniFészek link --- */
.sr-zsenifeszek-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.sr-zsenifeszek-link a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sr-zsenifeszek-link a:hover {
    color: var(--orange-dark);
}

/* --- Final CTA dual-button row --- */
.sr-final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* --- Deep-dive sub-heading --- */
.sr-deep-dive-sub {
    margin-top: 1.2rem;
    font-size: 1.25rem;
    color: var(--teal-dark);
    font-weight: 700;
    line-height: 1.35;
}

/* --- Deep-dive inline image --- */
.sr-deep-dive-image {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s ease;
}

.sr-deep-dive-image:hover {
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.14);
}

.sr-deep-dive-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-deep-dive-image:hover img {
    transform: scale(1.02);
}

/* --- Section title with top margin for comparison table --- */
.section-title--comparison {
    margin-top: 3rem;
}

/* --- Problem cards: warm hover accent --- */
.v2-problems .problem-card:hover {
    border-color: var(--peach);
    box-shadow: 0 12px 36px rgba(232, 148, 90, 0.12);
}

/* --- Section image: subtle entrance refinement --- */
.section-image-full {
    border-radius: 16px;
    overflow: hidden;
    margin-top: var(--space-lg);
}

.section-image-full img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-image-full:hover img {
    transform: scale(1.015);
}

/* --- Instructor gallery: staggered entrance --- */
.sr-instructor-gallery img:nth-child(1) {
    animation: sr-fadeSlideUp 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sr-instructor-gallery img:nth-child(2) {
    animation: sr-fadeSlideUp 0.7s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes sr-fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Testimonials grid: balanced layout for 5 items --- */
.v2-testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* --- Responsive: Two-tier pricing stacking --- */
@media (max-width: 900px) {
    .v2-pricing-grid {
        grid-template-columns: 1fr;
    }

    .v2-pricing-featured {
        transform: none;
        order: -1;
        animation: none;
    }
}

/* --- Responsive: Tablet --- */
@media (max-width: 768px) {
    .sr-kételyek-list {
        grid-template-columns: 1fr;
    }

    .sr-instructor-gallery {
        gap: 1rem;
    }

    .sr-instructor-gallery img {
        max-width: 280px;
    }

    .sr-final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* FIX: Guarantee icon too large on mobile (96px = 25% of 380px viewport) */
    .v2-guarantee .v2-guarantee-icon {
        width: 72px;
        height: 72px;
    }

    .v2-guarantee .v2-guarantee-icon svg {
        width: 42px;
        height: 42px;
    }
}

/* --- Responsive: Small mobile --- */
@media (max-width: 480px) {
    .sr-instructor-gallery img {
        max-width: 100%;
    }

    /* FIX: Final CTA buttons need smaller padding on narrow screens */
    .sr-final-cta-buttons .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   VALUE STACK (Hormozi-style)
   Dark teal bg, glassmorphism card, staggered reveal
   ============================================ */
.sr-value-stack {
    background: var(--v2-pricing-bg);
    color: white;
    padding: var(--v2-section-gap) 0;
}
.sr-value-stack-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: var(--space-lg) var(--space-md);
    max-width: 640px;
    margin: 0 auto;
}
.sr-value-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sr-value-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateX(-12px);
}
.sr-value-item:last-child {
    border-bottom: none;
}
/* Stagger animation when parent enters viewport */
.sr-value-stack.v2-revealed .sr-value-item {
    animation: sr-value-item-in 0.45s ease both;
}
.sr-value-stack.v2-revealed .sr-value-item:nth-child(1) { animation-delay: 0.05s; }
.sr-value-stack.v2-revealed .sr-value-item:nth-child(2) { animation-delay: 0.12s; }
.sr-value-stack.v2-revealed .sr-value-item:nth-child(3) { animation-delay: 0.19s; }
.sr-value-stack.v2-revealed .sr-value-item:nth-child(4) { animation-delay: 0.26s; }
.sr-value-stack.v2-revealed .sr-value-item:nth-child(5) { animation-delay: 0.33s; }
@keyframes sr-value-item-in {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}
.sr-value-item-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.sr-value-item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1.2;
}
.sr-value-item-left div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sr-value-item-left strong {
    font-size: 0.95rem;
    color: white;
    font-weight: 700;
}
.sr-value-item-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}
.sr-value-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
    white-space: nowrap;
    flex-shrink: 0;
}
.sr-value-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: var(--space-md) 0;
}
.sr-value-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}
.sr-value-total-amount {
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.55);
}
.sr-value-actual-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4px;
    gap: var(--space-sm);
}
.sr-value-actual-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sr-value-actual-label {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}
.sr-value-actual-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}
.sr-value-actual-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    white-space: nowrap;
}
.sr-value-savings-row {
    text-align: center;
    padding: 12px;
    margin-top: var(--space-sm);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.92rem;
    color: var(--peach);
}
.sr-value-savings-row strong {
    font-size: 1.05rem;
}
.sr-value-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-md);
}
.sr-value-cta .btn-primary {
    background: var(--v2-cta-gradient);
    border-color: transparent;
    animation: v2-pulse-glow 2.8s ease-in-out infinite;
}
.sr-value-cta .btn-primary:hover {
    background: var(--v2-cta-hover);
    transform: translateY(-2px);
}
.sr-value-guarantee-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--teal-dark);
    margin: 0;
}
.sr-value-guarantee-note svg {
    flex-shrink: 0;
    color: var(--teal);
}

/* Value Stack — Mobile */
@media (max-width: 600px) {
    .sr-value-stack-card {
        padding: var(--space-md) var(--space-sm);
    }
    .sr-value-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
    }
    .sr-value-item-left {
        flex: 1;
        min-width: 0;
    }
    .sr-value-item-price {
        flex-shrink: 0;
        font-size: 0.85rem;
    }
    .sr-value-actual-row {
        flex-direction: column;
        text-align: center;
    }
    .sr-value-total-row {
        flex-direction: row;
        gap: 8px;
    }
    .sr-value-actual-amount {
        font-size: 1.5rem;
    }
}

/* --- Accessibility: Reduced motion --- */
/* FIX: Pricing pulse animation was missing from prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .v2-pricing-featured {
        animation: none !important;
    }

    .sr-instructor-gallery img {
        animation: none !important;
    }

    .sr-deep-dive-image img,
    .section-image-full img,
    .v2-bonus-card .v2-bonus-image img {
        transition: none;
    }

    .sr-value-stack.v2-revealed .sr-value-item {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

/* ========================================================================
   SELF-CHECK SECTION (suli-selfcheck) — 60mp önteszt filter
   Above-the-fold lever: turns passive scanners into committed readers.
   ======================================================================== */
.suli-selfcheck {
    padding: var(--space-lg) 0;
    background: linear-gradient(180deg, #fffbf5 0%, #ffffff 100%);
}

.suli-selfcheck-card {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: #fff;
    border: 2px solid var(--peach-light, #fde4ca);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(232, 148, 90, 0.12);
    text-align: center;
}

.suli-selfcheck-tag {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a5f6a;
    background: rgba(26, 95, 106, 0.08);
    border-radius: 999px;
}

.suli-selfcheck-title {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text-dark, #1d1d1f);
    line-height: 1.25;
}

.suli-selfcheck-intro {
    margin: 0 0 var(--space-md, 1.5rem);
    color: var(--text-muted, #5a5f66);
}

.suli-selfcheck-list {
    list-style: none;
    padding: 0;
    margin: 0 auto var(--space-md, 1.5rem);
    max-width: 560px;
    text-align: left;
}

.suli-selfcheck-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    background: #fff9ef;
    border-radius: 10px;
    color: var(--text-dark, #1d1d1f);
    font-size: 1rem;
    line-height: 1.45;
    transition: background 0.2s ease, transform 0.15s ease;
    cursor: pointer;
    user-select: none;
}

.suli-selfcheck-list li:hover,
.suli-selfcheck-list li.is-checked {
    background: #fef2e1;
    transform: translateX(3px);
}

.suli-check-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 2px solid var(--orange, #e8945a);
    border-radius: 6px;
    background: #fff;
    position: relative;
    transition: background 0.15s ease;
}

.suli-selfcheck-list li.is-checked .suli-check-icon {
    background: var(--orange, #e8945a);
}

.suli-selfcheck-list li.is-checked .suli-check-icon::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.suli-selfcheck-hook {
    margin: var(--space-md, 1.5rem) 0 0;
    padding: 14px 18px;
    background: linear-gradient(135deg, #1a5f6a, #2a7a87);
    color: #fff;
    border-radius: 12px;
    font-size: 1.05rem;
}

@media (max-width: 540px) {
    .suli-selfcheck-card {
        padding: var(--space-md, 1.25rem) 18px;
        border-radius: 14px;
    }
    .suli-selfcheck-list li {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
}

/* ========================================================================
   MINI-OFFER PREVIEW (suli-mini-offer) — 20% scroll conversion lever
   Shows PRO price + value bullets before the 17th section.
   ======================================================================== */
.suli-mini-offer {
    padding: var(--space-lg) 0;
}

.suli-mini-offer-card {
    max-width: 960px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: linear-gradient(135deg, #fff9ef 0%, #f7fcfb 100%);
    border: 2px solid rgba(232, 148, 90, 0.25);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg, 2rem);
    align-items: center;
    box-shadow: 0 14px 50px rgba(26, 95, 106, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suli-mini-offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 60px rgba(26, 95, 106, 0.15);
}

.suli-mini-offer-badge {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--orange, #e8945a);
    border-radius: 999px;
}

.suli-mini-offer-title {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 800;
    color: var(--text-dark, #1d1d1f);
    line-height: 1.25;
}

.suli-mini-offer-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suli-mini-offer-bullets li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--text-dark, #1d1d1f);
    font-size: 0.98rem;
    line-height: 1.45;
}

.suli-mini-offer-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--teal, #7bccc8);
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--teal, #7bccc8);
}

.suli-mini-offer-bullets li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.suli-mini-offer-right {
    text-align: center;
    padding: var(--space-md, 1.5rem);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.suli-mini-offer-prices {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.suli-mini-offer-old {
    color: var(--text-muted, #8a8f96);
    text-decoration: line-through;
    font-size: 1rem;
}

.suli-mini-offer-new {
    font-size: clamp(1.8rem, 4.5vw, 2.3rem);
    font-weight: 800;
    color: var(--orange-dark, #c26b2e);
}

.suli-mini-offer-note {
    margin: 0 0 14px;
    font-size: 0.85rem;
    color: var(--text-muted, #5a5f66);
}

.suli-mini-offer-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 0;
    font-size: 0.82rem;
    color: #1a5f6a;
    font-weight: 600;
}

@media (max-width: 720px) {
    .suli-mini-offer-card {
        grid-template-columns: 1fr;
        gap: var(--space-md, 1.25rem);
        padding: var(--space-md, 1.25rem);
    }
    .suli-mini-offer-right {
        padding: var(--space-md, 1.25rem) 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .suli-mini-offer-card,
    .suli-selfcheck-list li {
        transition: none;
    }
}
