* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #020814;
    --bg-soft: #061126;
    --bg-soft-2: #081633;
    --panel: #2f4260;
    --panel-2: #334966;
    --card: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --muted: #a8b7cf;
    --primary: #18c7ff;
    --secondary: #4da3ff;
    --accent: #ff8a1f;
    --accent-2: #ffc52f;
    --success: #19c964;
    --danger: #ff5d4d;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
    --radius: 22px;
    --container: 1240px;
    --gradient-main: linear-gradient(135deg, #19c2ff 0%, #5f8dff 100%);
    --gradient-accent: linear-gradient(135deg, #ff8a1f 0%, #ffc52f 100%);
    --gradient-bg: linear-gradient(180deg, #020814 0%, #061126 45%, #081633 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comfortaa', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(24, 199, 255, 0.06), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 138, 31, 0.05), transparent 22%),
        linear-gradient(180deg, #020814 0%, #061126 45%, #081633 100%);
    color: var(--text);
    line-height: 1.75;
}

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

img {
    max-width: 100%;
    display: block;
}

main {
    min-height: 60vh;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 14px;
    backdrop-filter: blur(16px);
    background: rgba(2, 8, 20, 0.55);
}

.header-shell {
    position: relative;
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    padding: 14px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    color: #06203b;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(24, 199, 255, 0.25);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-wrap strong {
    font-size: 18px;
    line-height: 1.1;
}

.logo-text-wrap small {
    font-size: 11px;
    color: #bfe8ff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #dce8f8;
    transition: 0.28s ease;
    position: relative;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transform: translateZ(0) scale(1);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px) scale(1.03);
}

.nav-icon {
    width: 22px;
    height: 22px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.10);
    color: #f6fbff;
}

.nav-link.active .nav-icon {
    background: var(--gradient-main);
    color: #06203b;
}

.nav-btn {
    background: var(--gradient-accent);
    color: #3f2500 !important;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(255, 138, 31, 0.22);
}

.nav-btn .nav-icon {
    background: rgba(63, 37, 0, 0.12);
    color: #3f2500;
}

.nav-btn-static:hover {
    background: var(--gradient-accent);
    color: #3f2500 !important;
    border-color: transparent;
    transform: none;
}

.nav-btn-static:hover .nav-icon {
    background: rgba(63, 37, 0, 0.12);
    color: #3f2500;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: 0.25s ease;
}

.menu-toggle span:nth-child(1) {
    top: 15px;
}

.menu-toggle span:nth-child(2) {
    top: 23px;
}

.menu-toggle span:nth-child(3) {
    top: 31px;
}

/* Sections */
.section {
    padding: 86px 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.015);
}

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

.section-head-wide {
    max-width: 1180px;
}

.section-head h2 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 14px;
    font-weight: 700;
}

.section-head h2 .gradient-text {
    background: linear-gradient(135deg, #19c2ff 0%, #51d8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head h2 .accent-text {
    background: linear-gradient(135deg, #ffb320 0%, #ffd458 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head p {
    color: var(--muted);
    font-size: 18px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
    background: rgba(24, 199, 255, 0.08);
    border: 1px solid rgba(24, 199, 255, 0.18);
    color: #63d9ff;
    font-size: 14px;
    font-weight: 600;
}

.section-badge.orange {
    background: rgba(255, 197, 47, 0.08);
    border-color: rgba(255, 197, 47, 0.2);
    color: #ffc94d;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    font-weight: 700;
    transition: 0.28s ease;
    border: none;
    cursor: pointer;
    transform: scale(1);
}

.btn:hover {
    transform: translateY(-3px) scale(1.04);
}

.btn-primary {
    background: var(--gradient-main);
    color: #06203b;
    box-shadow: 0 10px 24px rgba(24, 199, 255, 0.22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn-accent {
    background: var(--gradient-accent);
    color: #3f2500;
    box-shadow: 0 10px 24px rgba(255, 138, 31, 0.24);
}

.btn-small {
    min-height: 44px;
    padding: 0 18px;
    background: transparent;
    color: var(--accent);
    margin-top: 18px;
    justify-content: flex-start;
    box-shadow: none;
}

/* Common blocks */
.card,
.blog-card,
.feature-box,
.content-box,
.faq-item,
.step,
.showcase-panel,
.reason-card,
.category-card,
.device-panel,
.device-item,
.iptv-modern-box,
.iptv-modern-side {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.card,
.blog-card,
.feature-box,
.content-box,
.faq-item,
.step,
.showcase-panel,
.reason-card,
.iptv-modern-box,
.iptv-modern-side {
    padding: 24px;
}

.card:hover,
.blog-card:hover,
.feature-box:hover,
.step:hover,
.reason-card:hover,
.category-card:hover,
.device-item:hover {
    transform: translateY(-4px) scale(1.02);
}

.cards,
.blog-grid,
.features-grid,
.steps,
.reasons-grid,
.category-grid,
.device-grid {
    display: grid;
    gap: 22px;
}

.cards,
.blog-grid,
.features-grid,
.reasons-grid {
    grid-template-columns: repeat(3, 1fr);
}

.steps.steps-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card-tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
}

.badge-standard {
    background: rgba(255, 255, 255, 0.08);
    color: #d8dfeb;
}

.badge-premium {
    background: linear-gradient(135deg, rgba(24, 199, 255, 0.2), rgba(77, 163, 255, 0.16));
    color: #b9ebff;
}

.badge-elite {
    background: linear-gradient(135deg, rgba(255, 138, 31, 0.22), rgba(255, 197, 47, 0.20));
    color: #fff1bf;
}

/* Hero */
.hero {
    padding: 100px 0 78px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 46px;
}

.badge {
    display: inline-block;
    width: fit-content;
    align-self: flex-start;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(24, 199, 255, 0.08);
    color: #66ddff;
    margin-bottom: 20px;
    border: 1px solid rgba(24, 199, 255, 0.18);
}

.hero h1 {
    font-size: 58px;
    line-height: 1.06;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 26px;
}

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

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-features span,
.package-tags span,
.article-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #d7e5f8;
    font-size: 13px;
}

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

.hero-monitor {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.monitor-shell {
    position: relative;
    padding: 32px 28px 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, #2b3e5c 0%, #314667 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow);
}

.monitor-screen {
    position: relative;
    min-height: 290px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #15243a;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 69, 0.18), transparent 22%),
        radial-gradient(circle at bottom right, rgba(24, 199, 255, 0.16), transparent 30%),
        linear-gradient(135deg, #3f3437 0%, #234558 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-label,
.quality-label,
.active-badge,
.safe-badge {
    position: absolute;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.live-label {
    top: 16px;
    left: 16px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d84f49;
    display: inline-block;
}

.quality-label {
    top: 16px;
    right: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.monitor-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.play-wrap {
    width: 98px;
    height: 98px;
    border-radius: 50%;
    margin: 0 0 16px 0;
    background: rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulsePlay 3s infinite ease-in-out;
}

.play-shape {
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 24px solid #2e3138;
}

.monitor-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    text-align: center;
}

.active-badge {
    top: -36px;
    right: -18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #19c964 0%, #17b65c 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(25, 201, 100, 0.26);
    animation: floatingBadge 3.2s ease-in-out infinite;
}

.monitor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 22px;
}

.monitor-stat {
    text-align: center;
    padding: 16px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.monitor-stat strong {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

.monitor-stat:nth-child(1) strong {
    color: #ff8a1f;
}

.monitor-stat:nth-child(2) strong {
    color: #18c7ff;
}

.monitor-stat:nth-child(3) strong {
    color: #ffc52f;
}

.monitor-stat span {
    color: var(--muted);
    font-size: 14px;
}

.safe-badge {
    left: -16px;
    bottom: -14px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #283754;
    color: #fff;
    border: 1px solid rgba(255, 138, 31, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
    animation: floatingBadge 3.8s ease-in-out infinite;
}

/* IPTV Modern */
.iptv-modern-layout {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 22px;
    align-items: stretch;
}

.iptv-modern-box {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(24, 199, 255, 0.10), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.iptv-modern-box::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(24, 199, 255, 0.08);
    filter: blur(8px);
}

.iptv-modern-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.iptv-modern-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--gradient-main);
    color: #06203b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(24, 199, 255, 0.20);
}

.iptv-modern-title-wrap h3 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 4px;
}

.iptv-modern-title-wrap span {
    color: #7fdfff;
    font-size: 14px;
    font-weight: 600;
}

.iptv-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.iptv-modern-mini {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.iptv-modern-mini strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

.iptv-modern-side {
    padding: 30px;
}

.iptv-side-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.iptv-side-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.iptv-side-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--gradient-accent);
    color: #3f2500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Feature boxes */
.feature-box {
    padding: 32px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
}

.feature-icon.orange { color: #ff8a1f; background: rgba(255, 138, 31, 0.10); }
.feature-icon.blue { color: #1fd0ff; background: rgba(24, 199, 255, 0.10); }
.feature-icon.yellow { color: #ffc52f; background: rgba(255, 197, 47, 0.10); }
.feature-icon.green { color: #18c964; background: rgba(24, 201, 100, 0.10); }
.feature-icon.purple { color: #b87cff; background: rgba(184, 124, 255, 0.10); }
.feature-icon.red { color: #ff6b6b; background: rgba(255, 107, 107, 0.10); }

.feature-box h3,
.card h3,
.card h2,
.blog-card h3,
.blog-card h2,
.reason-card h3,
.step h3,
.category-card h3 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.feature-box p,
.card p,
.blog-card p,
.reason-card p,
.content-box p,
.faq-item p,
.page-hero p,
.package-description,
.steps-intro,
.device-panel p,
.iptv-modern-box p,
.iptv-modern-side p {
    color: var(--muted);
}

/* Pricing */
.pricing-switch {
    max-width: 430px;
    margin: 0 auto 34px;
    padding: 8px;
    border-radius: 20px;
    background: #30425d;
    display: flex;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.pricing-tab {
    flex: 1;
    min-height: 58px;
    border: none;
    border-radius: 16px;
    background: transparent;
    color: #c7d4e7;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.pricing-tab.active {
    background: linear-gradient(135deg, #ff7b17 0%, #ff640a 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 123, 23, 0.24);
}

.pricing-panels {
    position: relative;
}

.pricing-panel {
    display: none;
}

.pricing-panel.active {
    display: block;
}

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

.pricing-card {
    position: relative;
    padding: 30px;
    border-radius: 24px;
    min-height: 100%;
    background: #33445f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    transition: 0.28s ease;
}

.pricing-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.pricing-card-standart {
    background: linear-gradient(180deg, #33445f 0%, #2f4059 100%);
}

.pricing-card-premium {
    background: linear-gradient(180deg, #33445f 0%, #31445c 100%);
    border-color: rgba(255, 123, 23, 0.55);
}

.pricing-card-elite-ai {
    background: linear-gradient(180deg, #33445f 0%, #2f4257 100%);
    border-color: rgba(255, 197, 47, 0.65);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-badge-hot {
    background: linear-gradient(135deg, #ff6d3c 0%, #ff4c3a 100%);
    color: #fff;
}

.pricing-badge-vip {
    background: linear-gradient(135deg, #ffd22f 0%, #f7bd14 100%);
    color: #2b2100;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: #aebdd1;
    margin-bottom: 18px;
    font-size: 14px;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 26px;
}

.pricing-price strong {
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
}

.pricing-card-standart .pricing-price strong,
.pricing-card-premium .pricing-price strong {
    color: #ffffff;
}

.pricing-card-elite-ai .pricing-price strong {
    color: #ffc52f;
}

.pricing-price span {
    color: #aebdd1;
    font-size: 14px;
    margin-bottom: 5px;
}

.pricing-feature-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.pricing-feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pricing-check {
    min-width: 18px;
    color: #18c964;
    font-size: 14px;
    margin-top: 3px;
}

.pricing-feature-list strong {
    display: block;
    color: #f3f7fc;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 3px;
}

.pricing-feature-list small {
    display: block;
    color: #9fb0c9;
    font-size: 12px;
    line-height: 1.4;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    width: 100%;
    border-radius: 16px;
    font-weight: 700;
    transition: 0.28s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.pricing-btn-standart {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.pricing-btn-premium {
    background: linear-gradient(135deg, #ff8a1f 0%, #ff640a 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 123, 23, 0.24);
}

.pricing-btn-elite-ai {
    background: linear-gradient(135deg, #ffc52f 0%, #f5b612 100%);
    color: #2b2100;
    box-shadow: 0 12px 24px rgba(255, 197, 47, 0.24);
}

.pricing-bottom-actions {
    margin-top: 28px;
}

/* Compact package pricing */
.pricing-feature-list-compact {
    gap: 12px;
    margin-bottom: 22px;
}

.pricing-feature-list-compact li {
    align-items: center;
}

.pricing-feature-list-compact strong {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.35;
}

.pricing-feature-list-compact small {
    display: none;
}

.package-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.package-pricing-grid .pricing-card {
    min-height: auto;
    padding: 26px;
}

.package-pricing-grid .pricing-card h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.package-pricing-grid .pricing-subtitle {
    min-height: auto;
    margin-bottom: 16px;
}

.package-pricing-grid .pricing-price {
    margin-bottom: 20px;
}

.package-pricing-grid .pricing-price strong {
    font-size: 34px;
}

/* Package difference */
.package-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 8px;
}

.package-diff-card {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.package-diff-card::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.18;
}

.package-diff-standard {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.package-diff-standard::before {
    background: #ffffff;
}

.package-diff-premium {
    background: linear-gradient(180deg, rgba(24, 199, 255, 0.10), rgba(77, 163, 255, 0.05));
    border-color: rgba(24, 199, 255, 0.18);
}

.package-diff-premium::before {
    background: #18c7ff;
}

.package-diff-elite {
    background: linear-gradient(180deg, rgba(255, 138, 31, 0.12), rgba(255, 197, 47, 0.06));
    border-color: rgba(255, 197, 47, 0.24);
}

.package-diff-elite::before {
    background: #ffc52f;
}

.package-diff-badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.package-diff-badge-standard {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.package-diff-badge-premium {
    background: linear-gradient(135deg, rgba(24, 199, 255, 0.30), rgba(77, 163, 255, 0.22));
    color: #dff6ff;
}

.package-diff-badge-elite {
    background: linear-gradient(135deg, rgba(255, 138, 31, 0.30), rgba(255, 197, 47, 0.22));
    color: #fff2bf;
}

.package-diff-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.package-diff-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.package-diff-short {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
}

.package-diff-short-standard {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.package-diff-short-premium {
    background: rgba(24, 199, 255, 0.16);
    color: #dff7ff;
}

.package-diff-short-elite {
    background: rgba(255, 197, 47, 0.18);
    color: #fff0b0;
}

.elite-why-box {
    margin-top: 28px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 138, 31, 0.08), rgba(24, 199, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.elite-why-head {
    margin-bottom: 22px;
}

.elite-why-head h3 {
    font-size: 28px;
}

.elite-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.elite-why-item {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e8f2ff;
}

/* Package groups */
.package-group-head {
    margin: 0 0 20px;
    padding: 22px 24px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.package-group-head + .pricing-grid {
    margin-bottom: 10px;
}

.package-group-head.package-group-premium,
.package-group-head.package-group-elite {
    margin-top: 34px;
}

.package-group-head h2 {
    font-size: 30px;
    margin-bottom: 6px;
}

.package-group-head p {
    color: var(--muted);
}

.package-group-standart {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.package-group-premium {
    background: linear-gradient(180deg, rgba(24,199,255,0.10), rgba(77,163,255,0.05));
    border-color: rgba(24,199,255,0.18);
}

.package-group-elite {
    background: linear-gradient(180deg, rgba(255,138,31,0.12), rgba(255,197,47,0.06));
    border-color: rgba(255,197,47,0.22);
}

/* Categories */
.category-grid {
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 28px;
}

.category-card {
    padding: 26px 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.category-icon {
    font-size: 38px;
    margin-bottom: 14px;
}

.category-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.category-card p {
    color: var(--muted);
    font-size: 14px;
}

/* Devices */
.device-panel {
    padding: 42px 28px;
    background: rgba(255, 255, 255, 0.05);
}

.device-panel-head {
    text-align: center;
    margin-bottom: 32px;
}

.device-panel-head h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.device-grid {
    grid-template-columns: repeat(6, 1fr);
}

.device-item {
    padding: 22px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.device-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #c9d7ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.device-item span {
    color: #d7e5f8;
    font-size: 14px;
    font-weight: 500;
}

/* Blog */
.blog-card {
    position: relative;
    overflow: hidden;
    transition: 0.28s ease;
    padding: 0;
}

.blog-card:hover {
    border-color: rgba(24, 199, 255, 0.18);
}

.blog-thumb {
    position: relative;
    height: 214px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.28)),
        radial-gradient(circle at center, rgba(24, 199, 255, 0.10), transparent 28%),
        linear-gradient(135deg, #3b2a1e, #1a223b);
}

.blog-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 138, 31, 0.22), transparent 20%),
        radial-gradient(circle at 80% 20%, rgba(24, 199, 255, 0.18), transparent 18%),
        radial-gradient(circle at 60% 60%, rgba(255, 197, 47, 0.16), transparent 16%);
    opacity: 0.9;
}

.blog-thumb-overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

.blog-brand {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.blog-brand .blue {
    color: #1896ff;
}

.blog-brand .cyan {
    color: #35d5ff;
}

.blog-thumb-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.blog-body {
    padding: 22px 24px 24px;
}

.blog-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 14px;
}

.blog-pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 138, 31, 0.14);
    color: #ff9b3a;
    font-size: 12px;
    font-weight: 700;
}

.blog-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.blog-card p {
    color: var(--muted);
}

.blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff8a1f;
    font-weight: 700;
    margin-top: 20px;
}

.blog-center-btn {
    margin-top: 38px;
    text-align: center;
}

/* FAQ & content */
.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    padding: 22px 24px;
}

.content-box h2 {
    margin: 22px 0 10px;
}

.content-box ul {
    margin-top: 16px;
    padding-left: 20px;
}

.content-box li {
    margin-bottom: 10px;
    color: var(--muted);
}

/* Steps */
.step {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    color: #06203b;
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 12px 26px rgba(24, 199, 255, 0.18);
}

/* CTA Test box */
.cta-test-section {
    padding-top: 18px;
    padding-bottom: 70px;
}

.cta-test-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.cta-test-box-highlight {
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.14), transparent 28%),
        linear-gradient(135deg, #132543 0%, #1b2f53 50%, #2a3552 100%);
    border: 1px solid rgba(24,199,255,0.12);
}

.cta-test-content {
    max-width: 760px;
}

.cta-test-content h2 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #ffffff;
}

.cta-test-content p {
    color: #c5d4e8;
    font-size: 17px;
}

.cta-test-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
}

/* Utility */
.center-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Page hero */
.page-hero {
    padding: 90px 0 38px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 14px;
}

/* Disclaimer */
.disclaimer-box {
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 138, 31, 0.08);
    border: 1px solid rgba(255, 138, 31, 0.18);
}

/* Footer */
.site-footer {
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 14px;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 10px;
    color: var(--muted);
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    text-align: center;
}

/* Animations */
@keyframes pulsePlay {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes floatingBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .device-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .cards,
    .blog-grid,
    .features-grid,
    .steps.steps-4,
    .reasons-grid,
    .iptv-modern-layout,
    .footer-grid,
    .pricing-grid,
    .package-diff-grid,
    .elite-why-grid,
    .package-pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        width: min(340px, 100%);
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px;
        border-radius: 18px;
        background: rgba(4, 14, 34, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow);
    }

    .nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid,
    .cards,
    .blog-grid,
    .features-grid,
    .steps.steps-4,
    .reasons-grid,
    .category-grid,
    .device-grid,
    .iptv-modern-layout,
    .footer-grid,
    .iptv-modern-grid,
    .pricing-grid,
    .package-diff-grid,
    .elite-why-grid,
    .package-pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .section-head h2,
    .page-hero h1 {
        font-size: 34px;
    }

    .monitor-stats {
        grid-template-columns: 1fr;
    }

    .active-badge {
        top: -20px;
        right: 8px;
    }

    .safe-badge {
        position: static;
        display: inline-flex;
        margin-top: 16px;
    }

    .monitor-center {
        max-width: 180px;
    }

    .monitor-title {
        font-size: 24px;
    }

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

    .cta-test-actions {
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
    }

    .cta-test-section {
        padding-bottom: 50px;
    }

    .package-group-head.package-group-premium,
    .package-group-head.package-group-elite {
        margin-top: 26px;
    }
}
/* About page premium */
.about-hero-premium {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    padding: 36px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.18), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.16), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.about-hero-premium::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(24,199,255,0.08);
    filter: blur(10px);
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-content h1 {
    font-size: 56px;
    line-height: 1.06;
    margin-bottom: 16px;
}

.about-hero-content p {
    color: var(--muted);
    font-size: 18px;
    max-width: 900px;
}

.about-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about-hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e9f3ff;
    font-size: 13px;
    font-weight: 700;
}

.about-hero-side {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    align-content: center;
}

.about-floating-card {
    padding: 22px 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.about-floating-card-main {
    background: linear-gradient(135deg, rgba(24,199,255,0.14), rgba(77,163,255,0.08));
    border-color: rgba(24,199,255,0.18);
}

.about-floating-card strong {
    display: block;
    font-size: 34px;
    margin-bottom: 6px;
    color: #ffffff;
}

.about-floating-card span {
    color: var(--muted);
    font-size: 14px;
}

.about-glass-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    align-items: stretch;
}

.about-glass-story,
.about-glass-stats,
.about-lux-card,
.about-metric-band {
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.about-glass-story,
.about-lux-card,
.about-metric-band {
    padding: 32px;
}

.about-glass-story {
    background:
        radial-gradient(circle at top right, rgba(24,199,255,0.12), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.about-glass-story h2,
.about-lux-card h2 {
    font-size: 36px;
    line-height: 1.12;
    margin-bottom: 14px;
}

.about-glass-story p,
.about-lux-card p {
    color: var(--muted);
    margin-bottom: 14px;
}

.about-story-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.about-story-step {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.about-story-step span {
    display: block;
    color: #79dcff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-story-step strong {
    font-size: 15px;
    color: #fff;
}

.about-glass-stats {
    padding: 22px;
    display: grid;
    gap: 16px;
    background:
        radial-gradient(circle at bottom left, rgba(255,138,31,0.12), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.about-premium-stat {
    padding: 22px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.about-premium-stat small {
    display: block;
    color: #7fdfff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-premium-stat strong {
    display: block;
    font-size: 30px;
    margin-bottom: 6px;
    color: #ffffff;
}

.about-premium-stat span {
    color: var(--muted);
    font-size: 14px;
}

.about-premium-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-premium-feature {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about-premium-feature::before {
    content: "";
    position: absolute;
    right: -36px;
    top: -36px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.18;
}

.about-premium-feature-blue {
    background: linear-gradient(180deg, rgba(24,199,255,0.10), rgba(255,255,255,0.03));
}

.about-premium-feature-blue::before {
    background: #18c7ff;
}

.about-premium-feature-orange {
    background: linear-gradient(180deg, rgba(255,138,31,0.12), rgba(255,255,255,0.03));
}

.about-premium-feature-orange::before {
    background: #ff8a1f;
}

.about-premium-feature-cyan {
    background: linear-gradient(180deg, rgba(77,163,255,0.12), rgba(255,255,255,0.03));
}

.about-premium-feature-cyan::before {
    background: #4da3ff;
}

.about-premium-feature-yellow {
    background: linear-gradient(180deg, rgba(255,197,47,0.12), rgba(255,255,255,0.03));
}

.about-premium-feature-yellow::before {
    background: #ffc52f;
}

.about-premium-feature-purple {
    background: linear-gradient(180deg, rgba(184,124,255,0.12), rgba(255,255,255,0.03));
}

.about-premium-feature-purple::before {
    background: #b87cff;
}

.about-premium-feature-red {
    background: linear-gradient(180deg, rgba(255,93,77,0.12), rgba(255,255,255,0.03));
}

.about-premium-feature-red::before {
    background: #ff5d4d;
}

.about-premium-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.about-premium-feature h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.about-premium-feature p {
    color: var(--muted);
}

.about-dual-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-lux-card {
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.10), transparent 20%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.about-lux-card-accent {
    background:
        radial-gradient(circle at bottom right, rgba(255,138,31,0.12), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.about-lux-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.about-lux-list li {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e4eefb;
}

.about-metric-band {
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.10), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.10), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.about-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.about-metric-item {
    padding: 24px 18px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.about-metric-item strong {
    display: block;
    font-size: 34px;
    margin-bottom: 8px;
    color: #ffffff;
}

.about-metric-item span {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .about-hero-premium,
    .about-glass-grid,
    .about-premium-features,
    .about-dual-premium,
    .about-metric-grid,
    .about-story-line {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .about-hero-content h1 {
        font-size: 40px;
    }

    .about-glass-story h2,
    .about-lux-card h2 {
        font-size: 28px;
    }
}
/* Blog page modern */
.blog-hero-box {
    padding: 34px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.10), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.blog-hero-box h1 {
    font-size: 54px;
    line-height: 1.08;
    margin-bottom: 16px;
}

.blog-hero-box p {
    color: var(--muted);
    font-size: 18px;
    max-width: 980px;
}

.blog-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.blog-hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e9f3ff;
    font-size: 13px;
    font-weight: 700;
}

.blog-search-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.blog-search-box {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.blog-search-input-wrap {
    flex: 1;
}

.blog-search-box input {
    width: 100%;
    height: 58px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 0 18px;
    outline: none;
    font-family: inherit;
    font-size: 15px;
}

.blog-search-box input::placeholder {
    color: #9fb0c9;
}

.blog-search-result-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
    color: var(--muted);
}

.blog-search-result-info strong {
    color: #fff;
}

.blog-search-result-info a {
    color: #ff9b3a;
    font-weight: 700;
}

.blog-meta-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 14px;
}

.blog-empty-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.10), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.blog-empty-box h2 {
    font-size: 34px;
    margin-bottom: 14px;
}

.blog-empty-box p {
    color: var(--muted);
    font-size: 17px;
}

@media (max-width: 860px) {
    .blog-hero-box h1 {
        font-size: 38px;
    }

    .blog-search-box {
        flex-direction: column;
        align-items: stretch;
    }
}
/* Blog detail modern */
.article-hero-box {
    padding: 34px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.10), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.article-breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.article-breadcrumb-modern a {
    color: #dce8f8;
}

.article-breadcrumb-modern strong {
    color: #ffffff;
}

.article-hero-box h1 {
    font-size: 52px;
    line-height: 1.08;
    margin-bottom: 16px;
}

.article-hero-box p {
    color: var(--muted);
    font-size: 18px;
    max-width: 1100px;
}

.article-meta-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.article-meta-modern span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #dce8f8;
    font-size: 13px;
    font-weight: 600;
}

.article-layout-modern {
    max-width: 980px;
    margin: 0 auto;
}

.article-layout-modern-wide {
    max-width: 1180px;
}

.article-content-modern {
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(24,199,255,0.08), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.article-cover {
    width: 100%;
    min-height: 280px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
}

.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.article-cover-placeholder {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(255,138,31,0.18), transparent 20%),
        radial-gradient(circle at bottom right, rgba(24,199,255,0.18), transparent 26%),
        linear-gradient(135deg, #172742 0%, #0d1630 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-cover-overlay {
    text-align: center;
    padding: 30px;
}

.article-cover-brand {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1;
}

.article-cover-brand .blue {
    color: #1896ff;
}

.article-cover-brand .cyan {
    color: #35d5ff;
}

.article-cover-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 10px;
}

.article-cover-subtitle {
    color: #cfe1f5;
    font-size: 16px;
}

.article-prose {
    padding: 40px;
}

.article-prose h2 {
    font-size: 34px;
    line-height: 1.16;
    margin: 34px 0 16px;
}

.article-prose h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.article-prose p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.95;
    margin-bottom: 18px;
}

.article-highlight-box {
    margin: 30px 0;
    padding: 24px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(24,199,255,0.08), rgba(255,138,31,0.08));
    border: 1px solid rgba(255,255,255,0.08);
}

.article-highlight-box h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.article-highlight-box p {
    margin-bottom: 0;
    color: #d9e8fa;
}

@media (max-width: 860px) {
    .article-hero-box h1 {
        font-size: 36px;
    }

    .article-cover-title {
        font-size: 28px;
    }

    .article-prose {
        padding: 24px;
    }

    .article-prose h2 {
        font-size: 26px;
    }

    .article-prose p {
        font-size: 16px;
    }
}
/* Contact page premium */
.contact-hero-premium {
    position: relative;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    padding: 36px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.14), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.contact-hero-premium::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(24,199,255,0.08);
    filter: blur(10px);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-content h1 {
    font-size: 54px;
    line-height: 1.07;
    margin-bottom: 16px;
}

.contact-hero-content p {
    color: var(--muted);
    font-size: 18px;
    max-width: 920px;
}

.contact-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e9f3ff;
    font-size: 13px;
    font-weight: 700;
}

.contact-hero-side {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    align-content: center;
}

.contact-float-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.contact-float-card-main {
    background: linear-gradient(135deg, rgba(255,138,31,0.14), rgba(255,197,47,0.08));
    border-color: rgba(255,138,31,0.18);
}

.contact-float-card strong {
    display: block;
    font-size: 30px;
    margin-bottom: 6px;
    color: #ffffff;
}

.contact-float-card span {
    color: var(--muted);
    font-size: 14px;
}

.contact-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-main-card,
.contact-telegram-card,
.contact-rules-box {
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.contact-main-card,
.contact-telegram-card {
    padding: 30px;
}

.contact-main-card-whatsapp {
    background:
        radial-gradient(circle at top left, rgba(255,138,31,0.16), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.contact-main-card-email {
    background:
        radial-gradient(circle at top right, rgba(24,199,255,0.14), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.contact-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.contact-main-card h2,
.contact-telegram-card h3 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 6px;
}

.contact-main-card p,
.contact-telegram-card p {
    color: var(--muted);
}

.contact-info-box {
    margin: 20px 0 24px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-info-box.compact {
    margin-bottom: 20px;
}

.contact-info-box strong {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
    color: #ffffff;
}

.contact-info-box span {
    color: var(--muted);
    font-size: 14px;
}

.contact-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-telegram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-telegram-card {
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.10), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.contact-telegram-card-premium {
    background:
        radial-gradient(circle at bottom right, rgba(255,138,31,0.14), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.contact-rules-box {
    padding: 32px;
    background:
        radial-gradient(circle at top left, rgba(255,138,31,0.12), transparent 22%),
        radial-gradient(circle at bottom right, rgba(24,199,255,0.10), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

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

.contact-rule-item {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-rule-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    color: #ffffff;
}

.contact-rule-item p {
    color: var(--muted);
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .contact-hero-premium,
    .contact-grid-premium,
    .contact-telegram-grid,
    .contact-rules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .contact-hero-content h1 {
        font-size: 38px;
    }

    .contact-main-card h2,
    .contact-telegram-card h3 {
        font-size: 24px;
    }
}
/* FAQ page premium */
.faq-hero-premium {
    position: relative;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    padding: 36px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.14), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.faq-hero-premium::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(24,199,255,0.08);
    filter: blur(10px);
}

.faq-hero-content {
    position: relative;
    z-index: 1;
}

.faq-hero-content h1 {
    font-size: 54px;
    line-height: 1.07;
    margin-bottom: 16px;
}

.faq-hero-content p {
    color: var(--muted);
    font-size: 18px;
    max-width: 920px;
}

.faq-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.faq-hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e9f3ff;
    font-size: 13px;
    font-weight: 700;
}

.faq-hero-side {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    align-content: center;
}

.faq-hero-stat {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.faq-hero-stat-main {
    background: linear-gradient(135deg, rgba(255,138,31,0.14), rgba(255,197,47,0.08));
    border-color: rgba(255,138,31,0.18);
}

.faq-hero-stat strong {
    display: block;
    font-size: 30px;
    margin-bottom: 6px;
    color: #ffffff;
}

.faq-hero-stat span {
    color: var(--muted);
    font-size: 14px;
}

.faq-intro-box {
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(24,199,255,0.10), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-intro-box h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.faq-intro-box p {
    color: var(--muted);
    font-size: 17px;
}

.faq-modern-list {
    display: grid;
    gap: 20px;
}

.faq-modern-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    align-items: stretch;
    padding: 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.06), transparent 18%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    transition: 0.28s ease;
}

.faq-modern-item:hover {
    transform: translateY(-4px);
    border-color: rgba(24,199,255,0.18);
}

.faq-modern-number {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(24,199,255,0.16), rgba(77,163,255,0.10));
    border: 1px solid rgba(24,199,255,0.18);
    color: #dff7ff;
    font-size: 24px;
    font-weight: 700;
    min-height: 90px;
}

.faq-modern-body h2 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.faq-modern-body p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

@media (max-width: 1100px) {
    .faq-hero-premium {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .faq-hero-content h1 {
        font-size: 38px;
    }

    .faq-intro-box h2 {
        font-size: 28px;
    }

    .faq-modern-item {
        grid-template-columns: 1fr;
    }

    .faq-modern-number {
        min-height: 64px;
        font-size: 20px;
    }

    .faq-modern-body h2 {
        font-size: 22px;
    }

    .faq-modern-body p {
        font-size: 16px;
    }
}
/* Dealer page premium */
.dealer-hero-premium {
    position: relative;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    padding: 36px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.14), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.dealer-hero-premium::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(24,199,255,0.08);
    filter: blur(10px);
}

.dealer-hero-content {
    position: relative;
    z-index: 1;
}

.dealer-hero-content h1 {
    font-size: 54px;
    line-height: 1.07;
    margin-bottom: 16px;
}

.dealer-hero-content p {
    color: var(--muted);
    font-size: 18px;
    max-width: 920px;
}

.dealer-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.dealer-hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e9f3ff;
    font-size: 13px;
    font-weight: 700;
}

.dealer-hero-side {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    align-content: center;
}

.dealer-float-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.dealer-float-card-main {
    background: linear-gradient(135deg, rgba(255,138,31,0.14), rgba(255,197,47,0.08));
    border-color: rgba(255,138,31,0.18);
}

.dealer-float-card strong {
    display: block;
    font-size: 30px;
    margin-bottom: 6px;
    color: #ffffff;
}

.dealer-float-card span {
    color: var(--muted);
    font-size: 14px;
}

.dealer-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dealer-benefit-card {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dealer-benefit-card::before {
    content: "";
    position: absolute;
    right: -36px;
    top: -36px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.18;
}

.dealer-benefit-card-blue {
    background: linear-gradient(180deg, rgba(24,199,255,0.10), rgba(255,255,255,0.03));
}
.dealer-benefit-card-blue::before { background: #18c7ff; }

.dealer-benefit-card-orange {
    background: linear-gradient(180deg, rgba(255,138,31,0.12), rgba(255,255,255,0.03));
}
.dealer-benefit-card-orange::before { background: #ff8a1f; }

.dealer-benefit-card-cyan {
    background: linear-gradient(180deg, rgba(77,163,255,0.12), rgba(255,255,255,0.03));
}
.dealer-benefit-card-cyan::before { background: #4da3ff; }

.dealer-benefit-card-yellow {
    background: linear-gradient(180deg, rgba(255,197,47,0.12), rgba(255,255,255,0.03));
}
.dealer-benefit-card-yellow::before { background: #ffc52f; }

.dealer-benefit-card-purple {
    background: linear-gradient(180deg, rgba(184,124,255,0.12), rgba(255,255,255,0.03));
}
.dealer-benefit-card-purple::before { background: #b87cff; }

.dealer-benefit-card-red {
    background: linear-gradient(180deg, rgba(255,93,77,0.12), rgba(255,255,255,0.03));
}
.dealer-benefit-card-red::before { background: #ff5d4d; }

.dealer-benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.dealer-benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.dealer-benefit-card p {
    color: var(--muted);
}

.dealer-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dealer-info-card {
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.10), transparent 20%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.dealer-info-card-accent {
    background:
        radial-gradient(circle at bottom right, rgba(255,138,31,0.12), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.dealer-info-card h2 {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 14px;
}

.dealer-info-card p {
    color: var(--muted);
    margin-bottom: 14px;
}

.dealer-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.dealer-list li {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e4eefb;
}

.dealer-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.dealer-step-card {
    padding: 26px 22px;
    text-align: center;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.08), transparent 18%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    transition: 0.28s ease;
}

.dealer-step-card:hover {
    transform: translateY(-4px);
}

.dealer-step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    color: #06203b;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(24,199,255,0.18);
}

.dealer-step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.dealer-step-card p {
    color: var(--muted);
}

@media (max-width: 1100px) {
    .dealer-hero-premium,
    .dealer-benefit-grid,
    .dealer-split-grid,
    .dealer-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .dealer-hero-content h1 {
        font-size: 38px;
    }

    .dealer-info-card h2 {
        font-size: 28px;
    }

    .dealer-benefit-card h3,
    .dealer-step-card h3 {
        font-size: 21px;
    }
}
/* Package pages premium */
.package-hero-premium {
    position: relative;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    padding: 36px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.14), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.package-hero-premium::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(24,199,255,0.08);
    filter: blur(10px);
}

.package-hero-content {
    position: relative;
    z-index: 1;
}

.package-hero-content h1 {
    font-size: 54px;
    line-height: 1.07;
    margin-bottom: 16px;
}

.package-hero-content p {
    color: var(--muted);
    font-size: 18px;
    max-width: 920px;
}

.package-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.package-hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e9f3ff;
    font-size: 13px;
    font-weight: 700;
}

.package-hero-side {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    align-content: center;
}

.package-hero-stat {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.package-hero-stat-main {
    background: linear-gradient(135deg, rgba(255,138,31,0.14), rgba(255,197,47,0.08));
    border-color: rgba(255,138,31,0.18);
}

.package-hero-stat strong {
    display: block;
    font-size: 30px;
    margin-bottom: 6px;
    color: #ffffff;
}

.package-hero-stat span {
    color: var(--muted);
    font-size: 14px;
}

.package-info-premium {
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(24,199,255,0.10), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.package-info-premium h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.package-info-premium p {
    color: var(--muted);
    font-size: 17px;
}

@media (max-width: 1100px) {
    .package-hero-premium {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .package-hero-content h1 {
        font-size: 38px;
    }

    .package-info-premium h2 {
        font-size: 28px;
    }
}
/* Footer premium */
.site-footer {
    padding: 70px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.06), transparent 18%),
        radial-gradient(circle at top right, rgba(255,138,31,0.05), transparent 18%),
        linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.22));
}

.footer-premium {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 26px;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    color: #06203b;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(24,199,255,0.24);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-logo-text strong {
    font-size: 20px;
    line-height: 1.1;
    color: #ffffff;
}

.footer-logo-text small {
    font-size: 12px;
    color: #bfe8ff;
}

.footer-description {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
    max-width: 420px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    color: #dce8f8;
    font-size: 12px;
    font-weight: 700;
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-link-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-link-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    color: #d7e5f8;
    transition: 0.25s ease;
    background: rgba(255,255,255,0.02);
}

.footer-link-list li a:hover {
    background: rgba(255,255,255,0.06);
    transform: translateX(4px);
}

.footer-link-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    font-size: 13px;
    flex-shrink: 0;
}

.footer-contact-card {
    padding: 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.10), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-contact-item:last-of-type {
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-contact-item p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    border-radius: 16px;
    background: var(--gradient-accent);
    color: #3f2500;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(255,138,31,0.24);
    transition: 0.28s ease;
}

.footer-whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.footer-bottom-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    padding: 18px 6px 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-bottom-premium p {
    margin: 0;
}

.footer-bottom-premium span {
    color: #bfd3ea;
}

@media (max-width: 1100px) {
    .footer-premium {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .footer-premium {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .footer-bottom-premium {
        flex-direction: column;
        align-items: flex-start;
    }
}
.payment-form {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.payment-form input,
.payment-form select {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #111;
    color: #fff;
}
/* Payment page premium */
.payment-hero-premium {
    position: relative;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    padding: 36px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.14), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.payment-hero-content h1 {
    font-size: 54px;
    line-height: 1.07;
    margin-bottom: 16px;
}

.payment-hero-content p {
    color: var(--muted);
    font-size: 18px;
    max-width: 920px;
}

.payment-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.payment-hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e9f3ff;
    font-size: 13px;
    font-weight: 700;
}

.payment-hero-side {
    display: grid;
    gap: 16px;
    align-content: center;
}

.payment-hero-stat {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.payment-hero-stat-main {
    background: linear-gradient(135deg, rgba(255,138,31,0.14), rgba(255,197,47,0.08));
    border-color: rgba(255,138,31,0.18);
}

.payment-hero-stat strong {
    display: block;
    font-size: 30px;
    margin-bottom: 6px;
    color: #ffffff;
}

.payment-hero-stat span {
    color: var(--muted);
    font-size: 14px;
}

.payment-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.payment-form-panel,
.payment-side-box,
.manual-payment-card,
.payment-result-hero {
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.payment-form-panel,
.manual-payment-card,
.payment-result-hero {
    padding: 30px;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.08), transparent 20%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.payment-panel-head h2,
.payment-result-hero h1 {
    font-size: 36px;
    line-height: 1.12;
    margin-bottom: 10px;
}

.payment-panel-head p,
.payment-result-hero p {
    color: var(--muted);
}

.premium-payment-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.payment-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.payment-field {
    display: grid;
    gap: 8px;
}

.payment-field label {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.payment-field input,
.payment-field select {
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

.payment-field input::placeholder {
    color: #9fb0c9;
}

.payment-method-note {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    color: #d9e8fa;
    font-size: 14px;
    line-height: 1.7;
}

.payment-submit-btn {
    width: 100%;
    min-height: 58px;
}

.payment-side-panel {
    display: grid;
    gap: 20px;
}

.payment-side-box {
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(24,199,255,0.10), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.payment-side-box-accent {
    background:
        radial-gradient(circle at bottom left, rgba(255,138,31,0.12), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.payment-side-box h3 {
    font-size: 28px;
    margin-bottom: 14px;
}

.payment-side-method {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.payment-side-method:last-child {
    border-bottom: none;
}

.payment-side-method strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
}

.payment-side-method p,
.payment-side-list li {
    color: var(--muted);
}

.payment-side-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.manual-payment-layout {
    max-width: 960px;
    margin: 0 auto;
}

.manual-payment-summary {
    display: grid;
    gap: 12px;
    margin: 20px 0 24px;
}

.manual-payment-summary div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.manual-payment-summary strong {
    color: #ffffff;
}

.manual-payment-summary span {
    color: #dce8f8;
    text-align: right;
}

.manual-payment-info-box {
    padding: 22px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(24,199,255,0.08), rgba(255,138,31,0.08));
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

.manual-payment-info-box p {
    color: #d9e8fa;
    margin-bottom: 10px;
}

.manual-payment-confirm-form {
    margin-top: 12px;
}

.payment-result-note {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    color: #d9e8fa;
    line-height: 1.75;
}

@media (max-width: 1100px) {
    .payment-hero-premium,
    .payment-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .payment-hero-content h1,
    .payment-result-hero h1 {
        font-size: 38px;
    }

    .payment-panel-head h2 {
        font-size: 30px;
    }

    .payment-grid-two {
        grid-template-columns: 1fr;
    }

    .manual-payment-summary div {
        flex-direction: column;
    }

    .manual-payment-summary span {
        text-align: left;
    }
}
.payment-field select,
.premium-payment-form select {
    color: #ffffff;
    background-color: rgba(255,255,255,0.05);
    -webkit-appearance: none;
    appearance: none;
}

.payment-field select option,
.premium-payment-form select option {
    background: #0f1728;
    color: #ffffff;
}

.payment-field select:focus,
.premium-payment-form select:focus {
    color: #ffffff;
    border-color: rgba(24,199,255,0.35);
    box-shadow: 0 0 0 3px rgba(24,199,255,0.12);
}

.payment-field select:invalid,
.premium-payment-form select:invalid {
    color: #9fb0c9;
}
.payment-field select optgroup,
.premium-payment-form select optgroup {
    background: #0b1322;
    color: #ffc52f;
    font-style: normal;
    font-weight: 700;
}
/* =========================
   2026 Refresh Overrides
   Header + Homepage cleanup
   ========================= */

.site-header {
    padding-top: 10px;
    background: rgba(2, 8, 20, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
    min-height: 74px;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(8, 18, 38, 0.86);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.26);
}

.logo {
    min-width: auto;
    gap: 10px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.nav {
    gap: 8px;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.nav-btn {
    background: rgba(24, 199, 255, 0.14);
    color: #c8f5ff !important;
    border-color: rgba(24, 199, 255, 0.24);
    box-shadow: none;
}

.nav-btn .nav-icon {
    background: rgba(24, 199, 255, 0.16);
    color: #d6f8ff;
}

.section {
    padding: 68px 0;
}

.section-head {
    margin-bottom: 32px;
}

.section-head h2 {
    font-size: 40px;
}

.hero {
    padding: 74px 0 52px;
}

.hero-grid {
    gap: 32px;
    align-items: stretch;
}

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

.badge {
    margin-bottom: 16px;
    padding: 8px 14px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 14px;
}

.hero p {
    font-size: 17px;
    max-width: 700px;
    margin-bottom: 22px;
}

.hero-actions {
    margin-bottom: 18px;
}

.hero-features {
    gap: 8px;
}

.hero-features span {
    padding: 7px 11px;
    font-size: 12px;
}

.monitor-shell {
    padding: 24px 22px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #243754 0%, #2b4060 100%);
}

.monitor-screen {
    min-height: 250px;
}

.monitor-title {
    font-size: 24px;
}

.monitor-stats {
    gap: 12px;
    margin-top: 16px;
}

.monitor-stat {
    padding: 14px 10px;
    border-radius: 14px;
}

.monitor-stat strong {
    font-size: 18px;
}

.active-badge,
.safe-badge {
    animation: none;
}

.features-grid,
.blog-grid,
.steps.steps-4,
.pricing-grid {
    gap: 20px;
}

.feature-box,
.blog-card,
.step,
.faq-item,
.pricing-card {
    border-radius: 20px;
}

.feature-box {
    padding: 26px;
}

.feature-box h3,
.step h3,
.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.pricing-switch {
    max-width: 390px;
    margin-bottom: 28px;
    padding: 6px;
    border-radius: 18px;
}

.pricing-tab {
    min-height: 50px;
    font-size: 14px;
}

.pricing-card {
    padding: 26px;
}

.pricing-card:hover,
.blog-card:hover,
.feature-box:hover,
.step:hover {
    transform: translateY(-3px);
}

.pricing-feature-list {
    gap: 10px;
}

.pricing-bottom-actions,
.center-actions {
    margin-top: 28px;
}

.package-diff-grid {
    gap: 18px;
}

.package-diff-card {
    border-radius: 20px;
}

.steps.steps-4 {
    grid-template-columns: repeat(3, 1fr);
}

.step {
    padding: 24px;
}

.blog-thumb {
    min-height: 180px;
}

.faq-list {
    gap: 16px;
}

.faq-item {
    padding: 22px;
}

.disclaimer-box {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1180px) {
    .nav {
        gap: 6px;
    }

    .nav-link {
        padding: 9px 10px;
        font-size: 11px;
    }

    .nav-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .pricing-grid,
    .features-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 920px) {
    .site-header {
        padding-top: 8px;
    }

    .header-inner {
        min-height: 68px;
        padding: 10px 12px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border-radius: 18px;
        background: rgba(8, 18, 38, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
    }

    .nav.is-open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        font-size: 13px;
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.03);
    }

    .hero {
        padding: 58px 0 42px;
    }

    .hero-grid,
    .pricing-grid,
    .features-grid,
    .blog-grid,
    .steps.steps-4 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section {
        padding: 56px 0;
    }

    .section-head h2 {
        font-size: 32px;
    }
}

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

    .logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -0.4px;
    }

    .hero p {
        font-size: 15px;
    }

    .monitor-screen {
        min-height: 210px;
    }

    .monitor-stats {
        grid-template-columns: 1fr;
    }

    .pricing-switch {
        max-width: 100%;
    }

    .pricing-tab {
        min-height: 46px;
        font-size: 13px;
    }

    .feature-box,
    .blog-card,
    .step,
    .faq-item,
    .pricing-card,
    .disclaimer-box {
        padding: 20px;
    }
}

/* Modern payment status and result screens */
.payment-status-section,
.payment-result-section {
    position: relative;
    overflow: hidden;
}

.payment-status-section::before,
.payment-result-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 10%, rgba(24,199,255,0.16), transparent 26%),
        radial-gradient(circle at 86% 18%, rgba(255,138,31,0.14), transparent 24%),
        radial-gradient(circle at 50% 90%, rgba(255,255,255,0.06), transparent 28%);
}

.payment-status-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    gap: 24px;
    align-items: stretch;
}

.payment-status-card,
.payment-result-modern,
.result-detail-card {
    border: 1px solid rgba(255,255,255,0.10);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    box-shadow: 0 24px 90px rgba(0,0,0,0.30);
    backdrop-filter: blur(18px);
}

.payment-status-card {
    border-radius: 30px;
    padding: 28px;
}

.payment-status-card-main {
    position: relative;
    min-height: 570px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.payment-status-card-main h1,
.payment-result-modern h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    max-width: 820px;
    margin: 16px 0;
}

.payment-status-copy,
.payment-result-modern > p {
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.payment-status-orb {
    position: absolute;
    right: -110px;
    top: -120px;
    width: 310px;
    height: 310px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(24,199,255,0.24), rgba(24,199,255,0.04) 58%, transparent 70%);
}

.payment-status-orb span {
    position: absolute;
    inset: 70px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.20);
    animation: paymentPulse 2.4s ease-in-out infinite;
}

.payment-progress-card {
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(100%, 680px);
    margin-top: 30px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(24,199,255,0.18);
}

.payment-progress-card strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.payment-progress-card span {
    display: block;
    color: #cbd8ea;
    line-height: 1.55;
}

.payment-progress-card.is-warning {
    border-color: rgba(255,193,7,0.28);
}

.payment-spinner {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 4px solid rgba(255,255,255,0.12);
    border-top-color: var(--accent-color, #18c7ff);
    animation: paymentSpin 0.85s linear infinite;
}

.payment-status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.center-actions {
    justify-content: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    color: #ffffff;
    background: rgba(255,255,255,0.04);
    font-weight: 800;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.09);
}

.payment-status-sidebar {
    display: grid;
    gap: 20px;
}

.payment-copy-box {
    position: relative;
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.payment-copy-box small,
.payment-detail-list span {
    color: #9fb0c9;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.payment-copy-box strong {
    color: #ffffff;
    font-size: 18px;
    word-break: break-word;
}

.copy-mini-btn {
    justify-self: start;
    border: none;
    border-radius: 999px;
    padding: 8px 12px;
    color: #0d1726;
    background: var(--accent-color, #18c7ff);
    font-weight: 900;
    cursor: pointer;
}

.muted-box {
    background: rgba(255,255,255,0.035);
}

.payment-alert {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    line-height: 1.6;
}

.payment-alert.warning {
    background: rgba(255,193,7,0.10);
    border: 1px solid rgba(255,193,7,0.20);
    color: #ffe08a;
}

.payment-detail-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.payment-detail-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.payment-detail-list strong {
    color: #ffffff;
    text-align: right;
}

.payment-result-modern {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 58px);
    border-radius: 34px;
    text-align: center;
    overflow: hidden;
}

.payment-result-modern::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    right: -160px;
    top: -160px;
    opacity: 0.7;
}

.payment-result-modern.is-success::before {
    background: radial-gradient(circle, rgba(25,135,84,0.30), transparent 68%);
}

.payment-result-modern.is-error::before {
    background: radial-gradient(circle, rgba(220,53,69,0.28), transparent 68%);
}

.result-icon-wrap {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.07);
}

.result-icon-wrap span {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
}

.result-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 34px 0 20px;
    text-align: left;
}

.result-detail-grid.single {
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
}

.result-detail-card {
    border-radius: 24px;
    padding: 22px;
}

.result-detail-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.success-note {
    border-color: rgba(25,135,84,0.24);
    background: rgba(25,135,84,0.11);
}

.error-note {
    border-color: rgba(220,53,69,0.24);
    background: rgba(220,53,69,0.11);
}

@keyframes paymentSpin {
    to { transform: rotate(360deg); }
}

@keyframes paymentPulse {
    0%, 100% { transform: scale(0.92); opacity: 0.45; }
    50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1040px) {
    .payment-status-shell,
    .result-detail-grid {
        grid-template-columns: 1fr;
    }

    .payment-status-card-main {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .payment-status-card,
    .payment-result-modern {
        border-radius: 24px;
        padding: 22px;
    }

    .payment-progress-card,
    .payment-detail-list div {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-detail-list strong {
        text-align: left;
    }
}

/* Payment patch: consistent widths, copy rows, modal validation, manual payment redesign */
.payment-layout,
.payment-status-shell,
.manual-payment-modern-shell,
.result-detail-grid,
.payment-grid-two {
    min-width: 0;
}

.payment-form-panel,
.payment-side-box,
.payment-status-card,
.payment-result-modern,
.result-detail-card,
.manual-payment-card,
.payment-result-hero {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}

.payment-form-panel,
.payment-status-card-main,
.manual-payment-main-card {
    overflow: hidden;
}

.payment-result-modern {
    width: 100%;
    max-width: none;
}

.payment-result-modern > .section-badge,
.payment-result-modern > h1,
.payment-result-modern > p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.payment-result-modern > p {
    max-width: 820px;
}

.result-detail-grid.single {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
}

.payment-copy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    min-width: 0;
}

.payment-copy-value {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.payment-copy-value small,
.payment-copy-row small,
.payment-detail-list span {
    color: #9fb0c9;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.payment-copy-value strong,
.payment-copy-row strong {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.copy-action-btn {
    min-height: 48px;
    white-space: nowrap;
    font-family: inherit;
    font-size: 14px;
}

.copy-action-btn.is-copied {
    border-color: rgba(25,135,84,0.35);
    background: rgba(25,135,84,0.18);
}

.payment-copy-box .copy-mini-btn {
    font-family: inherit;
}

.payment-status-card-main h1,
.payment-result-modern h1,
.manual-payment-main-card h1 {
    overflow-wrap: anywhere;
}

.payment-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.payment-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.payment-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 20, 0.72);
    backdrop-filter: blur(10px);
}

.payment-modal-card {
    position: relative;
    width: min(100%, 440px);
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(145deg, rgba(20,31,50,0.98), rgba(12,19,33,0.98));
    box-shadow: 0 30px 90px rgba(0,0,0,0.45);
    text-align: center;
    transform: translateY(18px) scale(.98);
    transition: transform .28s ease;
}

.payment-modal.is-open .payment-modal-card {
    transform: translateY(0) scale(1);
}

.payment-modal-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: rgba(255,138,31,0.16);
    border: 1px solid rgba(255,138,31,0.28);
    color: #ffb36b;
    font-size: 32px;
    font-weight: 900;
}

.payment-modal-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.payment-modal-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.manual-payment-modern-section .payment-status-card-main {
    min-height: auto;
    justify-content: flex-start;
}

.manual-pay-provider-card {
    width: 100%;
    margin-top: 22px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
}

.manual-provider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.manual-provider-head small {
    display: block;
    color: #9fb0c9;
    font-weight: 800;
    margin-bottom: 6px;
}

.manual-provider-head strong {
    display: block;
    color: #ffffff;
    font-size: 19px;
}

.manual-provider-head > span {
    flex: 0 0 auto;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-weight: 900;
}

.manual-provider-action {
    width: 100%;
}

.manual-wallet-row {
    margin-top: 0;
    background: rgba(0,0,0,0.18);
}

.button-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.38);
    border-top-color: #ffffff;
    animation: paymentSpin .75s linear infinite;
}

.button-spinner.is-visible {
    display: inline-block;
}

.payment-alert,
.payment-result-note,
.payment-method-note,
.payment-detail-list div,
.manual-payment-summary div {
    overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
    .payment-layout,
    .payment-status-shell,
    .manual-payment-modern-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .payment-form-panel,
    .payment-status-card,
    .payment-result-modern,
    .result-detail-card {
        padding: 20px;
        border-radius: 22px;
    }

    .payment-copy-row,
    .manual-provider-head {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .payment-copy-row {
        display: grid;
    }

    .copy-action-btn {
        width: 100%;
    }

    .payment-status-actions .btn,
    .payment-status-actions button {
        width: 100%;
    }
}


/* Pending havale guard + cleaner control screen */
.payment-status-shell-compact {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    align-items: start;
}

.payment-status-shell-compact .payment-status-card-main {
    min-height: 0;
    justify-content: flex-start;
    padding: clamp(24px, 4vw, 38px);
}

.payment-status-shell-compact .payment-status-card-main h1 {
    font-size: clamp(30px, 4.2vw, 52px);
    max-width: 760px;
}

.payment-status-shell-compact .payment-status-copy {
    font-size: 16px;
    max-width: 760px;
}

.payment-status-shell-compact .payment-progress-card {
    width: 100%;
    max-width: 760px;
    margin-top: 22px;
}

.payment-status-shell-compact .payment-status-orb {
    width: 220px;
    height: 220px;
    right: -82px;
    top: -88px;
}

.pending-notice {
    width: min(100%, 760px);
    margin-top: 18px;
    border-color: rgba(24,199,255,0.24);
    background: rgba(24,199,255,0.10);
    color: #dbeeff;
}

.payment-status-summary-only .payment-status-card {
    position: sticky;
    top: 120px;
}

@media (max-width: 1040px) {
    .payment-status-shell-compact {
        grid-template-columns: 1fr;
    }

    .payment-status-summary-only .payment-status-card {
        position: static;
    }
}

/* reCAPTCHA + crypto amount payment patch */
.payment-recaptcha-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 2px 0 4px;
    overflow-x: auto;
}

.recaptcha-config-warning {
    margin: 0;
    font-size: 14px;
}


.crypto-amount-highlight {
    width: 100%;
    margin: 20px 0 22px;
    padding: clamp(18px, 3vw, 26px);
    border-radius: 26px;
    border: 1px solid rgba(34, 197, 94, 0.32);
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
    display: grid;
    gap: 16px;
    overflow: hidden;
}

.crypto-amount-highlight-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.crypto-amount-highlight-head span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.crypto-amount-highlight-head small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    font-weight: 700;
}

.crypto-amount-highlight-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.crypto-amount-highlight-body strong {
    color: #22c55e;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
    letter-spacing: -0.05em;
    overflow-wrap: anywhere;
}

.crypto-copy-btn {
    flex: 0 0 auto;
    min-width: 148px;
    font-family: inherit;
}

.crypto-rate-line {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 800;
}

.crypto-rate-error strong {
    color: #fecaca;
    font-size: clamp(28px, 4vw, 42px);
}

@media (max-width: 520px) {
    .payment-recaptcha-wrap .g-recaptcha {
        transform: scale(0.88);
        transform-origin: left top;
        margin-bottom: -8px;
    }
}


/* =========================
   2026 Orange + Blue Refresh
   ========================= */
:root {
    --gradient-main: linear-gradient(135deg, #ff8a1f 0%, #ffc52f 100%);
    --gradient-accent: linear-gradient(135deg, #ff8a1f 0%, #ffd15b 100%);
}

body {
    background:
        radial-gradient(circle at top left, rgba(24, 199, 255, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 138, 31, 0.10), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255, 197, 47, 0.06), transparent 18%),
        linear-gradient(180deg, #020814 0%, #061126 45%, #081633 100%);
}

.site-header {
    background: rgba(2, 8, 20, 0.78);
}

.header-inner {
    background: linear-gradient(135deg, rgba(8, 18, 38, 0.94), rgba(13, 25, 48, 0.92));
    border-color: rgba(255, 163, 55, 0.12);
}

.logo,
.footer-logo {
    gap: 12px;
}

.logo-media,
.footer-logo-media {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-media-image,
.footer-logo-media-image {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.logo-media-image {
    width: 54px;
    height: 54px;
    padding: 6px;
    border-radius: 18px;
}

.footer-logo-media-image {
    width: 60px;
    height: 60px;
    padding: 7px;
    border-radius: 20px;
}

.logo-image,
.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text-wrap strong,
.footer-logo-text strong {
    color: #ffffff;
}

.logo-text-wrap small,
.footer-logo-text small {
    color: #ffd89c;
}

.nav-link.active,
.nav-link:hover {
    background: linear-gradient(135deg, rgba(255, 138, 31, 0.18), rgba(255, 197, 47, 0.08));
    border-color: rgba(255, 163, 55, 0.18);
}

.nav-btn,
.btn-primary,
.btn-accent,
.footer-whatsapp-btn,
.chatbot-action,
.payment-submit-btn,
.premium-payment-submit,
.blog-cta,
.cta-button,
.cta-test-actions .btn {
    background: linear-gradient(135deg, #ff8a1f 0%, #ffc52f 100%);
    color: #392100 !important;
    border: 1px solid rgba(255, 197, 47, 0.18);
    box-shadow: 0 14px 36px rgba(255, 138, 31, 0.24);
}

.nav-btn .nav-icon {
    background: rgba(57, 33, 0, 0.10);
    color: #392100;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(18, 199, 255, 0.12), rgba(77, 163, 255, 0.12));
    border: 1px solid rgba(24, 199, 255, 0.14);
    color: #f3fbff;
}

.hero {
    padding: 90px 0 68px;
}

.hero-content {
    padding: 26px 0;
}

.hero .badge,
.section-badge.orange,
.package-diff-badge-elite,
.package-diff-short-elite,
.pricing-badge-hot,
.pricing-badge-vip {
    background: linear-gradient(135deg, rgba(255, 138, 31, 0.18), rgba(255, 197, 47, 0.12));
    border-color: rgba(255, 163, 55, 0.22);
    color: #ffd180;
}

.hero-btn-highlight {
    min-width: 210px;
}

.section-badge:not(.orange) {
    background: linear-gradient(135deg, rgba(24, 199, 255, 0.10), rgba(77, 163, 255, 0.08));
    border-color: rgba(24, 199, 255, 0.18);
}

.feature-box,
.blog-card,
.faq-item,
.step,
.disclaimer-box,
.pricing-card,
.package-diff-card,
.footer-premium,
.device-showcase-box,
.channel-card,
.package-tier-section,
.cta-test-box,
.elite-why-box,
.package-hero-premium,
.test-card-soft {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border-color: rgba(255, 255, 255, 0.08);
}

.feature-icon.orange,
.step-number,
.category-icon {
    background: linear-gradient(135deg, rgba(255, 138, 31, 0.22), rgba(255, 197, 47, 0.18));
    color: #ffcf74;
}

.pricing-switch {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.pricing-tab.active {
    background: linear-gradient(135deg, rgba(255, 138, 31, 0.16), rgba(255, 197, 47, 0.12));
    border-color: rgba(255, 163, 55, 0.22);
    color: #ffd180;
}

.pricing-btn-standart,
.pricing-btn-premium,
.pricing-btn-elite-ai {
    background: linear-gradient(135deg, #ff8a1f 0%, #ffc52f 100%);
    color: #392100;
    border: 1px solid rgba(255, 197, 47, 0.18);
    box-shadow: 0 12px 28px rgba(255, 138, 31, 0.24);
}

.pricing-card-standart,
.package-tier-standart .pricing-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card-premium,
.package-tier-premium .pricing-card {
    border: 1px solid rgba(24, 199, 255, 0.20);
    box-shadow: 0 22px 70px rgba(24, 199, 255, 0.12);
}

.pricing-card-elite-ai,
.package-tier-elite .pricing-card {
    border: 1px solid rgba(255, 163, 55, 0.22);
    box-shadow: 0 22px 70px rgba(255, 138, 31, 0.16);
}

.package-tier-section {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 34px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.package-tier-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255,255,255,0.06), transparent 28%, transparent 72%, rgba(255,255,255,0.04));
}

.package-tier-section > * {
    position: relative;
    z-index: 1;
}

.package-tier-standart {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
}

.package-tier-premium {
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.12), transparent 24%),
        linear-gradient(135deg, rgba(15, 47, 79, 0.55), rgba(255,255,255,0.03));
    border: 1px solid rgba(24,199,255,0.18);
}

.package-tier-elite {
    background:
        radial-gradient(circle at top left, rgba(255,138,31,0.16), transparent 26%),
        linear-gradient(135deg, rgba(63, 35, 5, 0.34), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,163,55,0.22);
}

.package-group-head {
    margin-bottom: 24px;
}

.package-group-head.package-group-premium,
.package-group-head.package-group-elite {
    margin-top: 0;
}

.channel-showcase {
    border-radius: 30px;
    padding: 36px;
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.12), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.channel-showcase-head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 28px;
}

.channel-showcase-head h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.1;
    margin-bottom: 14px;
}

.accent-text {
    background: linear-gradient(135deg, #ffb320 0%, #ffd458 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.channel-showcase-head p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 18px;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.channel-card {
    padding: 24px 18px;
    border-radius: 22px;
    text-align: center;
    transition: 0.28s ease;
}

.channel-card:hover,
.device-showcase-item:hover {
    transform: translateY(-4px);
}

.channel-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(24,199,255,0.16), rgba(255,138,31,0.16));
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.channel-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.channel-card p {
    color: var(--muted);
    font-size: 14px;
}

.device-showcase-box {
    padding: 34px 28px;
    border-radius: 26px;
}

.device-showcase-head {
    text-align: center;
    margin-bottom: 24px;
}

.device-showcase-head h3 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.device-showcase-head p {
    color: var(--muted);
}

.device-showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.device-showcase-item {
    padding: 18px 16px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.28s ease;
}

.device-showcase-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,138,31,0.14));
    font-size: 26px;
}

.device-showcase-item strong {
    display: block;
    font-size: 15px;
}

.footer-whatsapp-btn:hover,
.btn-primary:hover,
.btn-accent:hover,
.pricing-btn:hover,
.nav-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.nav-btn {
    background: var(--gradient-accent);
    color: #3f2500 !important;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(255, 138, 31, 0.22);
    transition: 0.28s ease;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #ff982f 0%, #ffd24a 100%);
    color: #3f2500 !important;
    border-color: rgba(255, 197, 47, 0.35);
    box-shadow: 0 14px 30px rgba(255, 138, 31, 0.30);
    transform: translateY(-2px) scale(1.02);
}

.nav-btn:hover .nav-icon {
    background: rgba(63, 37, 0, 0.14);
    color: #3f2500;
}

@media (max-width: 1100px) {
    .channel-grid,
    .device-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .hero {
        padding: 78px 0 56px;
    }

    .hero-content {
        padding: 18px 0 10px;
    }

    .channel-showcase,
    .package-tier-section {
        padding: 24px;
    }

    .channel-showcase-head h2,
    .device-showcase-head h3 {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .logo-media-image {
        width: 48px;
        height: 48px;
    }

    .footer-logo-media-image {
        width: 54px;
        height: 54px;
    }

    .channel-grid,
    .device-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .channel-card,
    .device-showcase-item,
    .package-tier-section {
        padding: 18px 14px;
    }

    .channel-showcase-head p,
    .device-showcase-head p {
        font-size: 15px;
    }
}


/* =========================
   2026 Extra UI refinements
   ========================= */
.hero-home {
    padding: 220px 0 220px;
}

.hero-home .hero-content {
    padding: 38px 0;
}

.hero-btn-abroad {
    background: linear-gradient(135deg, rgba(86, 136, 255, 0.22), rgba(24, 199, 255, 0.18));
    border: 1px solid rgba(100, 181, 255, 0.24);
    color: #e7f8ff;
    box-shadow: 0 14px 34px rgba(36, 125, 255, 0.18);
}

.hero-btn-test {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

.hero-btn-abroad:hover,
.hero-btn-test:hover {
    color: #ffffff;
}

.brand-slider-section {
    position: relative;
    padding: 6px 0 24px;
    overflow: hidden;
}

.brand-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(90deg, rgba(7,13,32,0.84), rgba(18,10,38,0.84), rgba(7,13,32,0.84));
}

.brand-slider-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    padding: 10px 0;
    animation: brandMarquee 32s linear infinite;
}

.brand-slider-wrap:hover .brand-slider-track {
    animation-play-state: paused;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.gradient-red { background: linear-gradient(135deg, #ff4d4d, #ff8a1f); }
.gradient-purple { background: linear-gradient(135deg, #6d4dff, #b052ff); }
.gradient-blue { background: linear-gradient(135deg, #1496ff, #30d8ff); }
.gradient-gold { background: linear-gradient(135deg, #ffb347, #ffd65c); color: #322000; }
.gradient-pink { background: linear-gradient(135deg, #ff4eb5, #ff7b88); }
.gradient-dark { background: linear-gradient(135deg, #1f2433, #3b4259); }
.gradient-gray { background: linear-gradient(135deg, #eef2f7, #bec8d8); color: #1e2435; }
.gradient-cyan { background: linear-gradient(135deg, #11b8c9, #64f1ff); color: #08313a; }
.gradient-orange { background: linear-gradient(135deg, #ff8a1f, #ffd25c); color: #392100; }

@keyframes brandMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.pricing-panels .pricing-btn-standart {
    background: linear-gradient(135deg, #7e8ca8 0%, #d6deed 100%);
    color: #182133;
    border: 1px solid rgba(214, 222, 237, 0.24);
    box-shadow: 0 12px 30px rgba(126, 140, 168, 0.24);
}

.pricing-panels .pricing-btn-premium {
    background: linear-gradient(135deg, #1ea8ff 0%, #64e1ff 100%);
    color: #06263a;
    border: 1px solid rgba(100, 225, 255, 0.22);
    box-shadow: 0 12px 30px rgba(30, 168, 255, 0.24);
}

.pricing-panels .pricing-btn-elite-ai {
    background: linear-gradient(135deg, #ff8a1f 0%, #ffd25c 100%);
    color: #392100;
    border: 1px solid rgba(255, 210, 92, 0.22);
    box-shadow: 0 12px 30px rgba(255, 138, 31, 0.24);
}

.modern-readmore,
.blog-card .modern-readmore {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    margin-top: 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 14px 32px rgba(0,0,0,0.16);
    overflow: hidden;
    transition: 0.28s ease;
}

.modern-readmore::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24,199,255,0.20), rgba(255,138,31,0.18));
    opacity: 0.95;
    z-index: 0;
}

.modern-readmore > *,
.modern-readmore {
    position: relative;
    z-index: 1;
}

.modern-readmore span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    transition: transform 0.28s ease;
}

.modern-readmore:hover {
    transform: translateY(-3px) scale(1.03);
}

.modern-readmore:hover span {
    transform: translateX(3px);
}

@media (max-width: 860px) {
    .hero-home {
        padding: 10px 0 72px;
    }

    .brand-pill {
        min-height: 42px;
        padding: 0 18px;
        font-size: 14px;
    }
}


/* =========================
   2026 Slider polish update
   ========================= */
.brand-slider-section {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.brand-slider-wrap {
    padding: 10px 0 12px;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background:
        radial-gradient(circle at center, rgba(255, 138, 31, 0.10), transparent 28%),
        linear-gradient(90deg, rgba(7,13,32,0.94), rgba(18,10,38,0.92), rgba(7,13,32,0.94));
}

.brand-slider-track {
    gap: 12px;
    padding: 6px 0;
}

.brand-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px 0 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 10px 24px rgba(0,0,0,0.16);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.brand-pill:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 14px 30px rgba(0,0,0,0.18);
    filter: saturate(1.03);
}

.brand-pill-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
    font-size: 13px;
    line-height: 1;
    flex-shrink: 0;
}

.brand-slider-section + .section,
.brand-slider-section + .section.section-alt {
    padding-top: 50px;
    margin-top: 0;
}

@media (max-width: 860px) {
    .brand-slider-wrap {
        padding: 8px 0 10px;
    }

    .brand-pill {
        min-height: 44px;
        padding: 0 16px 0 12px;
        gap: 8px;
    }

    .brand-pill-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .brand-slider-section + .section,
    .brand-slider-section + .section.section-alt {
        padding-top: 10px;
    }
}


/* =========================
   2026 section contrast update
   ========================= */
.channel-showcase-section {
    position: relative;
    background:
        radial-gradient(circle at 14% 20%, rgba(24,199,255,0.08), transparent 20%),
        radial-gradient(circle at 86% 24%, rgba(77,163,255,0.08), transparent 18%),
        linear-gradient(180deg, rgba(9,20,40,0.98), rgba(13,30,58,0.98));
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.channel-showcase-section .channel-showcase {
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.14), transparent 26%),
        radial-gradient(circle at bottom right, rgba(255,138,31,0.10), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.pricing-bottom-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.package-link-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 16px 38px rgba(0,0,0,0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.package-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.22);
}

.package-link-btn-tr {
    background: linear-gradient(135deg, rgba(255,138,31,0.96), rgba(255,197,47,0.92));
    color: #392100;
}

.package-link-btn-global {
    background: linear-gradient(135deg, rgba(24,199,255,0.94), rgba(96,135,255,0.92));
    color: #06243a;
}

.package-link-icon,
.package-link-arrow {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.package-link-arrow {
    margin-left: 2px;
}

.faq-modern-item.faq-tone-1 {
    background:
        radial-gradient(circle at top left, rgba(24,199,255,0.10), transparent 20%),
        linear-gradient(135deg, rgba(10,26,54,0.96), rgba(15,32,58,0.90));
    border-color: rgba(24,199,255,0.18);
}

.faq-modern-item.faq-tone-2 {
    background:
        radial-gradient(circle at top left, rgba(255,138,31,0.12), transparent 20%),
        linear-gradient(135deg, rgba(43,29,18,0.88), rgba(22,30,50,0.92));
    border-color: rgba(255,163,55,0.18);
}

.faq-modern-item.faq-tone-3 {
    background:
        radial-gradient(circle at top left, rgba(124,92,255,0.16), transparent 20%),
        linear-gradient(135deg, rgba(23,20,48,0.92), rgba(14,26,48,0.92));
    border-color: rgba(124,92,255,0.18);
}

.faq-modern-item.faq-tone-4 {
    background:
        radial-gradient(circle at top left, rgba(31,221,143,0.14), transparent 20%),
        linear-gradient(135deg, rgba(11,36,40,0.92), rgba(18,28,46,0.92));
    border-color: rgba(31,221,143,0.18);
}

.faq-tone-1 .faq-modern-number {
    background: linear-gradient(135deg, rgba(24,199,255,0.20), rgba(96,135,255,0.14));
    border-color: rgba(24,199,255,0.20);
}

.faq-tone-2 .faq-modern-number {
    background: linear-gradient(135deg, rgba(255,138,31,0.22), rgba(255,197,47,0.14));
    border-color: rgba(255,163,55,0.20);
}

.faq-tone-3 .faq-modern-number {
    background: linear-gradient(135deg, rgba(124,92,255,0.22), rgba(176,82,255,0.14));
    border-color: rgba(124,92,255,0.20);
}

.faq-tone-4 .faq-modern-number {
    background: linear-gradient(135deg, rgba(31,221,143,0.22), rgba(0,194,255,0.12));
    border-color: rgba(31,221,143,0.20);
}

@media (max-width: 860px) {
    .package-link-btn {
        width: 100%;
        justify-content: center;
    }
}
.payment-field-help {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.58);
}

.payment-field:focus-within .payment-field-help {
    color: rgba(255, 255, 255, 0.78);
}
.agreement-link {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.agreement-link:hover {
    opacity: 0.85;
    filter: brightness(1.15);
}

.agreement-link-contract {
    color: #60a5fa;
}

.agreement-link-refund {
    color: #34d399;
}

.agreement-link-faq {
    color: #fbbf24;
}
.logo .logo-media.logo-media-image {
    width: 96px !important;
    height: 48px !important;
    min-width: 86px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 5px 8px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    box-shadow: 0 10px 24px rgba(24, 199, 255, 0.12) !important;
    flex-shrink: 0 !important;
}

.logo .logo-media.logo-media-image {
    width: 96px !important;
    height: 48px !important;
    min-width: 96px !important;
    border-radius: 14px !important;
    padding: 3px 6px !important;
}