/* ============================================
   REMEDY CLOUD V2 — "Crystalline Tech" Aesthetic
   Palette: White #fff / Blue #27aae1 / Navy #241e61
   Fonts: Poppins (display) + Roboto (body)
   Prefix: rv2- (complete isolation from cloud.css)
   ============================================ */

/* ====== VARIABLES ====== */
:root {
    --rv2-navy: #241e61;
    --rv2-navy-90: rgba(36, 30, 97, 0.90);
    --rv2-navy-70: rgba(36, 30, 97, 0.70);
    --rv2-navy-10: rgba(36, 30, 97, 0.10);
    --rv2-navy-05: rgba(36, 30, 97, 0.05);
    --rv2-blue: #27aae1;
    --rv2-blue-70: rgba(39, 170, 225, 0.70);
    --rv2-blue-20: rgba(39, 170, 225, 0.20);
    --rv2-blue-10: rgba(39, 170, 225, 0.10);
    --rv2-blue-05: rgba(39, 170, 225, 0.05);
    --rv2-white: #ffffff;
    --rv2-offwhite: #f8fafc;
    --rv2-gray-50: #f0f4f8;
    --rv2-gray-100: #e2e8f0;
    --rv2-text: #1e1b4b;
    --rv2-text-body: #475569;
    --rv2-text-muted: #94a3b8;
    --rv2-radius: 16px;
    --rv2-radius-sm: 8px;
    --rv2-radius-lg: 24px;
    --rv2-radius-xl: 32px;
    --rv2-shadow-sm: 0 1px 3px rgba(36, 30, 97, 0.06);
    --rv2-shadow-md: 0 4px 20px rgba(36, 30, 97, 0.08);
    --rv2-shadow-lg: 0 12px 40px rgba(36, 30, 97, 0.12);
    --rv2-shadow-glow: 0 0 60px rgba(39, 170, 225, 0.15);
    --rv2-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --rv2-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ====== SCROLL ANIMATIONS ====== */
.rv2-fade {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s var(--rv2-ease), transform 0.9s var(--rv2-ease);
}
.rv2-fade.rv2-visible {
    opacity: 1;
    transform: translateY(0);
}
.rv2-fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s var(--rv2-ease), transform 0.9s var(--rv2-ease);
}
.rv2-fade-left.rv2-visible {
    opacity: 1;
    transform: translateX(0);
}
.rv2-fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s var(--rv2-ease), transform 0.9s var(--rv2-ease);
}
.rv2-fade-right.rv2-visible {
    opacity: 1;
    transform: translateX(0);
}
.rv2-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--rv2-ease), transform 0.8s var(--rv2-ease-bounce);
}
.rv2-scale.rv2-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.rv2-stagger > *:nth-child(1) { transition-delay: 0s; }
.rv2-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.rv2-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.rv2-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.rv2-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.rv2-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ====== DECORATIVE SHAPES ====== */
.rv2-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.rv2-shape--circle {
    border-radius: 50%;
    background: var(--rv2-blue-10);
    animation: rv2-float 8s ease-in-out infinite;
}
.rv2-shape--ring {
    border-radius: 50%;
    border: 2px solid var(--rv2-blue-20);
    background: transparent;
    animation: rv2-float 10s ease-in-out infinite reverse;
}
.rv2-shape--dots {
    opacity: 0.08;
}
.rv2-shape--diamond {
    width: 20px;
    height: 20px;
    background: var(--rv2-blue);
    transform: rotate(45deg);
    animation: rv2-pulse 4s ease-in-out infinite;
}

@keyframes rv2-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes rv2-pulse {
    0%, 100% { opacity: 0.3; transform: rotate(45deg) scale(1); }
    50% { opacity: 0.6; transform: rotate(45deg) scale(1.2); }
}
@keyframes rv2-slide-in-left {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes rv2-counter-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes rv2-hero-text {
    from { opacity: 0; transform: translateY(40px) skewY(2deg); }
    to { opacity: 1; transform: translateY(0) skewY(0deg); }
}
@keyframes rv2-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes rv2-border-glow {
    0%, 100% { border-color: var(--rv2-blue-20); }
    50% { border-color: var(--rv2-blue-70); }
}

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.rv2-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--rv2-navy);
}
.rv2-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4) saturate(0.8);
    transition: transform 0.3s ease;
}
.rv2-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(36, 30, 97, 0.85) 0%,
        rgba(36, 30, 97, 0.5) 40%,
        rgba(39, 170, 225, 0.2) 100%
    );
    z-index: 1;
}
.rv2-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
    text-align: center;
}
.rv2-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: var(--rv2-blue);
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: rv2-hero-text 0.8s var(--rv2-ease) 0.2s both;
}
.rv2-hero__badge i {
    font-size: 14px;
}
.rv2-hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    color: var(--rv2-white);
    line-height: 1.1;
    margin-bottom: 28px;
    animation: rv2-hero-text 0.8s var(--rv2-ease) 0.4s both;
}
.rv2-hero__title span {
    background: linear-gradient(135deg, var(--rv2-blue), #5bc4f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rv2-hero__desc {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 44px;
    animation: rv2-hero-text 0.8s var(--rv2-ease) 0.6s both;
}
.rv2-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: rv2-hero-text 0.8s var(--rv2-ease) 0.8s both;
}
.rv2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s var(--rv2-ease);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.rv2-btn--primary {
    background: var(--rv2-blue);
    color: var(--rv2-white);
    box-shadow: 0 4px 24px rgba(39, 170, 225, 0.35);
}
.rv2-btn--primary:hover {
    background: #1d9cd1;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(39, 170, 225, 0.45);
}
.rv2-btn--outline {
    background: transparent;
    color: var(--rv2-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.rv2-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero scroll indicator */
.rv2-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.rv2-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: rv2-scroll-bob 2s ease-in-out infinite;
}
@keyframes rv2-scroll-bob {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(1.4); opacity: 1; }
}

/* Diagonal cut at bottom of hero */
.rv2-hero__cut {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
    font-size: 0;
}
.rv2-hero__cut svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   SECTION 2 — WHY REMEDY CLOUD (Benefits)
   ============================================ */
.rv2-benefits {
    position: relative;
    padding: 120px 40px 100px;
    background: var(--rv2-white);
    overflow: hidden;
}
.rv2-benefits__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}
.rv2-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rv2-blue);
    margin-bottom: 20px;
}
.rv2-section-label::before,
.rv2-section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--rv2-blue);
}
.rv2-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--rv2-text);
    line-height: 1.2;
    margin-bottom: 16px;
}
.rv2-section-title em {
    font-style: normal;
    color: var(--rv2-blue);
}
.rv2-section-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: var(--rv2-text-body);
    line-height: 1.7;
}

/* Benefits grid — 3x2 asymmetric */
.rv2-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto;
}
.rv2-benefit-card {
    position: relative;
    padding: 40px 32px 36px;
    background: var(--rv2-white);
    border: 1px solid var(--rv2-gray-100);
    border-radius: var(--rv2-radius);
    transition: all 0.5s var(--rv2-ease);
    overflow: hidden;
}
.rv2-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rv2-blue), var(--rv2-navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--rv2-ease);
}
.rv2-benefit-card:hover {
    border-color: var(--rv2-blue-20);
    box-shadow: var(--rv2-shadow-lg);
    transform: translateY(-6px);
}
.rv2-benefit-card:hover::before {
    transform: scaleX(1);
}
.rv2-benefit-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv2-blue-10);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--rv2-blue);
    transition: all 0.4s var(--rv2-ease);
}
.rv2-benefit-card:hover .rv2-benefit-card__icon {
    background: var(--rv2-blue);
    color: var(--rv2-white);
    transform: scale(1.08);
}
.rv2-benefit-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--rv2-text);
    margin-bottom: 10px;
}
.rv2-benefit-card__text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--rv2-text-body);
    line-height: 1.65;
}
/* Number watermark */
.rv2-benefit-card__num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--rv2-navy-05);
    line-height: 1;
    transition: color 0.4s var(--rv2-ease);
}
.rv2-benefit-card:hover .rv2-benefit-card__num {
    color: var(--rv2-blue-10);
}

/* ============================================
   SOLUTIONS NAV — Link Cards to Subpages
   ============================================ */
.rv2-solutions {
    position: relative;
    padding: 100px 40px 120px;
    background: var(--rv2-offwhite);
    overflow: hidden;
}
.rv2-solutions__inner {
    max-width: 1140px;
    margin: 0 auto;
}
.rv2-solutions__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.rv2-solution-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 36px;
    background: var(--rv2-white);
    border: 1px solid var(--rv2-gray-100);
    border-radius: var(--rv2-radius-lg);
    text-decoration: none;
    transition: all 0.5s var(--rv2-ease);
    overflow: hidden;
}
.rv2-solution-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rv2-blue), var(--rv2-navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--rv2-ease);
}
.rv2-solution-card:hover {
    border-color: var(--rv2-blue-20);
    box-shadow: 0 16px 48px rgba(36, 30, 97, 0.1);
    transform: translateY(-6px);
}
.rv2-solution-card:hover::before {
    transform: scaleX(1);
}
.rv2-solution-card__icon-wrap {
    position: relative;
    flex-shrink: 0;
}
.rv2-solution-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv2-blue-10);
    border-radius: 18px;
    font-size: 26px;
    color: var(--rv2-blue);
    transition: all 0.4s var(--rv2-ease);
    position: relative;
    z-index: 1;
}
.rv2-solution-card__icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 170, 225, 0.15) 0%, transparent 70%);
    transition: transform 0.5s var(--rv2-ease);
}
.rv2-solution-card:hover .rv2-solution-card__icon {
    background: var(--rv2-blue);
    color: var(--rv2-white);
    transform: scale(1.08);
}
.rv2-solution-card:hover .rv2-solution-card__icon-glow {
    transform: translate(-50%, -50%) scale(1);
}
.rv2-solution-card__body {
    flex: 1;
    min-width: 0;
}
.rv2-solution-card__body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--rv2-text);
    margin-bottom: 10px;
    transition: color 0.3s var(--rv2-ease);
}
.rv2-solution-card:hover .rv2-solution-card__body h3 {
    color: var(--rv2-navy);
}
.rv2-solution-card__body p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--rv2-text-body);
    line-height: 1.65;
    margin-bottom: 16px;
}
.rv2-solution-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.rv2-solution-card__tags li {
    display: inline-block;
    padding: 4px 12px;
    background: var(--rv2-blue-05);
    border: 1px solid var(--rv2-blue-20);
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--rv2-blue);
    letter-spacing: 0.3px;
}
.rv2-solution-card:hover .rv2-solution-card__tags li {
    background: var(--rv2-blue-10);
    border-color: var(--rv2-blue);
}
.rv2-solution-card__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv2-offwhite);
    border-radius: 50%;
    color: var(--rv2-text-muted);
    font-size: 14px;
    transition: all 0.4s var(--rv2-ease);
    align-self: center;
}
.rv2-solution-card:hover .rv2-solution-card__arrow {
    background: var(--rv2-blue);
    color: var(--rv2-white);
    transform: translateX(4px);
}

/* ============================================
   SECTION 3 — SECURITY (Split Layout)
   ============================================ */
.rv2-security {
    position: relative;
    padding: 0;
    background: var(--rv2-offwhite);
    overflow: hidden;
}
.rv2-security__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    max-width: 100%;
}
.rv2-security__visual {
    position: relative;
    overflow: hidden;
}
.rv2-security__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}
.rv2-security:hover .rv2-security__img {
    transform: scale(1.04);
}
.rv2-security__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rv2-navy-90) 0%, var(--rv2-navy-70) 50%, rgba(39, 170, 225, 0.3) 100%);
}
.rv2-security__img-text {
    position: absolute;
    bottom: 48px;
    left: 48px;
    z-index: 2;
}
.rv2-security__img-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--rv2-white);
    line-height: 1.1;
}
.rv2-security__img-text h3 span {
    color: var(--rv2-blue);
}
.rv2-security__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
}
.rv2-security__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}
.rv2-security__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--rv2-radius);
    background: var(--rv2-white);
    border: 1px solid transparent;
    transition: all 0.4s var(--rv2-ease);
}
.rv2-security__item:hover {
    border-color: var(--rv2-blue-20);
    box-shadow: var(--rv2-shadow-md);
    transform: translateX(8px);
}
.rv2-security__item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv2-blue-10);
    border-radius: 12px;
    color: var(--rv2-blue);
    font-size: 18px;
}
.rv2-security__item-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--rv2-text);
    margin-bottom: 4px;
}
.rv2-security__item-body p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--rv2-text-body);
    line-height: 1.6;
}

/* ============================================
   SECTION 4 — PRIVATE CLOUD
   ============================================ */
.rv2-private {
    position: relative;
    padding: 120px 40px;
    background: var(--rv2-white);
    overflow: hidden;
}
.rv2-private__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}
.rv2-private__content {
    position: relative;
    z-index: 1;
}
.rv2-private__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}
.rv2-private__feat {
    padding: 20px;
    background: var(--rv2-offwhite);
    border-radius: var(--rv2-radius-sm);
    border-left: 3px solid var(--rv2-blue);
    transition: all 0.3s var(--rv2-ease);
}
.rv2-private__feat:hover {
    background: var(--rv2-blue-05);
    transform: translateY(-3px);
    box-shadow: var(--rv2-shadow-sm);
}
.rv2-private__feat h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--rv2-text);
    margin-bottom: 6px;
}
.rv2-private__feat p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: var(--rv2-text-body);
    line-height: 1.55;
}
/* Visual side */
.rv2-private__visual {
    position: relative;
}
.rv2-private__img-wrap {
    position: relative;
    border-radius: var(--rv2-radius-lg);
    overflow: hidden;
    box-shadow: var(--rv2-shadow-lg);
}
.rv2-private__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
/* Floating stat cards on the image */
.rv2-private__stat {
    position: absolute;
    background: var(--rv2-white);
    border-radius: var(--rv2-radius);
    padding: 16px 24px;
    box-shadow: var(--rv2-shadow-lg);
    border: 1px solid var(--rv2-gray-100);
    z-index: 2;
}
.rv2-private__stat--top {
    top: -20px;
    right: -20px;
    animation: rv2-float 6s ease-in-out infinite;
}
.rv2-private__stat--bottom {
    bottom: -16px;
    left: -16px;
    animation: rv2-float 7s ease-in-out infinite reverse;
}
.rv2-private__stat strong {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--rv2-blue);
    display: block;
}
.rv2-private__stat span {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: var(--rv2-text-muted);
}

/* ============================================
   SECTION 5 — BACKUP / STORAGE
   ============================================ */
.rv2-backup {
    position: relative;
    padding: 120px 40px;
    background: var(--rv2-navy);
    overflow: hidden;
}
.rv2-backup::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 170, 225, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.rv2-backup__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}
.rv2-backup__visual {
    position: relative;
}
.rv2-backup__img-wrap {
    overflow: visible;
    transform: scale(1.15);
    transform-origin: center center;
}
.rv2-backup__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.rv2-backup__content h2 {
    color: var(--rv2-white);
}
.rv2-backup__content .rv2-section-desc {
    color: rgba(255, 255, 255, 0.65);
}
.rv2-backup__content .rv2-section-label {
    color: var(--rv2-blue);
}
.rv2-backup__content .rv2-section-label::before,
.rv2-backup__content .rv2-section-label::after {
    background: var(--rv2-blue);
}
.rv2-backup__checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}
.rv2-backup__check {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--rv2-radius-sm);
    transition: all 0.4s var(--rv2-ease);
}
.rv2-backup__check:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--rv2-blue-20);
    transform: translateX(6px);
}
.rv2-backup__check-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 170, 225, 0.15);
    border-radius: 10px;
    color: var(--rv2-blue);
    font-size: 14px;
}
.rv2-backup__check span {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ============================================
   SECTION 6 — DATA CENTERS
   ============================================ */
.rv2-datacenters {
    position: relative;
    padding: 120px 40px;
    background: var(--rv2-offwhite);
    overflow: hidden;
}
.rv2-dc__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
}
.rv2-dc-card {
    position: relative;
    border-radius: var(--rv2-radius-lg);
    overflow: hidden;
    background: var(--rv2-white);
    border: 1px solid var(--rv2-gray-100);
    transition: all 0.5s var(--rv2-ease);
}
.rv2-dc-card:hover {
    box-shadow: var(--rv2-shadow-lg);
    transform: translateY(-8px);
    border-color: var(--rv2-blue-20);
}
.rv2-dc-card__img {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.rv2-dc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 4s ease;
}
.rv2-dc-card:hover .rv2-dc-card__img img {
    transform: scale(1.06);
}
.rv2-dc-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--rv2-navy) 0%, transparent 60%);
}
.rv2-dc-card__location {
    position: absolute;
    bottom: 16px;
    left: 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--rv2-white);
    z-index: 1;
}
.rv2-dc-card__body {
    padding: 32px;
}
.rv2-dc-card__name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--rv2-text);
    margin-bottom: 16px;
}
.rv2-dc-card__specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rv2-dc-card__spec {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--rv2-text-body);
    line-height: 1.5;
}
.rv2-dc-card__spec i {
    flex-shrink: 0;
    color: var(--rv2-blue);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* ============================================
   SECTION 7 — CTA
   ============================================ */
.rv2-cta {
    position: relative;
    padding: 100px 40px;
    background: var(--rv2-white);
    overflow: hidden;
}
.rv2-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(#27aae1 1px, transparent 1px),
        linear-gradient(90deg, #27aae1 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
.rv2-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--rv2-navy) 0%, #352d8a 100%);
    border-radius: var(--rv2-radius-xl);
    padding: 72px 64px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(36, 30, 97, 0.3);
}
.rv2-cta__glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 170, 225, 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.rv2-cta__glow--2 {
    top: auto;
    bottom: -80px;
    left: -80px;
    right: auto;
    width: 250px;
    height: 250px;
}
.rv2-cta__text {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 48px;
}
.rv2-cta__text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--rv2-white);
    margin-bottom: 16px;
}
.rv2-cta__text p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.rv2-cta__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.rv2-cta-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--rv2-radius);
    text-decoration: none;
    transition: all 0.4s var(--rv2-ease);
}
.rv2-cta-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--rv2-blue);
    transform: translateY(-4px);
}
.rv2-cta-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv2-blue);
    border-radius: 14px;
    color: var(--rv2-white);
    font-size: 20px;
}
.rv2-cta-card__info h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}
.rv2-cta-card__info p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--rv2-white);
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .rv2-solutions__grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }
    .rv2-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rv2-security__inner {
        grid-template-columns: 1fr;
    }
    .rv2-security__visual {
        height: 400px;
    }
    .rv2-security__content {
        padding: 60px 40px;
    }
    .rv2-private__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .rv2-backup__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .rv2-dc__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .rv2-solutions {
        padding: 60px 24px 80px;
    }
    .rv2-solution-card {
        flex-direction: column;
        gap: 20px;
        padding: 32px 28px;
    }
    .rv2-solution-card__arrow {
        align-self: flex-end;
    }
    .rv2-benefits {
        padding: 80px 24px 60px;
    }
    .rv2-benefits__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rv2-hero__content {
        padding: 0 24px;
    }
    .rv2-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .rv2-security__content {
        padding: 48px 24px;
    }
    .rv2-security__img-text {
        left: 24px;
        bottom: 32px;
    }
    .rv2-security__img-text h3 {
        font-size: 32px;
    }
    .rv2-private {
        padding: 80px 24px;
    }
    .rv2-private__features {
        grid-template-columns: 1fr;
    }
    .rv2-private__stat--top {
        right: 8px;
        top: 8px;
    }
    .rv2-private__stat--bottom {
        left: 8px;
        bottom: 8px;
    }
    .rv2-backup {
        padding: 80px 24px;
    }
    .rv2-datacenters {
        padding: 80px 24px;
    }
    .rv2-cta {
        padding: 60px 20px;
    }
    .rv2-cta__inner {
        padding: 48px 28px;
    }
    .rv2-cta__cards {
        grid-template-columns: 1fr;
    }
    .rv2-benefit-card__num {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .rv2-hero__title {
        font-size: 28px;
    }
    .rv2-section-title {
        font-size: 24px;
    }
    .rv2-security__visual {
        height: 280px;
    }
    .rv2-dc-card__img {
        height: 200px;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
button.rv2-scroll-top {
    position: fixed !important;
    bottom: 32px !important;
    right: 32px !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #27aae1 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(39, 170, 225, 0.4) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
}
button.rv2-scroll-top.rv2-scroll-top--visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}
button.rv2-scroll-top:hover {
    background: #241e61 !important;
    box-shadow: 0 6px 28px rgba(36, 30, 97, 0.4) !important;
    transform: translateY(-3px) !important;
}

/* ============================================
   FOOTER OVERRIDE — Background Pattern
   ============================================ */
.footer {
    position: relative;
    background-color: var(--rv2-navy) !important;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(39, 170, 225, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(39, 170, 225, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.footer > * {
    position: relative;
    z-index: 1;
}
.footer-top {
    background-color: rgba(255, 255, 255, 0.06) !important;
    color: var(--rv2-white);
}
.footer-contact h4 {
    color: var(--rv2-white) !important;
}
.footer-contact ul li {
    color: rgba(255, 255, 255, 0.7) !important;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.5) !important;
}
.footer-brand a {
    display: inline-block;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
}
.footer-logo {
    display: block;
}
