﻿.rns-da-section {
    position: relative;
    padding: 4rem 1rem 5rem;
    background: #f8fafc;
    overflow: hidden;
}

/* HALOS */
.rns-da-halos {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rns-da-halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.rns-da-halo-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    left: 20%;
    background: rgba(37, 99, 235, 0.12);
}

.rns-da-halo-2 {
    width: 500px;
    height: 500px;
    top: 30%;
    right: 20%;
    background: rgba(59, 130, 246, 0.08);
}

.rns-da-halo-3 {
    width: 700px;
    height: 700px;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(29, 78, 216, 0.06);
}

.rns-da-halo-4 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: rgba(37, 99, 235, 0.14);
}

/* LAYOUT */
.rns-da-container {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rns-da-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .rns-da-layout {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* LEFT */
.rns-da-left {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .rns-da-left {
        text-align: left;
    }
}

.rns-da-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.rns-da-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 520px;
}

/* BUTTONS */
.rns-da-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .rns-da-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .rns-da-buttons {
        justify-content: flex-start;
    }
}

.rns-da-store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border: 2px solid #000;
    border-radius: 999px;
    color: #000;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.rns-da-store-button:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.rns-da-store-icon {
    width: 32px;
    height: 32px;
}

.rns-da-store-text span {
    font-size: 0.75rem;
}

.rns-da-store-text strong {
    font-size: 1.125rem;
    margin-top: -2px;
}

/* PHONE */
.rns-da-right {
    display: none;
}

@media (min-width: 1024px) {
    .rns-da-right {
        display: block;
    }
}

.rns-da-phone {
    width: 280px;
    height: 560px;
}

.rns-da-phone-frame {
    width: 100%;
    height: 100%;
    background: #1f2937;
    border-radius: 2rem;
    padding: 0.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.rns-da-phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 1.75rem;
    overflow: hidden;
}

.rns-da-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
