/**
 * Remote Hive — VPN Page Styles
 *
 * Sections: Hero · Providers · Pricing · Testimonials
 * Prefix:   rh-vpnhero / rh-vpnproviders / rh-vpnpricing / rh-vpntestimonials
 *
 * @package Astra Child – Remote Hive
 */

/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES (Customizer-driven)
   ═══════════════════════════════════════ */
:root {
    --rh-vpn-bg: #F7F8FC;
    --rh-vpn-card: #FFF;
    --rh-vpn-ink: #0D1B2A;
    --rh-vpn-ink2: #4A5568;
    --rh-vpn-muted: #8896A6;
    --rh-vpn-bdr: #E2E8F0;
    --rh-vpn-s1: 0 2px 8px rgba(13,27,42,.06);
    --rh-vpn-s2: 0 8px 32px rgba(13,27,42,.08);
    --rh-vpn-s3: 0 20px 60px rgba(13,27,42,.10);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.rh-vpnhero {
    --rh-vpnhero-ac: #0066FF;
    --rh-vpnhero-ac2: #6C3BF5;
    --rh-vpnhero-grn: #00C48C;
    --rh-vpnhero-red: #EF4444;
    --rh-vpnhero-org: #FF8C42;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--rh-vpn-bg);
}

/* Background grid + glows */
.rh-vpnhero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.rh-vpnhero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108,59,245,.10) 0%, rgba(0,102,255,.08) 40%, transparent 70%);
    animation: rh-vpnhero-glow 6s ease-in-out infinite;
}

.rh-vpnhero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,196,140,.08) 0%, transparent 70%);
    animation: rh-vpnhero-glow 8s ease-in-out infinite reverse;
}

.rh-vpnhero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--rh-vpn-bdr) 1px, transparent 1px),
                      linear-gradient(90deg, var(--rh-vpn-bdr) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .35;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
}

@keyframes rh-vpnhero-glow {
    0%, 100% { transform: scale(1); opacity: .7; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Layout */
.rh-vpnhero-wrap {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left content */
.rh-vpnhero-left {
    animation: rh-vpnhero-up .8s ease both;
}

@keyframes rh-vpnhero-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Badge */
.rh-vpnhero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E6FAF3, #D1FAE5);
    color: #059669;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid rgba(5,150,105,.12);
    animation: rh-vpnhero-up .8s ease .1s both;
}

.rh-vpnhero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--rh-vpnhero-grn);
    border-radius: 50%;
    animation: rh-vpnhero-blink 2s ease-in-out infinite;
}

@keyframes rh-vpnhero-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

/* Title — H1 */
.rh-vpnhero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--rh-vpn-ink);
    margin-bottom: 24px;
    animation: rh-vpnhero-up .8s ease .2s both;
}

.rh-vpnhero-title span {
    background: linear-gradient(135deg, var(--rh-vpnhero-ac), var(--rh-vpnhero-ac2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.rh-vpnhero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--rh-vpn-ink2);
    max-width: 530px;
    margin-bottom: 36px;
    animation: rh-vpnhero-up .8s ease .3s both;
}

.rh-vpnhero-desc strong {
    color: var(--rh-vpn-ink);
    font-weight: 600;
}

/* CTAs */
.rh-vpnhero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 44px;
    animation: rh-vpnhero-up .8s ease .4s both;
}

.rh-vpnhero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
}

.rh-vpnhero-btn--fill {
    background: linear-gradient(135deg, var(--rh-vpnhero-ac), var(--rh-vpnhero-ac2));
    color: #fff;
    box-shadow: 0 8px 32px rgba(108,59,245,.25);
}

.rh-vpnhero-btn--fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(108,59,245,.35);
}

.rh-vpnhero-btn--fill svg {
    transition: transform .3s;
}

.rh-vpnhero-btn--fill:hover svg {
    transform: translateX(3px);
}

.rh-vpnhero-btn--ghost {
    background: var(--rh-vpn-card);
    color: var(--rh-vpn-ink);
    border: 1.5px solid var(--rh-vpn-bdr);
    box-shadow: var(--rh-vpn-s1);
}

.rh-vpnhero-btn--ghost:hover {
    border-color: var(--rh-vpnhero-ac);
    color: var(--rh-vpnhero-ac);
    transform: translateY(-2px);
}

/* Trust */
.rh-vpnhero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: rh-vpnhero-up .8s ease .5s both;
}

.rh-vpnhero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--rh-vpn-ink2);
    font-weight: 500;
}

.rh-vpnhero-trust-icon {
    width: 20px;
    height: 20px;
    color: var(--rh-vpnhero-grn);
    flex-shrink: 0;
}

/* Right side */
.rh-vpnhero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rh-vpnhero-up .8s ease .3s both;
}

/* Card */
.rh-vpnhero-card {
    width: 400px;
    background: var(--rh-vpn-card);
    border-radius: 24px;
    border: 1px solid var(--rh-vpn-bdr);
    box-shadow: var(--rh-vpn-s3);
    overflow: hidden;
    z-index: 2;
}

.rh-vpnhero-card-hdr {
    background: linear-gradient(135deg, #0055DD, var(--rh-vpnhero-ac2));
    padding: 28px 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rh-vpnhero-card-hdr::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}

.rh-vpnhero-card-shield {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
}

.rh-vpnhero-card-t {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.rh-vpnhero-card-st {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    position: relative;
    z-index: 1;
}

.rh-vpnhero-card-body {
    padding: 28px;
}

/* Price rows */
.rh-vpnhero-price-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.rh-vpnhero-pr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
}

.rh-vpnhero-pr--old {
    background: linear-gradient(135deg, #FEF2F2, #FFF1F2);
    border: 1px dashed #FECACA;
}

.rh-vpnhero-pr--old .rh-vpnhero-pr-l {
    color: var(--rh-vpn-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rh-vpnhero-pr--old .rh-vpnhero-pr-v {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: var(--rh-vpnhero-red);
    text-decoration: line-through;
}

.rh-vpnhero-pr--new {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border: 1.5px solid #A7F3D0;
}

.rh-vpnhero-pr--new .rh-vpnhero-pr-l {
    color: #059669;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rh-vpnhero-pr--new .rh-vpnhero-pr-v {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: #059669;
    font-size: 20px;
}

.rh-vpnhero-pr-tag {
    background: linear-gradient(135deg, #059669, #10B981);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* Connection flow */
.rh-vpnhero-conn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #EFF0FF, #E8F0FE);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,102,255,.08);
}

.rh-vpnhero-conn-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rh-vpnhero-conn-flag {
    font-size: 24px;
}

.rh-vpnhero-conn-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--rh-vpnhero-ac);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.rh-vpnhero-conn-pipe {
    flex: 1;
    max-width: 90px;
    height: 3px;
    background: rgba(0,102,255,.12);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.rh-vpnhero-conn-pipe::after {
    content: '';
    position: absolute;
    left: -30%;
    top: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--rh-vpnhero-ac), var(--rh-vpnhero-ac2), transparent);
    border-radius: 4px;
    animation: rh-vpnhero-stream 1.8s linear infinite;
}

@keyframes rh-vpnhero-stream {
    0%   { left: -30%; }
    100% { left: 100%; }
}

/* Device icons */
.rh-vpnhero-devs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 4px;
}

.rh-vpnhero-dev {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--rh-vpn-bg);
    border: 1px solid var(--rh-vpn-bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rh-vpn-muted);
    transition: all .3s;
}

.rh-vpnhero-dev:hover {
    border-color: var(--rh-vpnhero-ac);
    color: var(--rh-vpnhero-ac);
    background: linear-gradient(135deg, #EFF0FF, #E8F0FE);
    transform: translateY(-2px);
}

.rh-vpnhero-devs-lbl {
    font-size: 12px;
    color: var(--rh-vpn-muted);
    font-weight: 500;
}

/* Floating badges */
.rh-vpnhero-fl {
    position: absolute;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 14px;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--rh-vpn-s2);
    z-index: 3;
    font-size: 13px;
    font-weight: 600;
    animation: rh-vpnhero-fl 4s ease-in-out infinite;
    white-space: nowrap;
}

.rh-vpnhero-fl--1 {
    top: 4%;
    right: -24px;
    background: linear-gradient(135deg, rgba(236,253,245,.9), rgba(209,250,229,.85));
}

.rh-vpnhero-fl--2 {
    top: 44%;
    left: -48px;
    animation-delay: .6s;
    background: linear-gradient(135deg, rgba(255,243,232,.9), rgba(255,237,213,.85));
}

.rh-vpnhero-fl--3 {
    bottom: 14%;
    left: -36px;
    animation-delay: 1.2s;
    background: linear-gradient(135deg, rgba(239,240,255,.9), rgba(232,240,254,.85));
}

@keyframes rh-vpnhero-fl {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.rh-vpnhero-fl-ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rh-vpnhero-fl-ico--g { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); color: #059669; }
.rh-vpnhero-fl-ico--o { background: linear-gradient(135deg, #FEE2D5, #FECBA1); color: #EA580C; }
.rh-vpnhero-fl-ico--b { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); color: var(--rh-vpnhero-ac); }

.rh-vpnhero-fl-txt {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.rh-vpnhero-fl-val {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 700;
}

.rh-vpnhero-fl-lbl {
    font-size: 11px;
    color: var(--rh-vpn-muted);
    font-weight: 500;
}


/* ═══════════════════════════════════════
   PROVIDERS
   ═══════════════════════════════════════ */
.rh-vpnproviders {
    --rh-vpnprov-nord-start: #1A1A2E;
    --rh-vpnprov-nord-end: #16213E;
    --rh-vpnprov-surf-start: #0A2540;
    --rh-vpnprov-surf-end: #0E3356;
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
    padding: 100px 0;
}

.rh-vpnproviders::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(70,135,255,.10) 0%, transparent 70%);
    pointer-events: none;
}

.rh-vpnproviders::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(23,143,143,.10) 0%, transparent 70%);
    pointer-events: none;
}

.rh-vpnproviders-wrap {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.rh-vpnproviders-hdr {
    text-align: center;
    margin-bottom: 60px;
}

.rh-vpnproviders-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a0f;
    margin: 0 0 16px;
    letter-spacing: -.03em;
}

.rh-vpnproviders-title span {
    background: linear-gradient(135deg, var(--rh-vpnhero-ac), var(--rh-vpnhero-ac2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rh-vpnproviders-sub {
    font-size: 18px;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.rh-vpnproviders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Provider Card */
.rh-vpnproviders-card {
    position: relative;
    border-radius: 24px;
    padding: 40px 36px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .5s ease;
    cursor: pointer;
}

.rh-vpnproviders-card::before,
.rh-vpnproviders-card::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 20%;
    display: block;
    transition: all .5s ease;
    z-index: 1;
    pointer-events: none;
}

.rh-vpnproviders-card::before { top: 0; right: 0; border-radius: 0 24px 0 100%; }
.rh-vpnproviders-card::after  { bottom: 0; left: 0; border-radius: 0 100% 0 24px; }

.rh-vpnproviders-card:hover::before,
.rh-vpnproviders-card:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

/* Nord theme */
.rh-vpnproviders-card--nord {
    background: linear-gradient(135deg, var(--rh-vpnprov-nord-start), var(--rh-vpnprov-nord-end));
    color: #fff;
}

.rh-vpnproviders-card--nord::before,
.rh-vpnproviders-card--nord::after {
    background-color: rgba(70,135,255,.35);
}

.rh-vpnproviders-card--nord:hover {
    box-shadow: 0 20px 60px rgba(70,135,255,.25);
}

/* Surf theme */
.rh-vpnproviders-card--surf {
    background: linear-gradient(135deg, var(--rh-vpnprov-surf-start), var(--rh-vpnprov-surf-end));
    color: #fff;
}

.rh-vpnproviders-card--surf::before,
.rh-vpnproviders-card--surf::after {
    background-color: rgba(23,143,143,.40);
}

.rh-vpnproviders-card--surf:hover {
    box-shadow: 0 20px 60px rgba(23,143,143,.25);
}

/* Card elements */
.rh-vpnproviders-card-bgi {
    position: absolute;
    bottom: -15px;
    right: -10px;
    width: 180px;
    height: 180px;
    pointer-events: none;
    z-index: 0;
    opacity: .07;
    color: rgba(255,255,255,.9);
    transition: opacity .4s, transform .5s;
}

.rh-vpnproviders-card:hover .rh-vpnproviders-card-bgi {
    opacity: .12;
    transform: scale(1.04) translate(2px, -2px);
}

.rh-vpnproviders-card-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    filter: brightness(0) invert(1);
}

.rh-vpnproviders-card-logo-fallback {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
    letter-spacing: -.02em;
}

.rh-vpnproviders-card-name {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
}

.rh-vpnproviders-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,.78);
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    max-width: 400px;
}

.rh-vpnproviders-card-feats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
    z-index: 3;
}

.rh-vpnproviders-card-feat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
}

.rh-vpnproviders-card-price {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: rgba(255,255,255,.55);
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.rh-vpnproviders-card-price strong {
    color: #fff;
    font-size: 16px;
}

.rh-vpnproviders-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    width: fit-content;
    border-radius: 50px;
    border: 2px solid #fff;
    color: #fff;
    z-index: 3;
    position: relative;
}

.rh-vpnproviders-card-btn svg {
    width: 15px;
    height: 15px;
    transition: transform .3s;
}

.rh-vpnproviders-card-btn:hover svg {
    transform: translateX(4px);
}

.rh-vpnproviders-card--nord .rh-vpnproviders-card-btn:hover {
    background: #fff;
    color: #1A1A2E;
}

.rh-vpnproviders-card--surf .rh-vpnproviders-card-btn:hover {
    background: #fff;
    color: #0A2540;
}


/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.rh-vpnpricing {
    --rh-vpnpricing-ac: #0066FF;
    --rh-vpnpricing-ac2: #6C3BF5;
    --rh-vpnpricing-grn: #00C48C;
    --rh-vpnpricing-red: #EF4444;
    --rh-vpnpricing-org: #FF8C42;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--rh-vpn-bg);
}

.rh-vpnpricing-wrap {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
}

.rh-vpnpricing-hdr {
    text-align: center;
    margin-bottom: 50px;
}

.rh-vpnpricing-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--rh-vpn-ink);
    margin-bottom: 14px;
    letter-spacing: -.03em;
}

.rh-vpnpricing-sub {
    font-size: 18px;
    color: var(--rh-vpn-ink2);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.rh-vpnpricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    margin-top: 20px;
    transition: all .4s;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    color: #fff;
}

.rh-vpnpricing-badge--surf {
    background: linear-gradient(135deg, #0A2540, #0E3356);
}

.rh-vpnpricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Pricing cards */
.rh-vpnpricing-card {
    background: var(--rh-vpn-card);
    border: 1px solid var(--rh-vpn-bdr);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--rh-vpn-s1);
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.rh-vpnpricing-card:hover {
    box-shadow: var(--rh-vpn-s3);
    transform: translateY(-4px);
}

.rh-vpnpricing-card--them {
    border-top: 3px solid var(--rh-vpn-bdr);
}

.rh-vpnpricing-card--us {
    border: 2px solid var(--rh-vpnpricing-ac);
    background: linear-gradient(180deg, #EEF0FF 0%, var(--rh-vpn-card) 40%);
}

.rh-vpnpricing-card-top-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--rh-vpnpricing-ac), var(--rh-vpnpricing-ac2));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 0 18px 0 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.rh-vpnpricing-card-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--rh-vpn-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.rh-vpnpricing-card-name {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--rh-vpn-ink);
    margin-bottom: 6px;
}

.rh-vpnpricing-card-tag {
    font-size: 14px;
    color: var(--rh-vpn-ink2);
    margin-bottom: 24px;
    line-height: 1.5;
}

.rh-vpnpricing-card-amt {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.rh-vpnpricing-card-amt-v {
    font-family: 'Space Mono', monospace;
    font-size: 42px;
    font-weight: 700;
}

.rh-vpnpricing-card--them .rh-vpnpricing-card-amt-v {
    color: var(--rh-vpnpricing-red);
    text-decoration: line-through;
}

.rh-vpnpricing-card-amt-v--us {
    background: linear-gradient(135deg, var(--rh-vpnpricing-ac), var(--rh-vpnpricing-ac2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rh-vpnpricing-card-amt-p {
    font-size: 14px;
    color: var(--rh-vpn-muted);
    font-weight: 500;
}

.rh-vpnpricing-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    padding: 0;
}

.rh-vpnpricing-card-li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--rh-vpn-ink2);
}

.rh-vpnpricing-card-li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.rh-vpnpricing-card-list--us .rh-vpnpricing-card-li svg {
    color: var(--rh-vpnpricing-grn);
}

.rh-vpnpricing-card--them .rh-vpnpricing-card-li svg {
    color: var(--rh-vpn-muted);
}

.rh-vpnpricing-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

.rh-vpnpricing-card-cta--them {
    background: var(--rh-vpn-bg);
    color: var(--rh-vpn-muted);
    border: 1.5px solid var(--rh-vpn-bdr);
    cursor: default;
}

.rh-vpnpricing-card-cta--us {
    background: linear-gradient(135deg, var(--rh-vpnpricing-ac), var(--rh-vpnpricing-ac2));
    color: #fff;
    box-shadow: 0 8px 32px rgba(108,59,245,.25);
}

.rh-vpnpricing-card-cta--us:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(108,59,245,.35);
}

/* Deco SVGs */
.rh-vpnpricing-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.rh-vpnpricing-deco--1 {
    top: 30px;
    right: 40px;
    width: 80px;
    opacity: .15;
    color: var(--rh-vpnpricing-org);
}

.rh-vpnpricing-deco--2 {
    bottom: 30px;
    left: 40px;
    width: 200px;
    opacity: .1;
    color: var(--rh-vpnpricing-ac);
}


/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.rh-vpntestimonials {
    --rh-vpntesti-bg: #0F172A;
    --rh-vpntesti-svg-orange: #FF8C42;
    --rh-vpntesti-svg-cyan: #06B6D4;
    position: relative;
    width: 100%;
    background: var(--rh-vpntesti-bg);
    overflow: hidden;
    padding: 100px 0;
}

.rh-vpntestimonials-wrap {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.rh-vpntestimonials-hdr {
    max-width: 600px;
    margin-bottom: 48px;
}

.rh-vpntestimonials-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #F8FAFC;
}

.rh-vpntestimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rh-vpntestimonials-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s;
}

.rh-vpntestimonials-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    transform: translateY(-4px);
}

.rh-vpntestimonials-card-body {
    flex: 1;
    padding: 24px 28px;
}

.rh-vpntestimonials-card-txt {
    font-size: 16px;
    line-height: 1.75;
    color: #1E293B;
    font-style: italic;
}

.rh-vpntestimonials-card-foot {
    padding: 16px 28px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rh-vpntestimonials-card-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.rh-vpntestimonials-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
}

.rh-vpntestimonials-card-role {
    font-size: 12px;
    color: #64748B;
}

/* Stats */
.rh-vpntestimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.rh-vpntestimonials-stat-l {
    font-size: 16px;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 8px;
}

.rh-vpntestimonials-stat-v {
    font-family: 'Space Mono', monospace;
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rh-vpnhero-ac, #0066FF), var(--rh-vpnhero-ac2, #6C3BF5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1.1;
}

.rh-vpntestimonials-stat-d {
    font-size: 14px;
    color: #64748B;
}

/* Decorative */
.rh-vpntestimonials-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}

.rh-vpntestimonials-deco svg {
    width: clamp(200px, 40vw, 500px);
    height: auto;
    opacity: .12;
}


/* ═══════════════════════════════════════
   RESPONSIVE — Laptop (1024–1279px)
   ═══════════════════════════════════════ */
@media (max-width: 1279px) {
    .rh-vpnhero-title { font-size: 56px; }
    .rh-vpnproviders-title { font-size: 42px; }
    .rh-vpnproviders-card-name { font-size: 32px; }
    .rh-vpnpricing-title { font-size: 42px; }
    .rh-vpntestimonials-title { font-size: 42px; }
    .rh-vpntestimonials-stat-v { font-size: 48px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet (768–1023px)
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .rh-vpnhero-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .rh-vpnhero-title { font-size: 46px; }
    .rh-vpnhero-desc { margin-left: auto; margin-right: auto; font-size: 16px; }
    .rh-vpnhero-actions { justify-content: center; }
    .rh-vpnhero-trust { justify-content: center; flex-wrap: wrap; }
    .rh-vpnhero-fl--2 { left: 0; }
    .rh-vpnhero-fl--3 { left: 0; }

    .rh-vpnproviders-title { font-size: 36px; }
    .rh-vpnproviders-sub { font-size: 16px; }
    .rh-vpnproviders-card-name { font-size: 28px; }

    .rh-vpnpricing-title { font-size: 36px; }
    .rh-vpnpricing-sub { font-size: 16px; }

    .rh-vpntestimonials-title { font-size: 36px; }
    .rh-vpntestimonials-stat-v { font-size: 42px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile Large (480–767px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .rh-vpnhero { padding: 100px 0 60px; }
    .rh-vpnhero-wrap { padding: 0 20px; gap: 44px; }
    .rh-vpnhero-title { font-size: 38px; }
    .rh-vpnhero-desc { font-size: 16px; }
    .rh-vpnhero-actions { flex-direction: column; }
    .rh-vpnhero-btn { width: 100%; justify-content: center; }
    .rh-vpnhero-trust { gap: 16px; }
    .rh-vpnhero-trust-item { font-size: 13px; }
    .rh-vpnhero-card { width: 100%; max-width: 360px; }
    .rh-vpnhero-fl { font-size: 12px; padding: 10px 13px; }
    .rh-vpnhero-fl--1 { right: -8px; }
    .rh-vpnhero-fl--2 { left: -8px; }
    .rh-vpnhero-fl--3 { left: -8px; }
    .rh-vpnhero-badge { font-size: 12px; }

    .rh-vpnproviders { padding: 60px 0; }
    .rh-vpnproviders-wrap { padding: 0 20px; }
    .rh-vpnproviders-title { font-size: 30px; }
    .rh-vpnproviders-sub { font-size: 16px; }
    .rh-vpnproviders-grid { grid-template-columns: 1fr; }
    .rh-vpnproviders-card { padding: 28px 24px; min-height: auto; }
    .rh-vpnproviders-card::before,
    .rh-vpnproviders-card::after { display: none; }
    .rh-vpnproviders-card-name { font-size: 24px; }
    .rh-vpnproviders-card-btn { font-size: 15px; }

    .rh-vpnpricing { padding: 60px 0; }
    .rh-vpnpricing-wrap { padding: 0 20px; }
    .rh-vpnpricing-title { font-size: 30px; }
    .rh-vpnpricing-grid { grid-template-columns: 1fr; }
    .rh-vpnpricing-card-amt-v { font-size: 36px; }
    .rh-vpnpricing-card-cta { font-size: 15px; }

    .rh-vpntestimonials { padding: 60px 0; }
    .rh-vpntestimonials-wrap { padding: 0 20px; }
    .rh-vpntestimonials-title { font-size: 30px; }
    .rh-vpntestimonials-grid { grid-template-columns: 1fr; }
    .rh-vpntestimonials-card-txt { font-size: 16px; }
    .rh-vpntestimonials-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 50px; }
    .rh-vpntestimonials-stat-v { font-size: 36px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile Small (below 480px)
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
    .rh-vpnhero-title { font-size: 32px; }
    .rh-vpnhero-desc { font-size: 15px; }
    .rh-vpnhero-fl { display: none; }
    .rh-vpnhero-badge { font-size: 11px; padding: 6px 12px; }
    .rh-vpnhero-card-body { padding: 20px; }
    .rh-vpnhero-pr { padding: 10px 12px; font-size: 13px; }
    .rh-vpnhero-pr--new .rh-vpnhero-pr-v { font-size: 18px; }

    .rh-vpnproviders-title { font-size: 26px; }
    .rh-vpnproviders-card-name { font-size: 22px; }
    .rh-vpnproviders-card-feat { font-size: 11px; padding: 5px 10px; }
    .rh-vpnproviders-card-btn { font-size: 14px; padding: 10px 20px; }

    .rh-vpnpricing-title { font-size: 26px; }
    .rh-vpnpricing-card { padding: 28px 24px; }
    .rh-vpnpricing-card-amt-v { font-size: 32px; }
    .rh-vpnpricing-card-name { font-size: 19px; }

    .rh-vpntestimonials-title { font-size: 26px; }
    .rh-vpntestimonials-stats { grid-template-columns: 1fr; }
    .rh-vpntestimonials-stat-v { font-size: 32px; }
}