:root {
    --ct-blue: #0047bb;
    --ct-bg-gray: #f4f7fa;
    --ct-border: #e2e8f0;
    --ct-text-main: #334155;
}

.cloudvps-page {
    font-family: 'Inter', sans-serif;
    color: var(--ct-text-main);
}

/* SZEKCIÓK */
.cloudvps-page section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.cloudvps-page .container {
    max-width: 1200px;
}

/* HERO */
.cloudvps-page .hero-vps {
    text-align: center;
    border-bottom: 1px solid var(--ct-border);
}

.cloudvps-page .hero-vps h1 {
    font-family: 'Montserrat';
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.cloudvps-page .vps-hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.cloudvps-page .vps-hero-badges span {
    background: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--ct-border);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* GRID – VPS KÁRTYÁK */
.cloudvps-page .grid-vps {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
    justify-content: center;
}

/* Kártya */
.cloudvps-page .card-vps {
    position: relative;
    width: 100%;
    max-width: 210px;
    padding: 16px 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 10px 24px rgba(15,23,42,0.12);
    transition: 0.25s ease;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
}

.cloudvps-page .card-vps:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(15,23,42,0.22);
}

/* Badge-ek */
.cloudvps-page .badge-pop,
.cloudvps-page .badge-rec {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.05em;
}

.cloudvps-page .badge-pop {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

.cloudvps-page .badge-rec {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Cím */
.cloudvps-page .card-vps h3 {
    font-family: 'Montserrat';
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ár */
.cloudvps-page .price-wrap {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--ct-blue);
    margin: 10px 0 6px;
}

.cloudvps-page .price-wrap small {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Ár/érték mutató */
.cloudvps-page .value-score {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 10px;
}

/* Feature lista */
.cloudvps-page .feat-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 16px;
}

.cloudvps-page .feat-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.80rem;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(148,163,184,0.3);
    white-space: nowrap;
}

.cloudvps-page .feat-list li:last-child {
    border-bottom: none;
}

.cloudvps-page .feat-list li i {
    font-size: 0.80rem;
    width: 16px;
    min-width: 16px;
    text-align: center;
    color: var(--ct-blue);
}

/* Gomb */
.cloudvps-page .btn-buy {
    margin-top: auto;
    padding: 8px 12px;
    font-size: 0.80rem;
    font-weight: 700;
    text-align: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(37,99,235,0.45);
    transition: 0.2s ease;
}

.cloudvps-page .btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37,99,235,0.6);
}

/* POPULAR animáció */
.cloudvps-page .card-vps.popular {
    border-color: rgba(56,189,248,0.9);
    box-shadow: 0 20px 50px rgba(8,47,73,0.45);
    animation: popPulse 2.4s ease-in-out infinite;
}

.cloudvps-page .card-vps.recommended {
    border-color: rgba(34,197,94,0.9);
}

@keyframes popPulse {
    0%   { box-shadow: 0 20px 50px rgba(8,47,73,0.45); transform: translateY(0); }
    50%  { box-shadow: 0 26px 60px rgba(8,47,73,0.6);  transform: translateY(-2px); }
    100% { box-shadow: 0 20px 50px rgba(8,47,73,0.45); transform: translateY(0); }
}

/* VALUE SECTION */
.ct-value-section {
    padding: 60px 0;
    background: #f8fafc;
}

.vps-title {
    font-family: 'Montserrat';
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 10px;
}

.vps-sub {
    color: #64748b;
    margin-bottom: 40px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.value-item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.25s;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.value-item i {
    font-size: 32px;
    color: var(--ct-blue);
    margin-bottom: 12px;
}

/* REGIONS */
.ct-regions {
    padding: 60px 0;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 30px;
    font-size: 1.1rem;
}

/* WHY SECTION */
.ct-why {
    padding: 60px 0;
    background: #f4f7fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.why-item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: 0.25s;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.why-item i {
    font-size: 36px;
    color: var(--ct-blue);
    margin-bottom: 12px;
}

/* OS LOGO CLOUD */
.os-logo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.os-logo-cloud div {
    text-align: center;
    width: 90px;
    font-size: 0.8rem;
}

.os-logo-cloud i {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}

.os-logo-cloud span {
    font-size: 12px;
    font-weight: 600;
    color: var(--ct-text-main);
}

/* TESTIMONIALS */
.ct-testimonials {
    padding: 60px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.testi-item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    font-style: italic;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* FAQ */
.cloudvps-page .ct-faq-advanced {
    background: #fff;
}

.cloudvps-page .faq-accordion .card {
    border: none;
    border-bottom: 1px solid var(--ct-border);
    border-radius: 0;
    margin-bottom: 0;
    background: transparent;
}

.cloudvps-page .faq-accordion .card-header {
    background: transparent;
    border: none;
    padding: 14px 0;
}

.cloudvps-page .faq-accordion .btn-link {
    width: 100%;
    text-align: left;
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.cloudvps-page .faq-accordion .btn-link:after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: 0.25s;
}

.cloudvps-page .faq-accordion .btn-link[aria-expanded="true"]:after {
    transform: rotate(180deg);
}

.cloudvps-page .faq-accordion .card-body {
    padding: 0 0 16px 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* GLASSMORPHISM MAP */
.network-map-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.network-map-wrap img.worldmap-base.globe {
    width: 100%;
    opacity: 0.9;
    filter: drop-shadow(0 0 18px rgba(0,71,187,0.25));
}

/* Pontok */
.custom-map-location {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-map-location li {
    position: absolute;
}

.map-pin {
    display: block;
    width: 14px;
    height: 14px;
    background: #0ea5e9;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(14,165,233,0.9);
    animation: pulse 2s infinite ease-in-out;
    cursor: pointer;
    transition: 0.2s;
}

.map-pin:hover {
    transform: scale(1.4);
    background: #22c55e;
    box-shadow: 0 0 18px rgba(34,197,94,0.9);
}

/* Tooltip */
.map-pin::after {
    content: attr(data-label);
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15,23,42,0.85);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    backdrop-filter: blur(6px);
}

.map-pin:hover::after {
    opacity: 1;
}

/* Pulzálás */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(14,165,233,0.7); }
    50% { transform: scale(1.25); box-shadow: 0 0 20px rgba(14,165,233,1); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(14,165,233,0.7); }
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.net-line {
    stroke: #0ea5e9;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.6;
    animation: lineGlow 3s infinite ease-in-out;
}

@keyframes lineGlow {
    0% { stroke: rgba(14,165,233,0.3); }
    50% { stroke: rgba(14,165,233,1); }
    100% { stroke: rgba(14,165,233,0.3); }
}

/* Globális pulzáló háló */
.net-line {
    stroke: #0ea5e9;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.35;
    animation: linePulse 4s infinite ease-in-out;
}

@keyframes linePulse {
    0%   { stroke: rgba(14,165,233,0.2); }
    50%  { stroke: rgba(14,165,233,1); }
    100% { stroke: rgba(14,165,233,0.2); }
}

/* Fényterjedés a vonalon (Cloudflare-stílus) */
.net-line {
    stroke-dasharray: 6 12;
    animation: linePulse 4s infinite ease-in-out, lineTravel 2.5s infinite linear;
}

@keyframes lineTravel {
    0%   { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

.cloudvps-page .price-gross-line {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}