/* ========================================
   HOME CONVERSION CSS
   Conversion-focused UI engineering styles
   ======================================== */

.hc-section {
    padding: var(--spacing-16) var(--spacing-4);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hc-section {
        padding: 80px 48px;
    }
}

.hc-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hc-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ========================================
   TYPOGRAPHY - STRIPE STYLE
   ======================================== */
.hc-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #0A2540;
    margin-bottom: var(--spacing-6);
    letter-spacing: -0.03em;
}

.hc-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.5;
    color: #4A5568;
    margin-bottom: var(--spacing-8);
    font-weight: 400;
}

.hc-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--spacing-6);
}

/* ========================================
   BUTTONS - STRIPE STYLE
   ======================================== */
.hc-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #8B5CF6;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 200ms ease;
    border: none;
    cursor: pointer;
    box-shadow: none;
}

.hc-btn-primary:hover {
    background: #7C3AED;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.hc-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: #8B5CF6;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 200ms ease;
    border: none;
    cursor: pointer;
}

.hc-btn-secondary:hover {
    background: rgba(139, 92, 246, 0.08);
    color: #7C3AED;
}

.hc-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-4);
    align-items: center;
}

/* ========================================
   SECTIONS
   ======================================== */

/* ZIVA */
.hc-ziva-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
    align-items: center;
}

@media (min-width: 896px) {
    .hc-ziva-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hc-ziva-video-wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
    position: relative;
    aspect-ratio: 9/16;
    max-width: 320px;
    margin: 0 auto;
}

.hc-ziva-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hc-features-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-6) 0;
}

.hc-features-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-3);
    font-size: 1.125rem;
    color: var(--gray-700);
}

.hc-features-list li::before {
    content: "✓";
    color: var(--brand-primary);
    font-weight: 700;
}

/* TIME & MONEY */
.hc-comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
    margin-top: var(--spacing-10);
}

@media (min-width: 768px) {
    .hc-comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hc-compare-card {
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-compare-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hc-compare-card.bad {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    opacity: 0.9;
}

.hc-compare-card.good {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
    background: #ffffff;
    position: relative;
}

.hc-compare-card.good::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hc-compare-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    color: var(--gray-900);
}

.hc-compare-list {
    list-style: none;
    padding: 0;
}

.hc-compare-list li {
    padding: var(--spacing-2) 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

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

.hc-compare-card.bad .hc-compare-list li::before {
    content: "✕";
    color: var(--gray-400);
}

.hc-compare-card.good .hc-compare-list li::before {
    content: "✓";
    color: var(--brand-primary);
}

/* HORIZONTAL SWIPE */
.hc-swipe-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing-6);
    padding-bottom: var(--spacing-6);
    margin-top: var(--spacing-8);
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: thin; /* Firefox */
}

.hc-swipe-container::-webkit-scrollbar {
    height: 6px;
}

.hc-swipe-container::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

.hc-swipe-container::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: var(--radius-full);
}

.hc-swipe-item {
    min-width: 280px;
    scroll-snap-align: center;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .hc-swipe-item {
        min-width: 380px;
    }
}

.hc-swipe-img {
    width: 100%;
    height: 200px;
    background: var(--gray-100);
    object-fit: cover;
}

.hc-swipe-content {
    padding: var(--spacing-4);
}

.hc-swipe-title {
    font-weight: 600;
    color: var(--gray-900);
}

/* TESTIMONIALS */
.hc-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
    margin-top: var(--spacing-8);
}

@media (min-width: 768px) {
    .hc-testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hc-testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hc-testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: var(--spacing-6);
}

.hc-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.hc-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-weight: 700;
    overflow: hidden;
}

.hc-testimonial-meta h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.hc-testimonial-meta span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Deposit Section */
.hc-deposit-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8) var(--spacing-6);
    margin-top: var(--spacing-8);
}

@media (min-width: 768px) {
    .hc-deposit-wrapper {
        padding: var(--spacing-12);
    }
}

/* Misc Utilities */
.hc-text-center { text-align: center; }
.hc-mb-0 { margin-bottom: 0; }
.hc-mb-2 { margin-bottom: var(--spacing-2); }
.hc-mb-4 { margin-bottom: var(--spacing-4); }
.hc-mb-8 { margin-bottom: var(--spacing-8); }
.hc-mt-8 { margin-top: var(--spacing-8); }
.hc-highlight {
    background: rgba(99, 102, 241, 0.1);
    color: var(--brand-primary);
    padding: 0 var(--spacing-1);
    border-radius: 4px;
    font-weight: 600;
}


/* ========================================
   HERO VIDEO (MODERN SAAS)
   ======================================== */
.hc-hero-video-wrapper {
    position: relative;
    max-width: 900px;
    margin: var(--spacing-12) auto var(--spacing-6);
    border-radius: var(--radius-2xl);
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 30px 80px rgba(99, 102, 241, 0.15), 
        0 0 0 1px rgba(99, 102, 241, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: perspective(1200px) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
    z-index: 10;
}

.hc-hero-video-wrapper::before {
    content: '';
    position: absolute;
    top: -20%; left: -20%; right: -20%; bottom: -20%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hc-hero-video-wrapper:hover {
    transform: perspective(1200px) rotateX(0deg) translateY(-8px);
    box-shadow: 
        0 40px 100px rgba(99, 102, 241, 0.25), 
        0 0 0 1px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hc-hero-mockup-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.hc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.hc-dot.bg-red { background: #FF5F56; }
.hc-dot.bg-yellow { background: #FFBD2E; }
.hc-dot.bg-green { background: #27C93F; }

.hc-hero-video {
    width: 100%;
    height: auto;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    object-fit: cover;
    display: block;
}

/* ========================================
   PAYMENT SCHEDULE SECTION
   ======================================== */
.clean-payment-schedule {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.clean-payment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.875rem;
}

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

.clean-payment-label {
    font-weight: 500;
    color: #1a202c;
    flex: 1;
}

.clean-payment-date {
    color: #64748b;
    flex: 1;
    text-align: center;
}

.clean-payment-status {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.clean-payment-status.paid {
    background: #dcfce7;
    color: #166534;
}

.clean-payment-status.pending {
    background: #fef3c7;
    color: #92400e;
}

/* ========================================
   PAIEMENTS ECHELONNES - SECTION
   ======================================== */
.payment-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 968px) {
    .payment-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.clean-section-intro {
    font-size: 1.25rem;
    color: #4b5563;
    text-align: center;
    margin-top: 0.5rem;
}

.payment-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-problem {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.payment-problem::before {
    content: "💭";
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.payment-problem p {
    color: #475569;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

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

.payment-solution {
    background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 100%);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px -5px rgba(96, 165, 250, 0.1);
}

.solution-label {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.payment-solution ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-solution li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #334155;
    font-size: 0.95rem;
}

.payment-solution li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f172a;
    font-weight: 700;
}

.payment-impact {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: white;
}

.payment-impact p {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   PAYMENT CAROUSEL
   ======================================== */
.payment-carousel {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
}

.slide-mockup {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.mockup-header {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    background: #e2e8f0;
}

.mockup-header span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.mockup-body {
    padding: 1.25rem;
}

/* Config Screen */
.config-screen {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.config-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.config-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.config-toggle {
    display: flex;
    background: #e2e8f0;
    border-radius: 6px;
    padding: 2px;
    gap: 2px;
}

.config-toggle span {
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    color: #64748b;
}

.config-toggle span.active {
    background: #ffffff;
    color: #6366f1;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.config-input {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 10px;
}

.config-input span:first-child {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.config-input .unit {
    color: #6366f1;
    font-weight: 600;
    font-size: 0.8rem;
}

.config-dates {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

.date-chip {
    background: #ede9fe;
    color: #5b21b6;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Result Screen */
.result-screen {
    text-align: center;
}

.result-header {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.result-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.result-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.75rem 0;
}

.result-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 2px solid #6366f1;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

/* Invoice Screen */
.invoice-screen {
    text-align: center;
}

.invoice-badge {
    display: inline-block;
    background: #6366f1;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.invoice-qr {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.qr-placeholder {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.qr-placeholder svg {
    width: 100%;
    height: 100%;
}

.invoice-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

.slide-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #ffffff;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dots .dot.active {
    background: #6366f1;
    width: 24px;
    border-radius: 4px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #6366f1;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: #6366f1;
    color: #ffffff;
}

.carousel-nav.prev {
    left: -18px;
}

.carousel-nav.next {
    right: -18px;
}

@media (max-width: 480px) {
    .carousel-nav {
        display: none;
    }
    
    .payment-carousel {
        max-width: 100%;
    }
}

.clean-mockup-small {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    max-width: 360px;
    margin: 0 auto;
}

.clean-mockup-content {
    padding: 1.5rem;
}

.clean-problem {
    margin-bottom: 1.5rem;
    position: relative;
}

.clean-problem::before {
    content: "💭";
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.clean-problem p {
    color: #475569;
    margin-bottom: 0.5rem;
}

.clean-solution {
    background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 100%);
    border-left: 3px solid #0f172a;
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.5rem;
}

.clean-solution p {
    color: #334155;
    margin-bottom: 0.5rem;
}

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

.clean-benefit {
    font-weight: 600;
    color: #0f172a;
}

/* ========================================
   RELANCES SECTION
   ======================================== */
.clean-intro {
    font-size: 1.25rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.clean-problem-block {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.clean-problem-block::before {
    content: "💭";
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.clean-problem-block p {
    color: #475569;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.clean-problem-block p:last-child {
    margin-bottom: 0;
}

.clean-solution-list {
    background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 100%);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px -5px rgba(96, 165, 250, 0.1);
}

.clean-solution-list > p {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.clean-solution-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-solution-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #334155;
    font-size: 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

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

.clean-solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.9rem;
}

.clean-impact-block {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.clean-impact-block p {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    line-height: 1.5;
}

/* Payment Carousel Real Images */
.payment-image-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

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

/* Relances Content - Two Column Layout */
.relances-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin: 40px 0;
}

.relances-visual {
    text-align: center;
}

.relances-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}

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

.relances-caption {
    margin-top: 16px;
    color: #64748b;
    font-size: 0.9375rem;
    font-style: italic;
}

.relances-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 768px) {
    .relances-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
