
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #070b14;
    color: #eef3ff;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 183, 255, 0.12), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(122, 92, 255, 0.14), transparent 32%),
        radial-gradient(circle at 50% 80%, rgba(0, 255, 200, 0.08), transparent 28%),
        linear-gradient(180deg, #060912 0%, #0a1020 100%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0.08));
    z-index: -1;
    pointer-events: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(8, 12, 24, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.18), rgba(111, 66, 255, 0.20));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    font-size: 1.2rem;
}

.logo-text {
    color: #ffffff;
}

.nav {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.nav a {
    color: #b7c3df;
    font-size: 0.97rem;
    transition: 0.2s ease;
}

.nav a:hover {
    color: #ffffff;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #0d8dff, #6f42ff);
    box-shadow: 0 12px 30px rgba(44, 103, 255, 0.30);
}

.btn-primary:hover {
    box-shadow: 0 16px 34px rgba(44, 103, 255, 0.38);
}

.btn-secondary {
    color: #d9e4ff;
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
}

.btn-large {
    min-height: 52px;
    padding: 0 24px;
}

.full {
    width: 100%;
}

.hero {
    padding: 80px 0 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #dce8ff;
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.hero-content h1 {
    margin: 0 0 20px;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: -1.5px;
    max-width: 760px;
}

.hero-text {
    margin: 0 0 28px;
    max-width: 700px;
    color: #aeb9d4;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #d7e2ff;
}

.hero-card {
    display: flex;
    justify-content: center;
}

.status-card {
    width: 100%;
    max-width: 420px;
    padding: 26px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(20, 28, 48, 0.95), rgba(10, 16, 30, 0.92));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.status-title {
    font-size: 1rem;
    font-weight: 700;
}

.status-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #86f7bf;
    font-size: 0.92rem;
    font-weight: 700;
}

.status-live::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4dff9c;
    box-shadow: 0 0 12px #4dff9c;
}

.status-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.status-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, #0f1627 58%, transparent 59%),
        conic-gradient(#08b5ff 0deg, #6f42ff 300deg, rgba(255,255,255,0.08) 300deg);
    box-shadow: inset 0 0 25px rgba(0,0,0,0.35);
    flex-shrink: 0;
}

.status-ring span {
    font-size: 1.3rem;
    font-weight: 800;
}

.status-info strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.status-info p {
    margin: 0;
    color: #a8b5d1;
    font-size: 0.95rem;
}

.status-list {
    display: grid;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.status-item span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dfe9ff;
}

.status-item strong {
    color: #90f7bc;
    font-size: 0.95rem;
}

section {
    padding: 42px 0;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(94, 114, 255, 0.12);
    border: 1px solid rgba(255,255,255,0.08);
    color: #bdd0ff;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-head h2,
.network-text h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 3vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-head p,
.network-text p {
    margin: 0;
    color: #aab6d1;
    font-size: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-card,
.faq-item,
.price-card,
.stat-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.feature-card {
    padding: 24px;
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.35rem;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.18), rgba(111, 66, 255, 0.18));
    border: 1px solid rgba(255,255,255,0.08);
}

.feature-card h3,
.faq-item h3,
.price-card h3 {
    margin: 0 0 10px;
    font-size: 1.16rem;
}

.feature-card p,
.faq-item p {
    margin: 0;
    color: #aab6d1;
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stat-box {
    padding: 26px;
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.stat-box span {
    color: #aab6d1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.price-card {
    position: relative;
    padding: 28px;
}

.price-card .price {
    margin: 14px 0 18px;
    font-size: 2rem;
    font-weight: 800;
}

.price-card .price span {
    font-size: 0.95rem;
    color: #9eb0d3;
    font-weight: 500;
    margin-left: 6px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.price-card ul li {
    padding: 10px 0;
    color: #dbe5fb;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.price-card ul li:last-child {
    border-bottom: 0;
}

.price-card.featured {
    border-color: rgba(83, 130, 255, 0.45);
    background: linear-gradient(180deg, rgba(18, 28, 58, 0.92), rgba(11, 17, 35, 0.95));
    box-shadow: 0 25px 60px rgba(39, 88, 255, 0.20);
}

.price-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0d8dff, #6f42ff);
    color: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.faq-item {
    padding: 24px;
}

.footer {
    padding: 28px 0 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 22px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer p {
    margin: 6px 0 0;
    color: #98a8c8;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b7c3df;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 1100px) {
    .hero-grid,
    .network-grid,
    .pricing-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    .topbar-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .nav,
    .top-actions {
        justify-content: center;
    }

    .faq-grid,
    .network-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 26px, 1180px);
    }

    .hero {
        padding-top: 46px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-actions,
    .hero-points {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-large {
        width: 100%;
    }

    .status-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-ring {
        width: 104px;
        height: 104px;
    }
}
.nav a,
.top-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.error-page {
    min-height: 100vh;
}

.error-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.error-card {
    width: 100%;
    max-width: 720px;
    padding: 42px 34px;
    text-align: center;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(20, 28, 48, 0.95), rgba(10, 16, 30, 0.92));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.error-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.18), rgba(111, 66, 255, 0.20));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.error-code {
    font-size: clamp(3.6rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 14px;
    color: #ffffff;
}

.error-card h1 {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: -1px;
}

.error-card p {
    max-width: 560px;
    margin: 0 auto;
    color: #aeb9d4;
    font-size: 1.02rem;
}

.error-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.error-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 640px) {
    .error-card {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }
}
 /*
=========================================================
   Cloak Shield DNS Landingpage
   Datei: /css/index.css
   Seite: /index_cloak_shield_dns.php
========================================================= */

.cloak-shield-page {
    color: #edf4ff;
    background: #050812;
    overflow-x: hidden;
}

.cloak-shield-page .site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 183, 255, 0.18), transparent 32%),
        radial-gradient(circle at 82% 12%, rgba(124, 77, 255, 0.18), transparent 34%),
        radial-gradient(circle at 50% 95%, rgba(0, 255, 178, 0.10), transparent 38%),
        linear-gradient(180deg, #050812 0%, #07101f 48%, #050812 100%);
}

.cloak-shield-page .container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.cloak-shield-page .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(5, 8, 18, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cloak-shield-page .topbar-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.cloak-shield-page .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.cloak-shield-page .logo-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #75dcff;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 35%),
        linear-gradient(135deg, rgba(0, 183, 255, 0.24), rgba(124, 77, 255, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 14px 34px rgba(0, 183, 255, 0.16);
}

.cloak-shield-page .logo-text {
    font-size: 22px;
}

.cloak-shield-page .logo-text span {
    color: #75dcff;
}

.cloak-shield-page .topnav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cloak-shield-page .topnav a {
    color: rgba(237, 244, 255, 0.74);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 13px;
    border-radius: 999px;
    transition: 0.18s ease;
}

.cloak-shield-page .topnav a:hover,
.cloak-shield-page .topnav a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.shield-hero {
    padding: 88px 0 76px;
}

.shield-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: 60px;
}

.shield-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #bfeeff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(0, 183, 255, 0.10);
    border: 1px solid rgba(117, 220, 255, 0.23);
    box-shadow: 0 16px 42px rgba(0, 183, 255, 0.08);
}

.shield-hero h1 {
    margin: 26px 0 22px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.07em;
    color: #ffffff;
}

.shield-hero h1 span {
    color: #75dcff;
    text-shadow: 0 0 42px rgba(117, 220, 255, 0.38);
}

.shield-lead {
    max-width: 700px;
    color: rgba(237, 244, 255, 0.76);
    font-size: 19px;
    line-height: 1.75;
    margin: 0;
}

.shield-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.cloak-shield-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: 0.18s ease;
}

.cloak-shield-page .btn-primary {
    color: #04101b;
    background: linear-gradient(135deg, #75dcff, #8ef7d2);
    box-shadow: 0 18px 42px rgba(0, 183, 255, 0.22);
}

.cloak-shield-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 54px rgba(0, 183, 255, 0.28);
}

.cloak-shield-page .btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.cloak-shield-page .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-2px);
}

.shield-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 760px;
    margin-top: 28px;
    color: rgba(237, 244, 255, 0.70);
    font-size: 14px;
    line-height: 1.6;
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255, 193, 7, 0.07);
    border: 1px solid rgba(255, 193, 7, 0.18);
}

.shield-note i {
    color: #ffd36a;
    margin-top: 3px;
}

.shield-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}

.dns-card {
    position: relative;
    width: min(390px, 100%);
    padding: 24px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 16%, rgba(117, 220, 255, 0.18), transparent 34%),
        radial-gradient(circle at 88% 85%, rgba(142, 247, 210, 0.12), transparent 36%),
        rgba(9, 16, 32, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.main-dns-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(117, 220, 255, 0.48), rgba(124, 77, 255, 0.18), rgba(142, 247, 210, 0.34));
    filter: blur(22px);
    opacity: 0.44;
}

.dns-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(237, 244, 255, 0.78);
    font-size: 14px;
    font-weight: 800;
}

.dns-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8ef7d2;
    box-shadow: 0 0 20px rgba(142, 247, 210, 0.75);
}

.dns-protection-circle {
    width: 170px;
    height: 170px;
    display: grid;
    place-items: center;
    margin: 34px auto;
    border-radius: 50%;
    color: #75dcff;
    font-size: 74px;
    background:
        radial-gradient(circle, rgba(117, 220, 255, 0.22), rgba(117, 220, 255, 0.05) 58%, transparent 61%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(117, 220, 255, 0.25);
    box-shadow: inset 0 0 36px rgba(117, 220, 255, 0.10);
}

.dns-stat-list {
    display: grid;
    gap: 12px;
}

.dns-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.dns-stat span {
    color: rgba(237, 244, 255, 0.66);
    font-size: 14px;
}

.dns-stat strong {
    color: #8ef7d2;
    font-size: 14px;
}

.floating-dns-box {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border-radius: 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    background: rgba(8, 15, 31, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}

.floating-dns-box i {
    color: #75dcff;
}

.dns-box-one {
    left: 0;
    top: 82px;
}

.dns-box-two {
    right: 0;
    bottom: 84px;
}

.shield-section {
    padding: 82px 0;
}

.shield-section-dark {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #75dcff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-heading h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -0.045em;
}

.section-heading p {
    margin: 0;
    color: rgba(237, 244, 255, 0.70);
    font-size: 17px;
    line-height: 1.75;
}

.shield-steps,
.shield-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.shield-step,
.shield-feature,
.compare-card,
.faq-item {
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.shield-step {
    padding: 28px;
}

.step-icon,
.shield-feature > i,
.compare-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 18px;
    color: #75dcff;
    font-size: 23px;
    background: rgba(117, 220, 255, 0.10);
    border: 1px solid rgba(117, 220, 255, 0.19);
}

.shield-step h3,
.shield-feature h3,
.compare-card h3,
.faq-item h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: -0.025em;
}

.shield-step p,
.shield-feature p,
.compare-card p,
.faq-item p {
    margin: 0;
    color: rgba(237, 244, 255, 0.68);
    line-height: 1.7;
}

.shield-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shield-feature {
    padding: 26px;
}

.shield-feature > i {
    margin-bottom: 18px;
}

.shield-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.compare-card {
    padding: 32px;
}

.compare-card.highlighted {
    background:
        radial-gradient(circle at 80% 10%, rgba(117, 220, 255, 0.16), transparent 35%),
        linear-gradient(180deg, rgba(117, 220, 255, 0.10), rgba(255, 255, 255, 0.035));
    border-color: rgba(117, 220, 255, 0.25);
}

.compare-icon.vpn {
    color: #bda8ff;
    background: rgba(124, 77, 255, 0.11);
    border-color: rgba(124, 77, 255, 0.24);
}

.compare-icon.dns {
    color: #8ef7d2;
    background: rgba(142, 247, 210, 0.10);
    border-color: rgba(142, 247, 210, 0.22);
}

.compare-card ul {
    display: grid;
    gap: 11px;
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.compare-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(237, 244, 255, 0.76);
    line-height: 1.55;
}

.compare-card li i {
    color: #8ef7d2;
}

.shield-faq {
    display: grid;
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 11px;
}

.faq-item h3 i {
    color: #75dcff;
}

.shield-cta {
    padding: 84px 0;
}

.shield-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 10% 20%, rgba(117, 220, 255, 0.20), transparent 32%),
        radial-gradient(circle at 92% 80%, rgba(142, 247, 210, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(9, 16, 32, 0.95), rgba(7, 14, 28, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.shield-cta-box span {
    display: inline-block;
    margin-bottom: 10px;
    color: #75dcff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.shield-cta-box h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 42px);
    letter-spacing: -0.045em;
}

.shield-cta-box p {
    margin: 0;
    color: rgba(237, 244, 255, 0.68);
    line-height: 1.7;
}

.shield-footer {
    padding: 26px 0;
    color: rgba(237, 244, 255, 0.52);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(5, 8, 18, 0.78);
}

.shield-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
    .shield-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .shield-visual {
        min-height: 430px;
    }

    .shield-steps,
    .shield-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .shield-compare {
        grid-template-columns: 1fr;
    }

    .shield-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .cloak-shield-page .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .cloak-shield-page .topnav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .shield-hero {
        padding: 58px 0 52px;
    }

    .shield-actions {
        flex-direction: column;
    }

    .cloak-shield-page .btn {
        width: 100%;
    }

    .shield-steps,
    .shield-feature-grid {
        grid-template-columns: 1fr;
    }

    .shield-visual {
        min-height: auto;
        padding-top: 20px;
    }

    .floating-dns-box {
        position: static;
        width: fit-content;
        margin: 12px auto 0;
    }

    .dns-card {
        width: 100%;
    }

    .shield-section {
        padding: 58px 0;
    }

    .shield-cta {
        padding: 58px 0;
    }

    .shield-cta-box {
        padding: 24px;
        border-radius: 24px;
    }

    .shield-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .cloak-shield-page .container {
        width: min(100% - 24px, 1180px);
    }

    .shield-hero h1 {
        font-size: 40px;
    }

    .shield-lead {
        font-size: 16px;
    }

    .dns-protection-circle {
        width: 140px;
        height: 140px;
        font-size: 58px;
    }
}
/* =========================================================
   Fix: Cloak Shield DNS Schrift + Floating Boxen
========================================================= */

.cloak-shield-page,
.cloak-shield-page * {
    box-sizing: border-box;
}

.cloak-shield-page {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.cloak-shield-page h1,
.cloak-shield-page h2,
.cloak-shield-page h3,
.cloak-shield-page p,
.cloak-shield-page a,
.cloak-shield-page span,
.cloak-shield-page button {
    font-family: inherit;
}

/* Hero-Schrift sauber halten */
.cloak-shield-page .shield-hero h1 {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 900;
}

/* Logo darf auch sauber bleiben */
.cloak-shield-page .logo,
.cloak-shield-page .logo-text {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Floating-Boxen nicht mehr so weit ausbrechen lassen */
.cloak-shield-page .shield-visual {
    position: relative;
    overflow: visible;
}

/* =========================================================
   Fix: Floating DNS Badges sauber als kleine Boxen
========================================================= */

.cloak-shield-page .floating-dns-box {
    position: absolute;
    z-index: 10;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;

    padding: 13px 15px;
    border-radius: 18px;

    white-space: nowrap;
    line-height: 1;
}

/* Linke Badge */
.cloak-shield-page .dns-box-one {
    left: -18px;
    top: 96px;
    right: auto;
    bottom: auto;
}

/* Rechte Badge */
.cloak-shield-page .dns-box-two {
    right: -18px;
    top: 96px;
    left: auto;
    bottom: auto;
}

/* Tablet / kleinere Desktopbreite: etwas weiter rein */
@media (max-width: 1100px) {
    .cloak-shield-page .dns-box-one {
        left: 18px;
        top: 102px;
        right: auto;
        bottom: auto;
    }

    .cloak-shield-page .dns-box-two {
        right: 18px;
        top: 102px;
        left: auto;
        bottom: auto;
    }
}

/* Mobile: unter die Karte setzen */
@media (max-width: 720px) {
    .cloak-shield-page .floating-dns-box {
        position: static;
        width: fit-content !important;
        max-width: 100% !important;
        margin: 12px auto 0;
    }
}

.cloak-shield-page .topnav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
