.digi-rwa-hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
    position: relative;
    z-index: 1;
}

/* BLUR BACKGROUND */

.digi-rwa-blur {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    z-index: -1;
}

.digi-rwa-blur.blur-left {
    background: #7dd3fc;
    top: -120px;
    left: -120px;
}

.digi-rwa-blur.blur-right {
    background: #c4b5fd;
    bottom: -120px;
    right: -120px;
}

/* BADGE */

.digi-rwa-badge {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 60px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.digi-rwa-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* TITLE */

.digi-rwa-title {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.digi-rwa-description {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 22px;
}

/* BUTTONS */

.digi-rwa-buttons {
    margin-top: 40px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.digi-rwa-btn-primary,
.digi-rwa-btn-secondary {
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.digi-rwa-btn-primary {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.digi-rwa-btn-primary:hover {
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

.digi-rwa-btn-secondary {
    background: #fff;
    color: #0f172a;
    border: 1px solid #dbeafe;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.digi-rwa-btn-secondary:hover {
    transform: translateY(-4px);
    background: #f8fbff;
    color: #2563eb;
}

/* VISUAL */

.digi-rwa-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.digi-rwa-glass-card {
    width: 420px;
    height: 420px;
    border-radius: 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 20px 80px rgba(59, 130, 246, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

/* CENTER */

.digi-rwa-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.digi-rwa-center-inner {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 38px;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35);
    animation: floatMain 5s ease-in-out infinite;
}

@keyframes floatMain {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ORBITS */

.digi-rwa-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(37, 99, 235, 0.25);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 240px;
    height: 240px;
    animation: rotate 18s linear infinite;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    animation: rotateReverse 25s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* FLOATING ICONS */

.digi-rwa-floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #2563eb;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    animation: floating 4s ease-in-out infinite;
}

.icon-1 {
    top: 40px;
    left: 45px;
}

.icon-2 {
    top: 80px;
    right: 40px;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-14px);
    }
}

/* CIRCLE EFFECT */

.digi-rwa-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .digi-rwa-hero {
        padding: 90px 0;
    }

    .digi-rwa-title {
        font-size: 42px;
    }

    .digi-rwa-glass-card {
        width: 100%;
        max-width: 420px;
        height: 420px;
        margin: auto;
    }

    .digi-rwa-content {
        text-align: center;
    }

    .digi-rwa-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .digi-rwa-title {
        font-size: 34px;
    }

    .digi-rwa-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .digi-rwa-glass-card {
        height: 350px;
    }

    .digi-rwa-floating-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .digi-rwa-center-inner {
        width: 90px;
        height: 90px;
        font-size: 30px;
    }
}

/* What is RWA  */
.rwa-token-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffdf7 0%, #f7faff 50%, #fef7ff 100%);
    position: relative;
    z-index: 1;
}

/* SHAPES */

.rwa-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    z-index: -1;
}

.rwa-shape-one {
    width: 280px;
    height: 280px;
    background: #f9a8d4;
    top: 0;
    left: -80px;
}

.rwa-shape-two {
    width: 320px;
    height: 320px;
    background: #93c5fd;
    bottom: -60px;
    right: -80px;
}

.rwa-shape-three {
    width: 200px;
    height: 200px;
    background: #c4b5fd;
    top: 40%;
    left: 45%;
}

/* LEFT */

.rwa-mini-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 600;
    color: #7c3aed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 28px;
    transition: 0.4s ease;
}

.rwa-mini-badge:hover {
    transform: translateY(-4px);
}

.rwa-main-title {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
    color: #111827;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.rwa-main-text {
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 22px;
}

/* RIGHT GRID */

.rwa-feature-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* CARD */

.rwa-feature-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 32px 26px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.45s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.rwa-feature-card::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0)
    );
    top: -120%;
    left: -120%;
    transition: 0.6s ease;
    transform: rotate(25deg);
}

.rwa-feature-card:hover::before {
    top: 0;
    left: 0;
}

.rwa-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.12);
    border-color: #ddd6fe;
}

/* ICON */

.rwa-feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: #fff;
    font-size: 26px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.rwa-feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    top: 0;
    left: -100%;
    transform: skewX(-25deg);
    transition: 0.5s ease;
}

.rwa-feature-card:hover .rwa-feature-icon::after {
    left: 120%;
}

.rwa-feature-card span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #111827;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .rwa-token-section {
        padding: 90px 0;
    }

    .rwa-main-title {
        font-size: 42px;
    }

    .rwa-token-left {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .rwa-feature-wrapper {
        grid-template-columns: 1fr;
    }

    .rwa-main-title {
        font-size: 34px;
    }

    .rwa-main-text {
        font-size: 15px;
    }

    .rwa-feature-card {
        min-height: auto;
    }
}

/* =========================
UPDATED STYLING
Compact Layout + New Colors
========================= */

.rwa-process-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
    overflow: hidden;
    z-index: 1;
}

/* GLOW EFFECTS */

.rwa-process-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.35;
    z-index: -1;
}

.glow-left {
    background: #b5c6e0;
    top: -60px;
    left: -80px;
}

.glow-right {
    background: #ebf4f5;
    bottom: -60px;
    right: -80px;
}

/* TAG */

.rwa-process-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: #ebf4f5;
    color: #5b6d92;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid #d7e3e7;
    transition: 0.35s ease;
}

.rwa-process-tag:hover {
    transform: translateY(-3px);
}

/* TITLE */

.rwa-process-title {
    font-size: 46px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.rwa-process-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #667085;
    max-width: 760px;
    margin: auto;
}

/* WRAPPER */

.rwa-process-wrapper {
    position: relative;
    margin-top: 55px;
}

/* CENTER LINE */

.rwa-center-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #b5c6e0, #8fa7cb);
    transform: translateX(-50%);
    border-radius: 30px;
}

/* ITEMS */

.rwa-process-item {
    position: relative;
    width: 50%;
    margin-bottom: 28px;
}

.rwa-process-item.left {
    padding-right: 45px;
    text-align: right;
}

.rwa-process-item.right {
    margin-left: 50%;
    padding-left: 45px;
}

/* SMALLER CARDS */

.rwa-process-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dde7ea;
    border-radius: 22px;
    padding: 24px 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.04);
    max-width: 430px;
}

.rwa-process-item.left .rwa-process-card {
    margin-left: auto;
}

.rwa-process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(181, 198, 224, 0.15),
        rgba(235, 244, 245, 0.4)
    );
    opacity: 0;
    transition: 0.4s ease;
}

.rwa-process-card:hover::before {
    opacity: 1;
}

.rwa-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(90, 108, 140, 0.12);
    border-color: #c8d7dc;
}

/* NUMBER */

.rwa-process-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 42px;
    font-weight: 600;
    color: rgba(91, 109, 146, 0.08);
    line-height: 1;
}

/* ICON */

.rwa-process-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b5c6e0, #8fa7cb);
    color: #fff;
    font-size: 22px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    transition: 0.35s ease;
}

.rwa-process-card:hover .rwa-process-icon {
    transform: translateY(-4px) rotate(-5deg);
}

/* CONTENT */

.rwa-process-card h3 {
    font-size: 19px;
    font-weight: 400;
    color: #25324a;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.rwa-process-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #667085;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* DOTS */

.rwa-process-item::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #9db2cf;
    transform: translateY(-50%);
    z-index: 5;
    box-shadow: 0 0 0 7px rgba(181, 198, 224, 0.22);
}

.rwa-process-item.left::after {
    right: -9px;
}

.rwa-process-item.right::after {
    left: -9px;
}

/* BOTTOM TEXT */

.rwa-process-bottom-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6f86;
    background: #fff;
    padding: 20px 26px;
    border-radius: 18px;
    border: 1px solid #e1eaee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-top: 10px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .rwa-process-title {
        font-size: 38px;
    }

    .rwa-center-line {
        left: 18px;
    }

    .rwa-process-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        text-align: left !important;
    }

    .rwa-process-item::after {
        left: 10px !important;
        right: auto !important;
    }

    .rwa-process-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .rwa-process-section {
        padding: 70px 0;
    }

    .rwa-process-title {
        font-size: 30px;
    }

    .rwa-process-subtitle {
        font-size: 14px;
    }

    .rwa-process-card {
        padding: 20px;
        border-radius: 18px;
    }

    .rwa-process-card h3 {
        font-size: 17px;
    }

    .rwa-process-card p {
        font-size: 13px;
    }

    .rwa-process-number {
        font-size: 34px;
    }

    .rwa-process-bottom-text {
        font-size: 14px;
        padding: 18px 20px;
    }
}

/* services */
.rwa-services-sec {
    position: relative;
    padding: 80px 0 70px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
    overflow: hidden;
    z-index: 1;
}

/* BACKGROUND */

.rwa-services-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    z-index: -1;
    opacity: 0.22;
}

.bg-one {
    width: 280px;
    height: 280px;
    background: #274c77;
    top: -80px;
    right: -60px;
}

.bg-two {
    width: 260px;
    height: 260px;
    background: #e7ecef;
    bottom: -80px;
    left: -60px;
}

/* MINI TITLE */

.rwa-services-mini-title {
    display: inline-flex;
    align-items: center;
    background: #e7ecef;
    color: #274c77;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid #d8e0e5;
    letter-spacing: 0.3px;
}

/* TITLE */

.rwa-services-main-title {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.rwa-services-top-text {
    font-size: 15px;
    line-height: 1.9;
    color: #526273;
    margin-bottom: 0;
}

/* CARD */

.rwa-service-card {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 34px 28px;
    overflow: hidden;
    border: 1px solid #e3e8eb;
    transition: all 0.45s ease;
    box-shadow: 0 10px 30px rgba(39, 76, 119, 0.04);
}

/* TOP HOVER LINE */

.rwa-service-hover-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #274c77;
    transition: 0.5s ease;
}

.rwa-service-card:hover .rwa-service-hover-line {
    width: 100%;
}

/* CARD HOVER */

.rwa-service-card:hover {
    transform: translateY(-10px);
    border-color: #cfd9df;
    box-shadow: 0 22px 55px rgba(39, 76, 119, 0.1);
}

/* ICON */

.rwa-service-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #e7ecef;
    color: #274c77;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 24px;
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
}

.rwa-service-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #274c77;
    top: 100%;
    left: 0;
    transition: 0.45s ease;
    z-index: 0;
}

.rwa-service-icon i {
    position: relative;
    z-index: 2;
}

.rwa-service-card:hover .rwa-service-icon::before {
    top: 0;
}

.rwa-service-card:hover .rwa-service-icon {
    color: #fff;
    transform: rotate(-6deg);
}

/* TEXT */

.rwa-service-card h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 14px;
}

.rwa-service-card p {
    font-size: 15px;
    line-height: 1.85;
    color: #607080;
    margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .rwa-services-sec {
        padding: 90px 0 80px;
    }

    .rwa-services-main-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .rwa-services-sec {
        padding: 75px 0;
    }

    .rwa-services-main-title {
        font-size: 31px;
    }

    .rwa-service-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .rwa-service-card h3 {
        font-size: 19px;
    }

    .rwa-service-card p {
        font-size: 14px;
    }

    .rwa-service-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* =========================
MAIN SECTION
========================= */

.rwa-list-feature-sec {
    position: relative;
    padding: 80px 0 70px;
    background: linear-gradient(135deg, #fbfcfd 0%, #f5f7fa 100%);
    overflow: hidden;
    z-index: 1;
}

.rwa-list-feature-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.55),
        rgba(255, 255, 255, 0.12)
    );
    z-index: -1;
}

/* =========================
FLOATING BALLS
========================= */

.rwa-floating-ball {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* BALL 1 */

.rwa-ball-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(
        circle at top left,
        rgba(141, 153, 174, 0.45),
        rgba(141, 153, 174, 0.08)
    );
    top: 8%;
    left: 4%;
    filter: blur(8px);
    animation: rwaBallFloatOne 9s infinite;
}

/* BALL 2 */

.rwa-ball-2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(
        circle at center,
        rgba(43, 45, 66, 0.12),
        rgba(43, 45, 66, 0.03)
    );
    bottom: 6%;
    right: 5%;
    filter: blur(10px);
    animation: rwaBallFloatTwo 11s infinite;
}

/* BALL 3 */

.rwa-ball-3 {
    width: 90px;
    height: 90px;
    background: radial-gradient(
        circle at top,
        rgba(141, 153, 174, 0.35),
        rgba(141, 153, 174, 0.08)
    );
    top: 52%;
    left: 48%;
    filter: blur(4px);
    animation: rwaBallFloatThree 7s infinite;
}

/* BALL 4 */

.rwa-ball-4 {
    width: 140px;
    height: 140px;
    background: radial-gradient(
        circle at center,
        rgba(43, 45, 66, 0.1),
        rgba(43, 45, 66, 0.02)
    );
    top: 18%;
    right: 18%;
    filter: blur(7px);
    animation: rwaBallFloatFour 10s infinite;
}

/* BALL 5 */

.rwa-ball-5 {
    width: 70px;
    height: 70px;
    background: radial-gradient(
        circle at center,
        rgba(141, 153, 174, 0.45),
        rgba(141, 153, 174, 0.06)
    );
    bottom: 18%;
    left: 18%;
    animation: rwaBallFloatFive 8s infinite;
}

/* =========================
ANIMATIONS
========================= */

@keyframes rwaBallFloatOne {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(25px, -20px) scale(1.08);
    }

    50% {
        transform: translate(10px, 20px) scale(0.95);
    }

    75% {
        transform: translate(-18px, -10px) scale(1.04);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes rwaBallFloatTwo {
    0% {
        transform: translate(0, 0);
    }

    30% {
        transform: translate(-30px, -20px);
    }

    60% {
        transform: translate(15px, 25px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes rwaBallFloatThree {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rwaBallFloatFour {
    0% {
        transform: translateX(0px) rotate(0deg);
    }

    50% {
        transform: translateX(25px) rotate(12deg);
    }

    100% {
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rwaBallFloatFive {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(18px, -22px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* =========================
CONTENT
========================= */

.rwa-list-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(141, 153, 174, 0.12);
    color: #2b2d42;
    border: 1px solid rgba(141, 153, 174, 0.18);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    transition: 0.35s ease;
}

.rwa-list-badge:hover {
    transform: translateY(-3px);
}

.rwa-list-title {
    font-size: 50px;
    line-height: 1.12;
    font-weight: 400;
    color: #2b2d42;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.rwa-list-text {
    font-size: 16px;
    line-height: 1.9;
    color: #61697a;
    margin-bottom: 0;
}

/* =========================
BOTTOM TEXT
========================= */

.rwa-list-bottom {
    position: relative;
    margin-top: 36px;
    padding-left: 22px;
}

.rwa-list-bottom-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 30px;
    background: #8d99ae;
}

.rwa-list-bottom p {
    font-size: 15px;
    line-height: 1.9;
    color: #687083;
    margin-bottom: 0;
}

/* =========================
LIST WRAP
========================= */

.rwa-feature-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* =========================
LIST ITEM
========================= */

.rwa-feature-list-item {
    display: flex;
    align-items: center;
    gap: 22px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid #e8edf2;
    border-radius: 22px;
    padding: 20px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(43, 45, 66, 0.03);
}

/* HOVER EFFECT */

.rwa-feature-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(141, 153, 174, 0.12),
        rgba(43, 45, 66, 0.04)
    );
    transition: 0.45s ease;
}

.rwa-feature-list-item:hover::before {
    width: 100%;
}

.rwa-feature-list-item:hover {
    transform: translateX(10px);
    border-color: #d8e0e7;
    box-shadow: 0 18px 40px rgba(43, 45, 66, 0.08);
}

/* =========================
ICON
========================= */

.rwa-feature-list-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: #2b2d42;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

.rwa-feature-list-item:hover .rwa-feature-list-icon {
    background: #8d99ae;
    transform: rotate(-6deg);
}

/* =========================
TEXT
========================= */

.rwa-feature-list-text {
    position: relative;
    z-index: 2;
}

.rwa-feature-list-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2b2d42;
    margin-bottom: 0;
    line-height: 1.5;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    .rwa-list-feature-sec {
        padding: 90px 0 80px;
    }

    .rwa-list-title {
        font-size: 39px;
    }
}

@media (max-width: 767px) {
    .rwa-list-feature-sec {
        padding: 75px 0;
    }

    .rwa-list-title {
        font-size: 31px;
    }

    .rwa-list-text,
    .rwa-list-bottom p {
        font-size: 14px;
    }

    .rwa-feature-list-item {
        padding: 18px 18px;
        border-radius: 18px;
        gap: 16px;
    }

    .rwa-feature-list-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
        border-radius: 14px;
    }

    .rwa-feature-list-text h3 {
        font-size: 16px;
    }
}

/* =========================
SECTION
========================= */

.rwa-benefits-sec {
    position: relative;
    padding: 80px 0 70px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5fb 100%);
    overflow: hidden;
    z-index: 1;
}

/* GRID OVERLAY */

.rwa-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 57, 84, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 57, 84, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    z-index: -1;
}

/* FLOATING CIRCLES */

.rwa-benefit-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    z-index: -1;
    opacity: 0.25;
}

.circle-one {
    width: 320px;
    height: 320px;
    background: #bfd7ea;
    top: -80px;
    left: -100px;
    animation: rwaCircleFloat 10s infinite ease-in-out;
}

.circle-two {
    width: 280px;
    height: 280px;
    background: #0b3954;
    opacity: 0.12;
    bottom: -90px;
    right: -100px;
    animation: rwaCircleFloatTwo 12s infinite ease-in-out;
}

/* ANIMATION */

@keyframes rwaCircleFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rwaCircleFloatTwo {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-25px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* TAG */

.rwa-benefit-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(191, 215, 234, 0.35);
    border: 1px solid rgba(191, 215, 234, 0.55);
    color: #0b3954;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    transition: 0.35s ease;
}

.rwa-benefit-tag:hover {
    transform: translateY(-3px);
}

/* TITLE */

.rwa-benefit-title {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 600;
    color: #0b3954;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
}

.rwa-benefit-subtitle {
    font-size: 17px;
    line-height: 1.9;
    color: #5c7384;
    margin-bottom: 0;
}

/* WRAP */

.rwa-benefits-zigzag-wrap {
    position: relative;
    margin-top: 85px;
}

/* ITEM */

.rwa-benefit-zigzag-item {
    position: relative;
    width: 50%;
    margin-bottom: 26px;
}

.rwa-benefit-zigzag-item.left {
    padding-right: 50px;
}

.rwa-benefit-zigzag-item.right {
    margin-left: 50%;
    padding-left: 50px;
}

/* LINE */

.rwa-benefit-line {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 2px;
    background: #bfd7ea;
}

.rwa-benefit-zigzag-item.left .rwa-benefit-line {
    right: -20px;
}

.rwa-benefit-zigzag-item.right .rwa-benefit-line {
    left: -20px;
}

/* BOX */

.rwa-benefit-box {
    display: flex;
    align-items: center;
    gap: 22px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(191, 215, 234, 0.55);
    border-radius: 26px;
    padding: 24px 26px;
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(11, 57, 84, 0.05);
}

/* HOVER EFFECT */

.rwa-benefit-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(191, 215, 234, 0.2),
        rgba(11, 57, 84, 0.03)
    );
    opacity: 0;
    transition: 0.45s ease;
}

.rwa-benefit-box:hover::before {
    opacity: 1;
}

.rwa-benefit-box:hover {
    transform: translateY(-8px);
    border-color: #c7ddec;
    box-shadow: 0 22px 55px rgba(11, 57, 84, 0.1);
}

/* ICON */

.rwa-benefit-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 18px;
    background: #0b3954;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

.rwa-benefit-box:hover .rwa-benefit-icon {
    background: #bfd7ea;
    color: #0b3954;
    transform: rotate(-8deg);
}

/* TEXT */

.rwa-benefit-content {
    position: relative;
    z-index: 2;
}

.rwa-benefit-content h3 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: #0b3954;
    margin-bottom: 0;
}

/* BOTTOM BOX */

.rwa-benefit-bottom-box {
    margin-top: 65px;
    background: #0b3954;
    padding: 28px 34px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(11, 57, 84, 0.14);
}

.rwa-benefit-bottom-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -120px;
    right: -100px;
}

.rwa-benefit-bottom-box p {
    position: relative;
    z-index: 2;
    font-size: 17px;
    line-height: 1.9;
    color: #e8f2f8;
    margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .rwa-benefits-sec {
        padding: 100px 0 85px;
    }

    .rwa-benefit-title {
        font-size: 42px;
    }

    .rwa-benefit-zigzag-item {
        width: 100%;
        padding: 0 !important;
        margin-left: 0 !important;
    }

    .rwa-benefit-line {
        display: none;
    }
}

@media (max-width: 767px) {
    .rwa-benefits-sec {
        padding: 80px 0;
    }

    .rwa-benefit-title {
        font-size: 32px;
    }

    .rwa-benefit-subtitle {
        font-size: 14px;
    }

    .rwa-benefits-zigzag-wrap {
        margin-top: 55px;
    }

    .rwa-benefit-box {
        padding: 20px;
        border-radius: 20px;
        gap: 16px;
    }

    .rwa-benefit-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 20px;
        border-radius: 15px;
    }

    .rwa-benefit-content h3 {
        font-size: 16px;
    }

    .rwa-benefit-bottom-box {
        padding: 22px 22px;
        border-radius: 22px;
        margin-top: 45px;
    }

    .rwa-benefit-bottom-box p {
        font-size: 14px;
    }
}

/* =========================
MAIN SECTION
========================= */

.rwa-industry-sec {
    position: relative;
    padding: 130px 0 105px;
    background: linear-gradient(135deg, #1f1f1f 0%, #272727 100%);
    overflow: hidden;
    z-index: 1;
}

/* =========================
BACKGROUND PATTERN
========================= */

.rwa-industry-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 170, 125, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 170, 125, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    z-index: -1;
}

/* =========================
BLUR EFFECTS
========================= */

.rwa-industry-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.18;
}

.blur-one {
    width: 320px;
    height: 320px;
    background: #d4aa7d;
    top: -100px;
    left: -120px;
    animation: rwaBlurFloat 10s infinite ease-in-out;
}

.blur-two {
    width: 260px;
    height: 260px;
    background: #d4aa7d;
    bottom: -80px;
    right: -90px;
    opacity: 0.1;
    animation: rwaBlurFloatTwo 12s infinite ease-in-out;
}

/* ANIMATION */

@keyframes rwaBlurFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rwaBlurFloatTwo {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-30px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* =========================
HEADER
========================= */

.rwa-industry-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(212, 170, 125, 0.1);
    border: 1px solid rgba(212, 170, 125, 0.2);
    color: #d4aa7d;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.4px;
    transition: 0.35s ease;
}

.rwa-industry-tag:hover {
    transform: translateY(-3px);
}

.rwa-industry-title {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.rwa-industry-top-text {
    font-size: 15px;
    line-height: 1.9;
    color: #bbbbbb;
    margin-bottom: 0;
}

/* =========================
LIST WRAP
========================= */

.rwa-industry-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 55px;
}

/* =========================
ITEM
========================= */

.rwa-industry-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 28px 32px;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.015)
    );
    border: 1px solid rgba(212, 170, 125, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.45s ease;
}

/* HOVER LIGHT */

.rwa-industry-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(212, 170, 125, 0.12), transparent);
    opacity: 0;
    transition: 0.45s ease;
}

.rwa-industry-item:hover::before {
    opacity: 1;
}

.rwa-industry-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 170, 125, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* =========================
NUMBER
========================= */

.rwa-industry-number {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 52px;
    font-weight: 800;
    color: rgba(212, 170, 125, 0.07);
    line-height: 1;
    user-select: none;
}

/* =========================
ICON
========================= */

.rwa-industry-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    border-radius: 22px;
    background: linear-gradient(135deg, #d4aa7d 0%, #c99967 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #272727;
    font-size: 30px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

.rwa-industry-item:hover .rwa-industry-icon {
    transform: rotate(-8deg) scale(1.06);
}

/* =========================
CONTENT
========================= */

.rwa-industry-content {
    position: relative;
    z-index: 2;
}

.rwa-industry-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.rwa-industry-content p {
    font-size: 15px;
    line-height: 1.85;
    color: #bdbdbd;
    margin-bottom: 0;
    max-width: 720px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    .rwa-industry-sec {
        padding: 100px 0 85px;
    }

    .rwa-industry-title {
        font-size: 42px;
        margin-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .rwa-industry-sec {
        padding: 80px 0;
    }

    .rwa-industry-title {
        font-size: 31px;
    }

    .rwa-industry-item {
        padding: 22px 20px;
        gap: 18px;
        border-radius: 22px;
        align-items: flex-start;
    }

    .rwa-industry-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 22px;
        border-radius: 16px;
    }

    .rwa-industry-content h3 {
        font-size: 18px;
    }

    .rwa-industry-content p {
        font-size: 14px;
    }

    .rwa-industry-number {
        font-size: 34px;
        top: 14px;
        right: 16px;
    }
}

/* =========================
MAIN SECTION (LIQUID STYLE)
========================= */

.rwa-chain-sec {
    position: relative;
    padding: 80px 0;
    background: #011627;
    overflow: hidden;
    color: #fdfffc;
}

/* =========================
LIQUID BACKGROUND (NEW STYLE)
NO BOX GRID ANYMORE
========================= */

.rwa-liquid {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
    z-index: 0;
    animation: liquidMove 12s infinite ease-in-out;
}

.l1 {
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, #fdfffc, #d4aa7d);
    top: -120px;
    left: -120px;
}

.l2 {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #fdfffc, #7bdff2);
    bottom: -140px;
    right: -120px;
    animation-duration: 15s;
}

@keyframes liquidMove {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -30px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* =========================
FLOATING NODES (LIGHT DANCE)
========================= */

.rwa-node {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fdfffc;
    opacity: 0.18;
    z-index: 1;
    animation: nodeFloat 9s infinite ease-in-out;
}

.n1 {
    top: 12%;
    left: 10%;
}
.n2 {
    top: 30%;
    right: 12%;
    animation-duration: 11s;
}
.n3 {
    bottom: 18%;
    left: 25%;
    animation-duration: 10s;
}
.n4 {
    bottom: 12%;
    right: 20%;
    animation-duration: 13s;
}

@keyframes nodeFloat {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(25px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* =========================
HEADER
========================= */

.rwa-chain-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(253, 255, 252, 0.08);
    border: 1px solid rgba(253, 255, 252, 0.15);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.rwa-chain-title {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgb(228, 195, 190);
}

.rwa-chain-subtitle {
    font-size: 16px;
    color: rgba(253, 255, 252, 0.75);
    line-height: 1.8;
}

/* =========================
CONTENT BOX (SOFT GLASS ONLY)
========================= */

.rwa-wave-box {
    background: rgba(253, 255, 252, 0.04);
    border: 1px solid rgba(253, 255, 252, 0.12);
    border-radius: 26px;
    padding: 35px 30px;
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* soft wave glow */
.rwa-wave-box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(253, 255, 252, 0.08),
        transparent 60%
    );
    top: -50%;
    left: -50%;
    transform: rotate(25deg);
}

.rwa-wave-box:hover {
    transform: translateY(-10px);
    border-color: rgba(253, 255, 252, 0.25);
}

/* =========================
LIST STYLE (CLEAN)
========================= */

.rwa-wave-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.rwa-wave-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rwa-wave-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: rgba(253, 255, 252, 0.85);
    transition: 0.3s ease;
}

.rwa-wave-box li i {
    color: #fdfffc;
    opacity: 0.85;
}

.rwa-wave-box li:hover {
    transform: translateX(6px);
}

/* =========================
FOOTER
========================= */

.rwa-chain-footer {
    margin-top: 50px;
    padding: 22px 28px;
    border-radius: 18px;
    background: rgba(253, 255, 252, 0.06);
    border: 1px solid rgba(253, 255, 252, 0.12);
    color: rgba(253, 255, 252, 0.8);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    .rwa-chain-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .rwa-chain-sec {
        padding: 80px 0;
    }
    .rwa-chain-title {
        font-size: 30px;
    }
    .rwa-wave-box {
        padding: 25px;
    }
}

/* security */

/* =========================
MAIN SECTION (LIGHT THEME)
========================= */

.rwa-security-light-sec {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7f8f3 100%);
    overflow: hidden;
    color: #2f3e46;
}

/* =========================
SOFT SHAPES (NEW UNIQUE STYLE)
========================= */

.rwa-soft-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    z-index: 0;
    animation: floatSoft 10s infinite ease-in-out;
}

.shape1 {
    background: #b1b695;
    top: -80px;
    left: -100px;
}

.shape2 {
    background: #fcd0a1;
    bottom: -90px;
    right: -120px;
    animation-duration: 12s;
}

@keyframes floatSoft {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -25px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* =========================
BADGE
========================= */

.rwa-light-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(177, 182, 149, 0.15);
    border: 1px solid rgba(177, 182, 149, 0.35);
    font-size: 13px;
    font-weight: 700;
    color: #4a5a4f;
    margin-bottom: 20px;
}

/* =========================
TITLE
========================= */

.rwa-light-title {
    font-size: 48px;
    font-weight: 600;
    color: #2f3e46;
    margin-bottom: 15px;
}

.rwa-light-subtitle {
    font-size: 16px;
    color: #5c6b63;
    line-height: 1.8;
}

/* =========================
BOX
========================= */

.rwa-light-box {
    background: #ffffff;
    border: 1px solid rgba(177, 182, 149, 0.35);
    border-radius: 26px;
    padding: 35px 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* soft highlight */
.rwa-light-box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(
        circle,
        rgba(252, 208, 161, 0.25),
        transparent 60%
    );
    transform: rotate(20deg);
    opacity: 0.6;
}

.rwa-light-box:hover {
    transform: translateY(-10px);
    border-color: #b1b695;
}

/* =========================
LIST
========================= */

.rwa-light-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2f3e46;
}

.rwa-light-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rwa-light-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #4b5d52;
    transition: 0.3s ease;
}

.rwa-light-box li i {
    color: #b1b695;
    font-size: 16px;
}

.rwa-light-box li:hover {
    transform: translateX(6px);
}

/* =========================
FOOTER
========================= */

.rwa-light-footer {
    margin-top: 55px;
    padding: 22px 28px;
    border-radius: 18px;
    background: rgba(252, 208, 161, 0.25);
    border: 1px solid rgba(177, 182, 149, 0.35);
    color: #4a5a4f;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    .rwa-light-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .rwa-security-light-sec {
        padding: 80px 0;
    }
    .rwa-light-title {
        font-size: 30px;
    }
    .rwa-light-box {
        padding: 25px;
    }
}

/* =========================
MAIN SECTION (AGENCY STYLE)
========================= */

.rwa-choose-sec {
    position: relative;
    padding: 80px 0 70px; /* different spacing */
    background: #fff0f3;
    overflow: hidden;
}

/* =========================
BACKGROUND SHAPES (NEW STYLE)
========================= */

.rwa-choose-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.35;
    z-index: 0;
}

.bg1 {
    width: 420px;
    height: 420px;
    background: #590d22;
    top: -120px;
    left: -120px;
    animation: floatA 11s infinite ease-in-out;
}

.bg2 {
    width: 380px;
    height: 380px;
    background: #590d22;
    bottom: -140px;
    right: -140px;
    opacity: 0.25;
    animation: floatB 13s infinite ease-in-out;
}

@keyframes floatA {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(40px, -25px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes floatB {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 30px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* =========================
BADGE
========================= */

.rwa-choose-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(89, 13, 34, 0.08);
    border: 1px solid rgba(89, 13, 34, 0.25);
    color: #590d22;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* =========================
TITLE
========================= */

.rwa-choose-title {
    font-size: 54px;
    font-weight: 600;
    color: #590d22;
    margin-bottom: 18px;
    line-height: 1.15;
}

.rwa-choose-subtitle {
    font-size: 16px;
    color: #6a3b46;
    line-height: 1.9;
    max-width: 900px;
}

/* =========================
STRIP LAYOUT (NEW TYPE)
========================= */

.rwa-choose-strip {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ITEM (NO CARDS, ONLY STRIP) */

.rwa-choose-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-left: 4px solid rgba(89, 13, 34, 0.3);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    transition: 0.35s ease;
}

.rwa-choose-item i {
    color: #590d22;
    font-size: 18px;
    min-width: 22px;
}

.rwa-choose-item span {
    font-size: 15px;
    color: #3b1f27;
    font-weight: 500;
}

.rwa-choose-item:hover {
    transform: translateX(10px);
    border-left-color: #590d22;
    background: rgba(255, 255, 255, 0.85);
}

/* =========================
FOOTER
========================= */

.rwa-choose-footer {
    margin-top: 60px;
    padding: 26px 30px;
    background: rgba(89, 13, 34, 0.08);
    border: 1px solid rgba(89, 13, 34, 0.2);
    color: #590d22;
    border-radius: 18px;
    font-weight: 500;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    .rwa-choose-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .rwa-choose-sec {
        padding: 110px 0 80px;
    }
    .rwa-choose-title {
        font-size: 30px;
    }
}

/* =========================
MAIN SECTION
========================= */

.rwa-future-sec {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f3fffb, #ecfdf7);
    overflow: hidden;
}

/* =========================
GLOW BACKGROUNDS
========================= */

.rwa-future-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.35;
    z-index: 0;
    animation: floatGlow 12s infinite ease-in-out;
}

.g1 {
    background: #07beb8;
    top: -120px;
    left: -140px;
}

.g2 {
    background: #a1cca5;
    bottom: -140px;
    right: -120px;
    animation-duration: 14s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(40px, -30px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* =========================
HEADER
========================= */

.rwa-future-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(7, 190, 184, 0.1);
    border: 1px solid rgba(7, 190, 184, 0.25);
    color: #078f89;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.rwa-future-title {
    font-size: 54px;
    font-weight: 600;
    color: #075e5a;
    margin-bottom: 18px;
}

.rwa-future-subtitle {
    font-size: 16px;
    color: #3f6f6b;
    line-height: 1.9;
}

/* =========================
TIMELINE
========================= */

.rwa-timeline {
    margin-top: 80px;
    position: relative;
    padding-left: 40px;
}

/* vertical line */
.rwa-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(#07beb8, #a1cca5);
    border-radius: 10px;
}

/* ITEM */
.rwa-timeline-item {
    position: relative;
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
}

/* DOT */
.rwa-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #07beb8;
    position: absolute;
    left: -9px;
    top: 6px;
    box-shadow: 0 0 0 6px rgba(7, 190, 184, 0.15);
}

/* CONTENT */
.rwa-content {
    padding-left: 25px;
}

.rwa-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #075e5a;
    margin: 0;
}

/* =========================
FOOTER
========================= */

.rwa-future-footer {
    margin-top: 70px;
    padding: 26px 30px;
    border-radius: 18px;
    background: rgba(7, 190, 184, 0.08);
    border: 1px solid rgba(7, 190, 184, 0.18);
    color: #3f6f6b;
    font-size: 15px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    .rwa-future-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .rwa-future-sec {
        padding: 100px 0;
    }
    .rwa-future-title {
        font-size: 30px;
    }
}

/* =========================
MAIN CTA SECTION
========================= */

.rwa-cta-sec {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #05070c, #0b1220);
    overflow: hidden;
    color: #ffffff;
}

/* =========================
GLOW ORBS (MODERN WEB3 FEEL)
========================= */

.rwa-cta-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    z-index: 0;
    animation: ctaFloat 10s infinite ease-in-out;
}

.g1 {
    background: #7f5af0;
    top: -150px;
    left: -120px;
}

.g2 {
    background: #2cb67d;
    bottom: -160px;
    right: -140px;
    animation-duration: 13s;
}

@keyframes ctaFloat {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(35px, -25px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* =========================
BADGE
========================= */

.rwa-cta-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* =========================
TITLE
========================= */

.rwa-cta-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 18px;
    color: whitesmoke;
}

/* =========================
TEXT
========================= */

.rwa-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto;
}

/* =========================
BUTTON
========================= */

.rwa-cta-action {
    margin-top: 35px;
}

.rwa-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7f5af0, #2cb67d);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s ease;
    box-shadow: 0 18px 50px rgba(127, 90, 240, 0.25);
}

.rwa-cta-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(127, 90, 240, 0.35);
}

/* =========================
FOOTER TEXT
========================= */

.rwa-cta-footer {
    margin-top: 40px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    .rwa-cta-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .rwa-cta-sec {
        padding: 90px 0;
    }

    .rwa-cta-title {
        font-size: 30px;
    }

    .rwa-cta-text {
        font-size: 14px;
    }
}


/* =========================
FAQ MAIN SECTION
========================= */

.rwa-faq-sec{
    position:relative;
    padding:80px 0;
    background:#f7fbfc;
    overflow:hidden;
}

/* =========================
WAVY BACKGROUND ANIMATION
========================= */

.rwa-wave-bg{
    position:absolute;
    width:200%;
    height:200%;
    top:-50%;
    left:-50%;
    background:radial-gradient(circle at 30% 30%, rgba(161,204,165,.25), transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(7,190,184,.20), transparent 45%);
    animation:waveMove 12s infinite ease-in-out;
    z-index:0;
}

.wave2{
    animation-duration:18s;
    opacity:.6;
    transform:rotate(180deg);
}

@keyframes waveMove{
    0%{transform:translate(0,0) scale(1);}
    50%{transform:translate(40px,-30px) scale(1.05);}
    100%{transform:translate(0,0) scale(1);}
}

/* =========================
TITLE
========================= */

.rwa-faq-title{
    font-size:52px;
    font-weight:600;
    color:#1f3b3a;
    margin-bottom:50px;
}

/* =========================
FAQ ITEM (CLEAN CARDLESS STYLE)
========================= */

.rwa-faq-wrap{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.rwa-faq-item{
    background:rgba(255,255,255,.75);
    border:1px solid rgba(161,204,165,.35);
    border-radius:18px;
    padding:22px 26px;
    backdrop-filter:blur(10px);
    transition:.3s ease;
}

.rwa-faq-item:hover{
    transform:translateY(-5px);
    border-color:#07beb8;
}

/* QUESTION */
.rwa-faq-item h3{
    font-size:16px;
    color:#144d4b;
    margin-bottom:10px;
    font-weight:700;
}

/* ANSWER */
.rwa-faq-item p{
    margin:0;
    font-size:15px;
    color:#355b59;
    line-height:1.7;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){
    .rwa-faq-title{font-size:40px;}
}

@media(max-width:767px){
    .rwa-faq-sec{padding:90px 0;}
    .rwa-faq-title{font-size:30px;}
}
