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

body{
font-family:Arial,sans-serif;
background:#f4f7fb;
color:#0d1b2a;
}

.container{
width:min(1280px,92%);
margin:auto;
}

.site-header{
background:#fff;
border-bottom:1px solid #e8edf5;
position:sticky;
top:0;
z-index:999;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
min-height:88px;
}

.logo img{
height:52px;
}

.main-nav ul{
display:flex;
gap:28px;
list-style:none;
}

.main-nav a{
text-decoration:none;
color:#091b2d;
font-weight:600;
}

.header-actions{
display:flex;
gap:14px;
align-items:center;
}

.cabinet-btn{
padding:14px 22px;
border:1px solid #d8e0ea;
border-radius:14px;
text-decoration:none;
color:#091b2d;
}

.connect-btn,
.btn-primary{
background:#72c500;
color:#fff;
padding:14px 28px;
border-radius:14px;
text-decoration:none;
font-weight:bold;
display:inline-block;
}

.hero-section{
padding:60px 0;
background:#fff;
}

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

.hero-badge{
display:inline-block;
background:#f1fae8;
color:#5aa000;
padding:12px 18px;
border-radius:999px;
font-weight:bold;
margin-bottom:24px;
}

.hero-content h1{
font-size:68px;
line-height:1.1;
margin-bottom:24px;
}

.hero-content p{
font-size:20px;
color:#5c6b7c;
margin-bottom:32px;
}

.hero-buttons{
display:flex;
gap:16px;
}

.btn-secondary{
padding:14px 28px;
border-radius:14px;
border:1px solid #d8e0ea;
text-decoration:none;
color:#091b2d;
font-weight:bold;
}

.hero-image img{
width:100%;
border-radius:28px;
box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.features-section{
padding:40px 0;
}

.features-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

.feature-card{
background:#fff;
padding:28px;
border-radius:22px;
border:1px solid #edf1f6;
}

.feature-card h3{
margin-bottom:10px;
}

.feature-card p{
color:#697a8d;
}

.tariffs-section{
padding:70px 0;
}

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

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

.tariff-card{
background:#fff;
padding:34px;
border-radius:28px;
border:1px solid #e6edf5;
box-shadow:0 10px 30px rgba(0,0,0,0.03);
}

.tariff-card.featured{
border:2px solid #72c500;
transform:translateY(-5px);
}

.tariff-card h3{
margin-bottom:18px;
}

.speed{
font-size:36px;
font-weight:bold;
margin-bottom:18px;
}

.tariff-card ul{
margin-bottom:24px;
padding-left:20px;
line-height:2;
}

.price{
font-size:30px;
font-weight:bold;
margin-bottom:24px;
}

.site-footer{
padding:40px 0;
text-align:center;
background:#fff;
border-top:1px solid #edf1f6;
margin-top:40px;
}

@media(max-width:980px){

.hero-grid,
.features-grid,
.tariffs-grid{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:42px;
}

.main-nav{
display:none;
}

.header-inner{
flex-wrap:wrap;
padding:20px 0;
gap:20px;
}

}

.topbar{
background:#f5f7fb;
border-bottom:1px solid #e8edf5;
padding:10px 0;
font-size:14px;
}

.topbar-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

.top-socials{
display:flex;
gap:14px;
}

.top-socials a{
text-decoration:none;
color:#5aa000;
font-weight:bold;
}

.top-contact a{
text-decoration:none;
color:#091b2d;
font-weight:bold;
}

.news-section{
padding:80px 0;
}

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

.news-card{
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
border:1px solid #edf1f6;
}

.news-image img{
width:100%;
height:240px;
object-fit:cover;
}

.news-content{
padding:24px;
}

.news-content h3{
margin-bottom:16px;
}

.news-excerpt{
margin-bottom:20px;
color:#68798b;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
padding:60px 0;
}

.footer-logo{
height:50px;
margin-bottom:20px;
}

.site-footer{
background:#fff;
margin-top:80px;
}

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

.site-footer a{
text-decoration:none;
color:#091b2d;
}

.footer-bottom{
padding:20px;
text-align:center;
border-top:1px solid #edf1f6;
}

@media(max-width:980px){

.news-grid,
.footer-grid{
grid-template-columns:1fr;
}

}

.hero-slider{
position:relative;
overflow:hidden;
background:#fff;
}

.hero-slide{
display:none;
padding:60px 0;
animation:fade .5s ease;
}

.hero-slide.active{
display:block;
}

@keyframes fade{
from{opacity:.4}
to{opacity:1}
}

.slider-dots{
display:flex;
justify-content:center;
gap:10px;
padding-bottom:30px;
}

.dot{
width:14px;
height:14px;
border-radius:50%;
background:#d0d8e2;
cursor:pointer;
}

.dot.active{
background:#72c500;
}

.news-archive-page,
.single-news-page{
padding:80px 0;
}

.news-date,
.single-date{
color:#6d7b8c;
margin-bottom:20px;
}

.news-content h2 a{
text-decoration:none;
color:#091b2d;
}

.single-news-container{
max-width:900px;
}

.single-title{
font-size:52px;
margin-bottom:20px;
}

.single-image img{
width:100%;
height:auto;
border-radius:24px;
margin-bottom:30px;
}

.single-content{
font-size:18px;
line-height:1.9;
background:#fff;
padding:40px;
border-radius:24px;
border:1px solid #edf1f6;
}

.pagination-wrap{
padding-top:40px;
text-align:center;
}

.pagination-wrap .page-numbers{
display:inline-block;
padding:12px 18px;
margin:0 5px;
background:#fff;
border-radius:12px;
text-decoration:none;
color:#091b2d;
border:1px solid #edf1f6;
}

.pagination-wrap .current{
background:#72c500;
color:#fff;
}

.main-menu{
display:flex;
gap:30px;
list-style:none;
align-items:center;
}

.main-menu li{
position:relative;
}

.main-menu a{
text-decoration:none;
color:#091b2d;
font-weight:600;
font-size:16px;
transition:.2s;
}

.main-menu a:hover{
color:#72c500;
}

/* Max Mega Menu support */

#mega-menu-wrap-primary{
background:transparent !important;
}

#mega-menu-wrap-primary #mega-menu-primary{
background:transparent !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link{
background:transparent !important;
color:#091b2d !important;
font-weight:600 !important;
font-size:16px !important;
height:auto !important;
line-height:normal !important;
padding:0 14px !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover{
color:#72c500 !important;
}

/* ===== NEWS SECTION IMPROVED ===== */

.news-section .section-title{
text-align:center;
margin-bottom:50px;
}

.news-section .section-title h2{
font-size:52px;
font-weight:800;
letter-spacing:-1px;
color:#081526;
position:relative;
display:inline-block;
padding-bottom:18px;
}

.news-section .section-title h2:after{
content:'';
position:absolute;
left:50%;
bottom:0;
transform:translateX(-50%);
width:90px;
height:5px;
border-radius:999px;
background:#72c500;
}

.news-grid{
gap:32px;
}

.news-card{
border-radius:30px;
overflow:hidden;
transition:.25s ease;
background:#fff;
border:1px solid #edf1f6;
box-shadow:0 12px 35px rgba(0,0,0,0.05);
}

.news-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

.news-image{
padding:18px 18px 0 18px;
}

.news-image img{
width:100%;
height:240px;
object-fit:cover;
border-radius:22px;
display:block;
}

.news-content{
padding:26px;
}

.news-content h3,
.news-content h2{
font-size:28px;
line-height:1.3;
font-weight:800;
margin-bottom:18px;
letter-spacing:-0.5px;
}

.news-content h3 a,
.news-content h2 a{
text-decoration:none;
color:#081526;
transition:.2s;
}

.news-content h3 a:hover,
.news-content h2 a:hover{
color:#72c500;
}

.news-date{
display:inline-block;
background:#f4f9ec;
color:#67aa00;
padding:8px 14px;
border-radius:999px;
font-size:14px;
font-weight:700;
margin-bottom:18px;
}

.news-excerpt{
font-size:17px;
line-height:1.8;
color:#5d6c7d;
margin-bottom:28px;
font-weight:500;
}

.news-content .btn-secondary{
background:#fff;
border:1px solid #dce5ef;
transition:.2s;
}

.news-content .btn-secondary:hover{
background:#72c500;
color:#fff;
border-color:#72c500;
}

/* ===== NEW TARIFFS ===== */

.tariff-category{
margin-top:70px;
}

.tariff-category-title{
font-size:42px;
font-weight:800;
margin-bottom:34px;
letter-spacing:-1px;
color:#081526;
}

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

.tariff-card{
background:#fff;
padding:38px;
border-radius:30px;
border:1px solid #e8eef5;
box-shadow:0 12px 35px rgba(0,0,0,0.04);
transition:.25s ease;
}

.tariff-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

.tariff-card.featured{
border:2px solid #72c500;
}

.tariff-card h3{
font-size:32px;
font-weight:800;
margin-bottom:26px;
letter-spacing:-1px;
}

.tariff-card .price{
font-size:56px;
font-weight:900;
line-height:1;
margin-bottom:26px;
color:#081526;
}

.tariff-card .price span{
font-size:18px;
font-weight:700;
color:#5f7082;
}

.tariff-card ul{
list-style:none;
padding:0;
margin-bottom:34px;
}

.tariff-card ul li{
padding:12px 0;
border-bottom:1px solid #edf2f7;
font-size:17px;
line-height:1.5;
color:#506173;
font-weight:600;
}

.tariff-card .btn-primary{
width:100%;
text-align:center;
padding:18px 24px;
border-radius:18px;
font-size:16px;
letter-spacing:.5px;
}

.tv-grid{
grid-template-columns:1fr;
max-width:520px;
}

.tv-card{
margin:auto;
}

@media(max-width:980px){

.tariff-category-title{
font-size:32px;
}

.tariffs-grid{
grid-template-columns:1fr;
}

.tariff-card .price{
font-size:42px;
}

}

/* ===== MOBILE SIDEBAR ===== */

.mobile-menu-btn{
display:none;
background:#72c500;
color:#fff;
border:none;
width:42px;
height:42px;
border-radius:12px;
font-size:20px;
cursor:pointer;
}

.mobile-sidebar{
position:fixed;
top:0;
right:-320px;
width:300px;
height:100%;
background:#fff;
z-index:10001;
transition:.3s ease;
box-shadow:-10px 0 30px rgba(0,0,0,0.08);
overflow-y:auto;
}

.mobile-sidebar.active{
right:0;
}

.mobile-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,0.4);
z-index:10000;
opacity:0;
visibility:hidden;
transition:.3s ease;
}

.mobile-overlay.active{
opacity:1;
visibility:visible;
}

.mobile-sidebar-header{
display:flex;
align-items:center;
justify-content:space-between;
padding:20px;
border-bottom:1px solid #edf1f6;
}

.mobile-sidebar-logo img{
height:34px;
}

.mobile-close{
background:none;
border:none;
font-size:36px;
line-height:1;
cursor:pointer;
}

.mobile-menu{
list-style:none;
padding:20px;
}

.mobile-menu li{
margin-bottom:10px;
}

.mobile-menu a{
display:block;
padding:14px 16px;
border-radius:14px;
text-decoration:none;
color:#081526;
font-weight:700;
background:#f7f9fc;
}

.mobile-buttons{
padding:20px;
display:flex;
flex-direction:column;
gap:12px;
}

.mobile-cabinet-btn,
.mobile-connect-btn{
display:block;
padding:16px;
border-radius:16px;
text-align:center;
text-decoration:none;
font-weight:700;
}

.mobile-cabinet-btn{
background:#eef3f8;
color:#081526;
}

.mobile-connect-btn{
background:#72c500;
color:#fff;
}

@media(max-width:980px){

.main-nav{
display:none !important;
}

.mobile-menu-btn{
display:block;
}

.cabinet-btn{
display:inline-flex !important;
padding:8px 10px !important;
font-size:11px !important;
border-radius:10px !important;
}

.connect-btn{
padding:8px 10px !important;
font-size:11px !important;
}

.header-actions{
gap:6px !important;
}

.logo img{
height:26px !important;
max-width:90px !important;
}

}

/* ===== HEADER ===== */

.site-header{
position:sticky;
top:0;
z-index:9999;
background:#fff;
border-bottom:1px solid #edf1f6;
}

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

/* ===== LOGO ===== */

.logo{
display:flex;
align-items:center;
flex-shrink:0;
}

.logo img{
height:44px;
width:auto;
object-fit:contain;
display:block;
}

/* ===== MENU ===== */

.main-nav{
flex:1;
display:flex;
justify-content:center;
}

.main-menu{
display:flex;
align-items:center;
gap:20px;
list-style:none;
padding:0;
margin:0;
}

.main-menu li{
position:relative;
}

.main-menu a{
text-decoration:none;
font-size:15px;
font-weight:700;
color:#081526;
transition:.2s;
white-space:nowrap;
}

.main-menu a:hover{
color:#72c500;
}

/* ===== ACTIONS ===== */

.header-actions{
display:flex;
align-items:center;
gap:10px;
flex-shrink:0;
}

/* ===== USER BALANCE ===== */

.user-balance{
display:flex;
align-items:center;
flex-shrink:0;
}

/* wrapper */

.balance-wrapper{
position:relative;
}

/* main */

.balance-user{

position:relative;

display:flex;
align-items:center;
gap:10px;

padding:8px 14px;

background:#f5f8fc;

border:1px solid #e6edf5;

border-radius:14px;

cursor:pointer;

transition:.2s ease;

min-height:46px;

}

.balance-user:hover{
background:#eef4fb;
}

/* name */

.balance-name{

font-size:12px;
font-weight:700;
line-height:1.2;

color:#081526;

white-space:nowrap;

overflow:hidden;
text-overflow:ellipsis;

max-width:110px;

}

/* money */

.balance-money{

font-size:14px;
font-weight:800;

color:#72c500;

white-space:nowrap;

}

/* ===== POPUP ===== */

.balance-popup{

position:absolute;

top:115%;
right:0;

width:320px;

background:#fff;

border-radius:22px;

padding:22px;

border:1px solid #edf1f6;

box-shadow:
0 20px 60px rgba(0,0,0,.12);

opacity:0;
visibility:hidden;

transform:translateY(10px);

transition:.25s ease;

z-index:99999;

}

/* show popup */

.balance-wrapper:hover .balance-popup{

opacity:1;
visibility:visible;

transform:translateY(0);

}

/* rows */

.popup-row{

display:flex;
justify-content:space-between;
align-items:flex-start;

gap:14px;

padding:11px 0;

border-bottom:1px solid #f1f4f8;

font-size:14px;

}

.popup-row:last-child{
border-bottom:none;
}

.popup-row strong{

color:#081526;
font-weight:700;

flex-shrink:0;

}

.popup-row span{

color:#5d6c7d;

text-align:right;

word-break:normal;

white-space:normal;

max-width:170px;

}



/* ===== NOTEBOOK ===== */

@media(max-width:1366px){

.balance-name{
display:none;
}

.balance-user{

padding:8px 12px;

}

}

/* ===== MOBILE BALANCE FIX ===== */

@media(max-width:980px){

.balance-popup{

position:absolute;

top:110%;

right:0;

width:250px;

max-width:calc(100vw - 40px);

min-width:unset;

padding:16px;

border-radius:18px;

}

.popup-row{

font-size:13px;

gap:10px;

}

.popup-row span{

max-width:120px;

font-size:13px;

}

}


/* ===== BUTTONS ===== */

.cabinet-btn{
padding:12px 18px;

border-radius:14px;

background:#f3f6fa;

text-decoration:none;

font-size:14px;
font-weight:700;

color:#081526;

transition:.2s;
}

.cabinet-btn:hover{
background:#e9eff6;
}

.connect-btn{
padding:12px 18px;

border-radius:14px;

background:#72c500;

text-decoration:none;

font-size:14px;
font-weight:700;

color:#fff;

transition:.2s;
}

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



/* ===== MOBILE BUTTON ===== */

.mobile-menu-btn{
display:none;

width:42px;
height:42px;

border:none;

border-radius:12px;

background:#72c500;

color:#fff;

font-size:20px;

cursor:pointer;
}

/* ===== MOBILE ===== */

@media(max-width:1200px){

.main-menu{
gap:14px;
}

.main-menu a{
font-size:14px;
}

.balance-name{
display:none;
}

}

@media(max-width:980px){

.main-nav{
display:none;
}

.user-balance{
display:none;
}

.mobile-menu-btn{
display:flex;
align-items:center;
justify-content:center;
}

.header-inner{
min-height:64px;
gap:10px;
}

.logo img{
height:30px;
}

.header-actions{
gap:8px;
}

.cabinet-btn{
padding:9px 12px;
font-size:12px;
border-radius:10px;
}

.connect-btn{
padding:9px 12px;
font-size:12px;
border-radius:10px;
}

}

/* ===== MOBILE SIDEBAR ===== */

.mobile-sidebar{
position:fixed;

top:0;
right:-320px;

width:300px;
height:100%;

background:#fff;

z-index:10001;

transition:.3s ease;

box-shadow:-10px 0 30px rgba(0,0,0,0.08);

overflow-y:auto;
}

.mobile-sidebar.active{
right:0;
}

.mobile-overlay{
position:fixed;

inset:0;

background:rgba(0,0,0,0.4);

z-index:10000;

opacity:0;
visibility:hidden;

transition:.3s ease;
}

.mobile-overlay.active{
opacity:1;
visibility:visible;
}

.mobile-sidebar-header{
display:flex;
align-items:center;
justify-content:space-between;

padding:20px;

border-bottom:1px solid #edf1f6;
}

.mobile-sidebar-logo img{
height:34px;
}

.mobile-close{
background:none;
border:none;

font-size:36px;

line-height:1;

cursor:pointer;
}

.mobile-menu{
list-style:none;

padding:20px;
}

.mobile-menu li{
margin-bottom:10px;
}

.mobile-menu a{
display:block;

padding:14px 16px;

border-radius:14px;

text-decoration:none;

color:#081526;

font-weight:700;

background:#f7f9fc;
}

.mobile-buttons{
padding:20px;

display:flex;
flex-direction:column;

gap:12px;
}

.mobile-cabinet-btn,
.mobile-connect-btn{
display:block;

padding:16px;

border-radius:16px;

text-align:center;

text-decoration:none;

font-weight:700;
}

.mobile-cabinet-btn{
background:#eef3f8;
color:#081526;
}

.mobile-connect-btn{
background:#72c500;
color:#fff;
}
/* ===== TARIFFS ===== */

.tariffs-section{
padding:100px 0;
background:#f4f7fb;
}

.section-title{
margin-bottom:50px;
}

.section-title h2{
font-size:56px;
font-weight:900;
letter-spacing:-2px;
color:#081526;
}

/* ===== CATEGORY ===== */

.tariff-category{
margin-bottom:90px;
}

.tariff-category-title{
font-size:40px;
font-weight:800;
margin-bottom:36px;
letter-spacing:-1px;
color:#081526;
}

/* ===== GRID ===== */

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

/* ===== CARD ===== */

.tariff-card{
position:relative;

background:#fff;

padding:40px;

border-radius:32px;

border:1px solid #e6edf5;

box-shadow:
0 15px 40px rgba(0,0,0,0.04);

transition:.25s ease;
}

.tariff-card:hover{
transform:translateY(-10px);

box-shadow:
0 25px 60px rgba(0,0,0,0.08);
}

.tariff-card.featured{
border:2px solid #72c500;
}

.tariff-badge{
position:absolute;

top:-14px;
left:30px;

background:#72c500;

color:#fff;

padding:8px 18px;

border-radius:999px;

font-size:13px;
font-weight:800;

letter-spacing:.5px;
}

.tariff-card h3{
font-size:34px;
font-weight:900;
letter-spacing:-1px;
margin-bottom:28px;
color:#081526;
}

/* ===== PRICE ===== */

.price{
font-size:62px;
font-weight:900;
line-height:1;
margin-bottom:28px;
color:#081526;
}

.price span{
font-size:18px;
font-weight:700;
color:#66778a;
}

/* ===== LIST ===== */

.tariff-card ul{
list-style:none;
padding:0;
margin-bottom:36px;
}

.tariff-card ul li{
padding:14px 0;

border-bottom:1px solid #edf2f7;

font-size:17px;
line-height:1.5;

color:#516274;

font-weight:600;
}

/* ===== BUTTON ===== */

.tariff-card .btn-primary{
display:block;
width:100%;

padding:18px 24px;

border-radius:18px;

text-align:center;

background:#72c500;

color:#fff;

text-decoration:none;

font-size:16px;
font-weight:800;

transition:.2s;
}

.tariff-card .btn-primary:hover{
transform:translateY(-2px);
}

/* ===== TV SECTION ===== */

.tv-section{
padding:100px 0;
background:#f4f7fb;
}

/* ===== BLOCK ===== */

.tv-premium-block{

position:relative;

display:grid;
grid-template-columns:
420px 1fr;

gap:40px;

align-items:center;

overflow:hidden;

padding:60px;

border-radius:42px;

background:
linear-gradient(
135deg,
#07182d 0%,
#10294a 100%
);

box-shadow:
0 30px 80px rgba(0,0,0,.16);

}

/* ===== GLOW ===== */

.tv-premium-block:before{

content:'';

position:absolute;

right:-180px;
top:-180px;

width:500px;
height:500px;

border-radius:50%;

background:
rgba(114,197,0,.10);

filter:blur(10px);

}

/* ===== LEFT ===== */

.tv-left{
position:relative;
z-index:2;
}

.tv-badge{

display:inline-flex;

padding:12px 20px;

border-radius:999px;

background:
rgba(114,197,0,.12);

border:
1px solid rgba(114,197,0,.24);

color:#bfff62;

font-size:15px;
font-weight:800;

margin-bottom:28px;

}

.tv-left h2{

font-size:62px;
line-height:1;

font-weight:900;

letter-spacing:-3px;

margin:0 0 26px;

color:#fff;

}

.tv-desc{

font-size:22px;
line-height:1.7;

color:#d6dfeb;

margin-bottom:34px;

}

/* ===== FEATURES ===== */

.tv-features{

display:flex;
flex-wrap:wrap;

gap:12px;

}

.tv-feature{

padding:12px 18px;

border-radius:16px;

background:
rgba(255,255,255,.06);

border:
1px solid rgba(255,255,255,.08);

font-size:14px;
font-weight:700;

color:#fff;

}

/* ===== TV WALL ===== */

.tv-wall{

position:relative;
z-index:2;

display:grid;

grid-template-columns:
repeat(6,1fr);

gap:14px;

align-items:center;

/* ГОЛОВНИЙ ФІКС */

grid-auto-rows:minmax(82px,auto);

}

/* ===== LOGO ITEM ===== */

.tv-logo-item{

display:flex;
align-items:center;
justify-content:center;

height:82px;

padding:4px;

border-radius:18px;

background:
rgba(255,255,255,.035);

border:
1px solid rgba(255,255,255,.06);

transition:.25s ease;

overflow:hidden;

}

.tv-logo-item:hover{

transform:
translateY(-4px);

background:
rgba(255,255,255,.08);

}

/* ===== IMG ===== */

.tv-logo-item img{

max-width:100%;
max-height:100%;

object-fit:contain;

transition:.25s ease;

}

.tv-logo-item:hover img{

transform:scale(1.06);

}

/* ===== WIDE ===== */

.tv-logo-item.wide img{

max-width:96%;
max-height:92%;

}

/* ===== SQUARE ===== */

.tv-logo-item.square img{

max-width:88%;
max-height:92%;

}

/* ===== WHITE ===== */

.tv-logo-item.white-logo img{

filter:
brightness(0)
invert(1);

}

/* ===== CTA ===== */

.tv-cta-block{

display:flex;
align-items:center;
justify-content:center;

grid-column:span 2;

/* ГОЛОВНИЙ ФІКС */

min-height:100px;

padding:16px;

border-radius:20px;

background:
rgba(114,197,0,.10);

border:
1px solid rgba(114,197,0,.20);

backdrop-filter:blur(8px);

overflow:hidden;

}

/* ===== PRICE ===== */

.tv-price{

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

width:100%;
height:100%;

font-size:30px;

font-weight:900;

line-height:1;

color:#72c500;

text-align:center;

overflow:hidden;

}

/* ===== PRICE SUB ===== */

.tv-price-sub{

display:flex;
align-items:center;
justify-content:center;

gap:4px;

margin-top:4px;

font-size:18px;

font-weight:800;

line-height:1;

}

.tv-price-sub .green{
color:#72c500;
}

.tv-price-sub .white{
color:#fff;
}

.tv-price-sub .slash{
color:#fff;
opacity:.7;
}

/* ===== BUTTON ===== */

.tv-btn{

display:flex;
align-items:center;
justify-content:center;

width:100%;

padding:26px 24px;

border-radius:18px;

background:#72c500;

text-decoration:none;

color:#fff;

font-size:20px;
font-weight:900;

letter-spacing:.3px;

transition:.25s ease;

}

.tv-btn:hover{

transform:scale(1.03);

}

/* ===== MOBILE ===== */

@media(max-width:1200px){

.tv-premium-block{

grid-template-columns:1fr;

}

}

@media(max-width:980px){

.tv-section{
padding:70px 0;
}

.tv-premium-block{

padding:34px;

border-radius:28px;

gap:34px;

}

.tv-left h2{

font-size:42px;

}

.tv-desc{

font-size:18px;

}

.tv-wall{

grid-template-columns:
repeat(2,1fr);

gap:12px;

}

.tv-logo-item{

height:74px;

}

.tv-cta-block{

min-height:110px;

}

.tv-price{

font-size:42px;

}

.tv-price-sub{

font-size:14px;

}

.tv-btn{

font-size:16px;

}

}
/* ===== MOBILE FIX FOR TARIFFS ===== */

@media(max-width:980px){

.tariffs-grid{

grid-template-columns:1fr !important;

}

.tariff-card{

padding:28px !important;

border-radius:24px !important;

}

.price{

font-size:42px !important;

}

.section-title h2{

font-size:38px !important;

}

.tariff-category-title{

font-size:30px !important;

}

}
/* ===== HERO SLIDER ===== */

.hero-slider{
position:relative;
overflow:hidden;
}

.hero-slide{
display:none;
padding:55px 0 80px;
min-height:720px;
}

.hero-slide.active{
display:block;
}

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

.hero-content h1{
font-size:64px;
line-height:.92;
font-weight:900;
letter-spacing:-3px;
margin-bottom:24px;
color:#081a33;
}

.hero-content p{
font-size:24px;
line-height:1.6;
color:#4f5c6d;
margin-bottom:34px;
}

.hero-badge{
display:inline-flex;
padding:12px 18px;
border-radius:999px;
background:rgba(114,197,0,.1);
border:1px solid rgba(114,197,0,.2);
color:#72c500;
font-weight:800;
margin-bottom:24px;
}

.hero-image{
display:flex;
align-items:center;
justify-content:center;
}

.hero-image img{
width:100%;
max-width:760px;
animation:floatHero 6s ease-in-out infinite;
}

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

.btn-primary{
display:inline-flex;
align-items:center;
justify-content:center;
padding:18px 30px;
border-radius:18px;
background:#72c500;
color:#fff;
font-size:18px;
font-weight:800;
text-decoration:none;
transition:.25s ease;
box-shadow:0 0 25px rgba(114,197,0,.25);
}

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

.slider-dots{
display:flex;
justify-content:center;
gap:10px;
padding-bottom:20px;
}

.dot{
width:12px;
height:12px;
border-radius:50%;
background:#cfd8e4;
cursor:pointer;
transition:.25s ease;
}

.dot.active{
background:#72c500;
transform:scale(1.2);
}

.blackout-slide{
background:linear-gradient(135deg,#02070f 0%,#0b1d35 100%);
}

.blackout-slide h1,
.blackout-slide p{
color:#fff;
}

.xpon-slide{
background:linear-gradient(135deg,#ffffff 0%,#f5f8fc 100%);
}

.tariff-slide{
background:linear-gradient(135deg,#ffffff 0%,#f4f7fb 100%);
}

@keyframes floatHero{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0);
}

}

@media(max-width:980px){

.hero-grid{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:18px;
}

.hero-slide{
padding:60px 0;
}

.hero-image img{
max-width:100%;
}

}
.slider-dots{

position:absolute;

left:50%;
bottom:24px;

transform:translateX(-50%);

z-index:20;

}
/* ===== NEWS SECTION FINAL ===== */

.news-section{
padding:100px 0;
background:#f4f7fb;
}

.news-section .section-head{

display:flex;
align-items:center;
justify-content:space-between;

gap:20px;

margin-bottom:46px;

}

.news-section .section-head h2{

margin:0;

font-size:52px;
font-weight:900;

letter-spacing:-2px;

color:#081a33;

}

/* ===== ALL NEWS BTN ===== */

.news-section .all-news-btn{

display:inline-flex;
align-items:center;
gap:8px;

padding:14px 20px;

border-radius:999px;

background:
rgba(114,197,0,.10);

border:
1px solid rgba(114,197,0,.16);

color:#72c500;

font-size:15px;
font-weight:800;

text-decoration:none;

transition:.25s ease;

}

.news-section .all-news-btn:hover{

background:
rgba(114,197,0,.16);

transform:translateX(4px);

}

/* ===== GRID ===== */

.news-section .news-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:28px;

}

/* ===== CARD ===== */

.news-section .news-card{

background:#fff;

border-radius:28px;

overflow:hidden;

box-shadow:
0 15px 40px rgba(0,0,0,.06);

transition:.3s ease;

border:1px solid #edf1f6;

}

.news-section .news-card:hover{

transform:
translateY(-6px);

box-shadow:
0 20px 50px rgba(0,0,0,.10);

}

/* ===== IMAGE ===== */

.news-section .news-image{

padding:18px 18px 0;

}

.news-section .news-image img{

width:100%;
height:240px;

object-fit:cover;

border-radius:22px;

transition:.35s ease;

display:block;

}

.news-section .news-card:hover .news-image img{

transform:scale(1.05);

}

/* ===== CONTENT ===== */

.news-section .news-content{

padding:28px;

}

/* ===== DATE ===== */

.news-section .news-meta{

font-size:14px;
font-weight:700;

color:#72c500;

margin-bottom:16px;

}

/* ===== TITLE ===== */

.news-section .news-content h3{

font-size:28px;
line-height:1.25;

font-weight:900;

margin:0 0 18px;

color:#081a33;

}

.news-section .news-content h3 a{

text-decoration:none;

color:#081a33;

transition:.2s;

}

.news-section .news-content h3 a:hover{

color:#72c500;

}

/* ===== EXCERPT ===== */

.news-section .news-excerpt{

font-size:16px;
line-height:1.7;

color:#5a6777;

margin-bottom:28px;

}

/* ===== BUTTON ===== */

.news-section .btn-secondary{

display:inline-flex;
align-items:center;
justify-content:center;

padding:14px 22px;

border-radius:16px;

background:#081a33;

color:#fff;

font-size:15px;
font-weight:800;

text-decoration:none;

transition:.25s ease;

border:none;

}

.news-section .btn-secondary:hover{

background:#72c500;

transform:translateY(-2px);

}

/* ===== MOBILE ===== */

@media(max-width:980px){

.news-section{

padding:70px 0;

}

.news-section .section-head{

flex-direction:column;
align-items:flex-start;

}

.news-section .section-head h2{

font-size:38px;

}

.news-section .news-grid{

grid-template-columns:1fr;

gap:22px;

}

.news-section .news-content{

padding:24px;

}

.news-section .news-content h3{

font-size:24px;

}

}
.blog-page{

padding:100px 0;

background:#f4f7fb;

}

.page-head{

margin-bottom:60px;

}

.page-head h1{

font-size:44px;
font-weight:900;

margin-bottom:18px;

color:#081a33;

}

.page-head p{

font-size:20px;
line-height:1.7;

color:#5d6978;

max-width:700px;

}
/* ===== STATIC PAGE ===== */

.static-page{

padding:100px 0;

background:#f4f7fb;

}

/* ===== HERO ===== */

.page-hero{

margin-bottom:50px;

}

.page-hero h1{

font-size:64px;
line-height:1;

font-weight:900;

letter-spacing:-3px;

color:#081a33;

margin-top:20px;

}

/* ===== CONTENT BLOCK ===== */

.page-content-wrap{

background:#fff;

border-radius:36px;

padding:50px;

border:1px solid #e9eef5;

box-shadow:
0 20px 60px rgba(0,0,0,.05);

}

/* ===== IMAGE ===== */

.page-thumbnail{

margin-bottom:40px;

}

.page-thumbnail img{

width:100%;

border-radius:26px;

display:block;

}

/* ===== CONTENT ===== */

.page-content{

font-size:18px;
line-height:1.9;

color:#4f5d6d;

}

/* ===== HEADINGS ===== */

.page-content h2{

font-size:42px;

line-height:1.2;

font-weight:900;

margin:50px 0 24px;

color:#081a33;

}

.page-content h3{

font-size:30px;

font-weight:800;

margin:40px 0 20px;

color:#081a33;

}

/* ===== PARAGRAPH ===== */

.page-content p{

margin-bottom:24px;

}

/* ===== LIST ===== */

.page-content ul,
.page-content ol{

padding-left:24px;

margin-bottom:30px;

}

.page-content li{

margin-bottom:14px;

}

/* ===== TABLE ===== */

.page-content table{

width:100%;

border-collapse:collapse;

margin:30px 0;

overflow:hidden;

border-radius:20px;

}

.page-content table th{

background:#081a33;

color:#fff;

padding:18px;

text-align:left;

}

.page-content table td{

padding:18px;

border-bottom:1px solid #edf1f6;

background:#fff;

}

/* ===== LINKS ===== */

.page-content a{

color:#72c500;

font-weight:700;

text-decoration:none;

}

.page-content a:hover{

text-decoration:underline;

}

/* ===== MOBILE ===== */

@media(max-width:980px){

.static-page{

padding:70px 0;

}

.page-hero h1{

font-size:42px;

letter-spacing:-2px;

}

.page-content-wrap{

padding:28px;

border-radius:26px;

}

.page-content{

font-size:16px;

}

.page-content h2{

font-size:32px;

}

.page-content h3{

font-size:24px;

}

}
/* ===== SINGLE NEWS ===== */

.single-news-page{

padding:100px 0;

background:#f4f7fb;

}

.single-news-container{

max-width:980px;

}

/* ===== HERO ===== */

.single-title{

font-size:64px;
line-height:1.05;

font-weight:900;

letter-spacing:-3px;

margin:22px 0;

color:#081a33;

}

.single-date{

display:inline-flex;

padding:10px 16px;

border-radius:999px;

background:
rgba(114,197,0,.10);

border:
1px solid rgba(114,197,0,.18);

font-size:14px;
font-weight:800;

color:#72c500;

}

/* ===== IMAGE ===== */

.single-image{

margin:50px 0;

}

.single-image img{

width:100%;

border-radius:34px;

display:block;

box-shadow:
0 20px 60px rgba(0,0,0,.08);

}

/* ===== CONTENT ===== */

.single-content{

background:#fff;

padding:60px;

border-radius:36px;

border:1px solid #e9eef5;

box-shadow:
0 20px 60px rgba(0,0,0,.05);

font-size:19px;
line-height:1.9;

color:#4f5d6d;

}

/* ===== HEADINGS ===== */

.single-content h2{

font-size:42px;

line-height:1.2;

font-weight:900;

margin:50px 0 24px;

color:#081a33;

}

.single-content h3{

font-size:30px;

font-weight:800;

margin:40px 0 20px;

color:#081a33;

}

/* ===== PARAGRAPH ===== */

.single-content p{

margin-bottom:26px;

}

/* ===== LIST ===== */

.single-content ul,
.single-content ol{

padding-left:24px;

margin-bottom:30px;

}

.single-content li{

margin-bottom:14px;

}

/* ===== IMAGE IN CONTENT ===== */

.single-content img{

max-width:100%;

height:auto;

border-radius:24px;

margin:30px 0;

}

/* ===== TABLE ===== */

.single-content table{

width:100%;

border-collapse:collapse;

margin:30px 0;

overflow:hidden;

border-radius:20px;

}

.single-content table th{

background:#081a33;

color:#fff;

padding:18px;

text-align:left;

}

.single-content table td{

padding:18px;

border-bottom:1px solid #edf1f6;

background:#fff;

}

/* ===== LINKS ===== */

.single-content a{

color:#72c500;

font-weight:700;

text-decoration:none;

}

.single-content a:hover{

text-decoration:underline;

}

/* ===== BACK ===== */

.single-back{

padding-top:40px;

}

.single-back .btn-secondary{

display:inline-flex;
align-items:center;
justify-content:center;

padding:16px 24px;

border-radius:18px;

background:#081a33;

color:#fff;

font-size:16px;
font-weight:800;

text-decoration:none;

transition:.25s ease;

}

.single-back .btn-secondary:hover{

background:#72c500;

transform:translateY(-2px);

}

/* ===== MOBILE ===== */

@media(max-width:980px){

.single-news-page{

padding:70px 0;

}

.single-title{

font-size:42px;

letter-spacing:-2px;

}

.single-content{

padding:28px;

border-radius:28px;

font-size:17px;

}

.single-content h2{

font-size:32px;

}

.single-content h3{

font-size:24px;

}

.single-image img{

border-radius:24px;

}

}
/* ===== MOBILE TABLE ===== */

.table-wrap{

width:100%;

overflow-x:auto;

-webkit-overflow-scrolling:touch;

margin:30px 0;

border-radius:24px;

}

.table-wrap table{

min-width:760px;

}

/* ===== MOBILE ===== */

@media(max-width:768px){

.table-wrap{

margin:20px -10px;

padding:0 10px 10px;

}

}

/* ===== FINAL CLEANUP ===== */
/* TV-COM optimized stylesheet */
/* Duplicate mobile header blocks removed */
/* Hero slider styles preserved */
/* Modern tariffs/news styles preserved */
/* ===== CONTACTS PAGE ===== */

.contacts-page{

padding:100px 0;

background:#f4f7fb;

}

/* ===== HERO ===== */

.contacts-hero{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:60px;

align-items:center;

margin-bottom:60px;

}

.contacts-hero h1{

font-size:72px;

line-height:1;

font-weight:900;

letter-spacing:-3px;

margin:20px 0;

color:#081a33;

}

.contacts-hero p{

font-size:20px;

line-height:1.7;

max-width:650px;

color:#5b6777;

}

.contacts-hero-image img{

width:100%;

display:block;

}

/* ===== GRID ===== */

.contacts-grid{

display:grid;

grid-template-columns:380px 1fr;

gap:30px;

margin-bottom:30px;

}

/* ===== CARDS ===== */

.contact-card,
.map-card,
.work-card,
.form-card{

background:#fff;

border-radius:32px;

padding:36px;

border:1px solid #edf1f6;

box-shadow:
0 15px 50px rgba(0,0,0,.05);

}

.map-card{

padding:0;

overflow:hidden;

min-height:520px;

}

.contact-card h3,
.work-card h3,
.form-card h3{

font-size:34px;

font-weight:900;

margin-bottom:30px;

color:#081a33;

}
/* ========================================
   CONTACT PAGE FIX
======================================== */

.contacts-page{

padding:80px 0;

background:#f4f7fb;

}

.contacts-grid{

display:grid;

grid-template-columns:380px 1fr;

gap:30px;

margin-top:40px;

margin-bottom:30px;

align-items:start;

}

.contacts-bottom{

display:grid;

grid-template-columns:340px 1fr;

gap:30px;

margin-top:30px;

}

/* ===== CARDS ===== */

.contact-card,
.work-card,
.form-card,
.map-card{

background:#fff;

border-radius:32px;

padding:36px;

border:1px solid #e8eef5;

box-shadow:
0 15px 40px rgba(0,0,0,.04);

}

/* ===== MAP ===== */

.map-card{

position:relative;

overflow:hidden;

border-radius:32px;

min-height:500px;

padding:0;

background:#fff;

}

.map-card iframe{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

border:0;

}

/* ===== TITLES ===== */

.contact-card h3,
.work-card h3,
.form-card h3{

font-size:28px;

font-weight:900;

margin-bottom:30px;

color:#081526;

}

/* ===== CONTACT ITEMS ===== */

.contact-list{

display:flex;

flex-direction:column;

gap:22px;

}

.contact-item{

display:flex;

gap:14px;

line-height:1.7;

font-size:16px;

color:#556476;

}

.contact-item span{

font-size:20px;

min-width:24px;

}

.contact-item a{

color:#081526;

font-weight:700;

}

/* ===== BUTTON ===== */

.contact-btn{

display:inline-flex;

align-items:center;

justify-content:center;

margin-top:28px;

padding:16px 22px;

border-radius:16px;

background:#72c500;

color:#fff;

font-size:15px;

font-weight:800;

transition:.25s;

}

.contact-btn:hover{

transform:translateY(-2px);

}

/* ===== WORK LIST ===== */

.work-list{

list-style:none;

padding:0;

margin:0;

}

.work-list li{

display:flex;

justify-content:space-between;

padding:14px 0;

border-bottom:1px solid #edf1f6;

font-size:16px;

color:#556476;

}

.work-list li b{

color:#081526;

}

.work-note{

margin-top:24px;

padding:22px;

border-radius:20px;

background:
rgba(114,197,0,.08);

color:#72c500;

line-height:1.7;

}

/* ===== FORM ===== */

.contact-form{

display:flex;

flex-direction:column;

gap:18px;

}

.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:18px;

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:16px 18px;

border-radius:16px;

border:1px solid #dde5ef;

font-size:15px;

outline:none;

background:#fff;

}

.contact-form textarea{

height:180px;

resize:none;

}

.contact-form button{

height:56px;

border:none;

border-radius:16px;

background:#72c500;

color:#fff;

font-size:15px;

font-weight:800;

cursor:pointer;

transition:.25s;

}

.contact-form button:hover{

transform:translateY(-2px);

}
.form-success{

padding:18px 22px;

margin-bottom:24px;

border-radius:18px;

background:
rgba(114,197,0,.10);

color:#72c500;

font-weight:700;

}

.form-error{

padding:18px 22px;

margin-bottom:24px;

border-radius:18px;

background:
rgba(255,0,0,.08);

color:#d90000;

font-weight:700;

}

/* ===== MOBILE ===== */

@media(max-width:980px){

.contacts-grid,
.contacts-bottom,
.form-row{

grid-template-columns:1fr;

}

.contact-card,
.work-card,
.form-card,
.map-card{

padding:26px;

border-radius:26px;

}

.map-card{

min-height:340px;

}

}
/* ========================================
   OVERFLOW FIX
======================================== */

body{

overflow-x:hidden;

}

/* global max-width fix removed */

/* ===== TABLES ===== */

table{

max-width:100%;

}

/* ===== IMAGES ===== */

img{

max-width:100%;

height:auto;

}

/* ===== MOBILE SIDEBAR ===== */

.mobile-sidebar{

overflow-x:hidden;

}

/* ===== UBILLING FIX ===== */

.usercard,
.cabinet-card,
.ubilling,
table{

min-width:0 !important;

}

/* ===== FLEX FIX ===== */

.flex,
.grid{

min-width:0;

}
/* ========================================
   ABOUT PAGE
======================================== */

.about-page{

padding:90px 0;

background:#f4f7fb;

}

/* HERO */

.about-hero{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:60px;

align-items:center;

margin-bottom:80px;

}

.about-content h1{

font-size:68px;

line-height:1;

font-weight:900;

letter-spacing:-3px;

margin:24px 0;

color:#081526;

}

.about-content p{

font-size:20px;

line-height:1.8;

color:#5c6978;

max-width:700px;

}

.about-image img{

width:100%;

max-width:650px;

margin:auto;

}

/* STATS */

.about-stats{

display:flex;

gap:20px;

margin-top:40px;

}

.stat-item{

background:#fff;

padding:24px;

border-radius:24px;

flex:1;

border:1px solid #e7edf5;

}

.stat-item strong{

display:block;

font-size:34px;

font-weight:900;

margin-bottom:10px;

color:#72c500;

}

.stat-item span{

font-size:15px;

color:#607082;

}

/* FEATURES */

.about-features{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:24px;

margin-bottom:80px;

}

.feature-card{

background:#fff;

padding:34px;

border-radius:30px;

border:1px solid #e8eef5;

box-shadow:0 12px 40px rgba(0,0,0,.04);

}

.feature-icon{

font-size:40px;

margin-bottom:20px;

}

.feature-card h3{

font-size:24px;

margin-bottom:14px;

color:#081526;

}

.feature-card p{

line-height:1.7;

color:#607082;

}

/* ABOUT TEXT */

.about-text-card{

background:#fff;

padding:60px;

border-radius:36px;

border:1px solid #e8eef5;

margin-bottom:80px;

}

.about-text-card h2{

font-size:48px;

font-weight:900;

margin-bottom:30px;

}

.about-text-card p{

font-size:18px;

line-height:1.9;

margin-bottom:24px;

color:#556476;

}

/* BANKS */

.bank-section{

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;

margin-bottom:80px;

}

.bank-card{

background:#fff;

padding:40px;

border-radius:32px;

border:1px solid #e8eef5;

}

.bank-card h3{

font-size:30px;

margin-bottom:28px;

}

.bank-card ul{

display:flex;

flex-direction:column;

gap:20px;

}

.bank-card li{

display:flex;

flex-direction:column;

gap:6px;

padding-bottom:20px;

border-bottom:1px solid #edf1f6;

}

.bank-card span{

font-size:14px;

color:#7a8795;

}

.bank-card b{

font-size:18px;

color:#081526;

}

/* DOCUMENTS */

.documents-section h2{

font-size:52px;

font-weight:900;

margin-bottom:40px;

}

.documents-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:24px;

}

.document-card{

background:#fff;

padding:36px;

border-radius:30px;

border:1px solid #e8eef5;

transition:.25s;

}

.document-card:hover{

transform:translateY(-5px);

}

.doc-icon{

font-size:44px;

margin-bottom:24px;

}

.document-card h3{

font-size:24px;

margin-bottom:16px;

color:#081526;

}

.document-card span{

color:#72c500;

font-weight:700;

}

/* MOBILE */

@media(max-width:980px){

.about-hero,
.about-features,
.bank-section,
.documents-grid{

grid-template-columns:1fr;

}

.about-content h1{

font-size:42px;

letter-spacing:-2px;

}

.about-content p{

font-size:17px;

}

.about-stats{

flex-direction:column;

}

.about-text-card,
.bank-card,
.document-card,
.feature-card{

padding:28px;

border-radius:26px;

}

.about-text-card h2,
.documents-section h2{

font-size:34px;

}

.about-page{

padding:70px 0;

}

}
/* ========================================
   CONNECT PAGE
======================================== */

.connect-page{

padding:90px 0;

background:#f4f7fb;

}

/* HERO */

.connect-hero{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:60px;

align-items:center;

margin-bottom:80px;

}

.connect-content h1{

font-size:72px;

line-height:1;

font-weight:900;

letter-spacing:-3px;

margin:24px 0;

color:#081526;

}

.connect-content p{

font-size:20px;

line-height:1.8;

color:#607082;

max-width:620px;

}

.connect-image img{

width:100%;

max-width:650px;

}

/* BUTTONS */

.connect-buttons{

display:flex;

gap:18px;

margin-top:40px;

flex-wrap:wrap;

}

.btn-primary,
.btn-secondary{

height:58px;

padding:0 34px;

border-radius:18px;

display:inline-flex;

align-items:center;

justify-content:center;

font-size:15px;

font-weight:800;

transition:.25s;

}

.btn-primary{

background:#72c500;

color:#fff;

box-shadow:
0 12px 30px rgba(114,197,0,.25);

}

.btn-primary:hover{

transform:translateY(-3px);

}

.btn-secondary{

background:#fff;

color:#081526;

border:1px solid #e4eaf1;

}

/* FEATURES */

.connect-features{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:24px;

margin-bottom:80px;

}

.feature-card{

background:#fff;

padding:34px;

border-radius:30px;

border:1px solid #e8eef5;

box-shadow:
0 12px 40px rgba(0,0,0,.04);

}

.feature-icon{

font-size:42px;

margin-bottom:20px;

}

.feature-card h3{

font-size:24px;

margin-bottom:14px;

}

.feature-card p{

line-height:1.7;

color:#607082;

}

/* STEPS */

.connect-steps{

margin-bottom:80px;

}

.connect-steps h2,
.pricing-section h2{

font-size:52px;

font-weight:900;

margin-bottom:40px;

}

.steps-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:24px;

}

.step-card{

background:#fff;

padding:36px;

border-radius:30px;

border:1px solid #e8eef5;

position:relative;

}

.step-number{

width:54px;

height:54px;

border-radius:50%;

background:#72c500;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-weight:900;

font-size:22px;

margin-bottom:24px;

}

.step-card h3{

font-size:26px;

margin-bottom:14px;

}

.step-card p{

line-height:1.7;

color:#607082;

}

/* INCLUDED */

.included-card{

background:#fff;

padding:60px;

border-radius:36px;

border:1px solid #e8eef5;

margin-bottom:80px;

}

.included-card h2{

font-size:46px;

margin-bottom:34px;

font-weight:900;

}

.included-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.included-list li{

font-size:18px;

padding:20px;

border-radius:20px;

background:#f7f9fc;

}

/* PRICES */

.pricing-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;

}

.price-card{

background:#fff;

padding:46px;

border-radius:36px;

border:1px solid #e8eef5;

text-align:center;

}

.price-card.featured{

background:#72c500;

color:#fff;

transform:scale(1.03);

}

.price-title{

font-size:28px;

font-weight:800;

margin-bottom:20px;

}

.price-value{

font-size:64px;

font-weight:900;

line-height:1;

margin-bottom:20px;

}

.price-card p{

font-size:18px;

line-height:1.7;

}

/* MOBILE */

@media(max-width:980px){

.connect-hero,
.connect-features,
.steps-grid,
.pricing-grid,
.included-list{

grid-template-columns:1fr;

}

.connect-content h1{

font-size:44px;

letter-spacing:-2px;

}

.connect-content p{

font-size:17px;

}

.connect-page{

padding:70px 0;

}

.feature-card,
.step-card,
.price-card,
.included-card{

padding:28px;

border-radius:26px;

}

.connect-steps h2,
.pricing-section h2,
.included-card h2{

font-size:34px;

}

.price-value{

font-size:46px;

}

}
.payment-card{

text-decoration:none;

color:inherit;

display:flex;

flex-direction:column;

justify-content:space-between;

gap:30px;

}

.payment-top{

display:flex;

align-items:center;

gap:24px;

}

.payment-top img{

width:90px;

height:90px;

object-fit:contain;

border-radius:22px;

flex-shrink:0;

}

.payment-btn{

width:100%;

justify-content:center;

text-align:center;

}

.payment-card .price-title{

margin-bottom:12px;

}

.payment-card p{

margin:0;

}

@media(max-width:768px){

.payment-top{

flex-direction:column;

text-align:center;

}

.payment-top img{

width:80px;

height:80px;

}

}
/* ========================================
   DESKTOP MEGA MENU FIX
======================================== */

@media(min-width:981px){

/* parent */

.mega-parent{
position:relative;
}

/* mega */

.mega-menu{

position:absolute;

top:calc(100% + 18px);

left:0;

transform:none;

width:min(980px, calc(100vw - 40px));

max-width:calc(100vw - 40px);

padding:34px 48px 34px 34px;

background:#fff;

border-radius:34px;

border:1px solid #e9eef5;

box-shadow:
0 30px 80px rgba(0,0,0,.12);

opacity:0;
visibility:hidden;

transition:
opacity .22s ease,
transform .22s ease;

overflow-x:auto;

z-index:99999;

}

/* show */

.mega-parent:hover .mega-menu{

opacity:1;
visibility:visible;

transform:translateY(0);

}

/* small menu */

.small-menu{

width:430px;

}

/* grid */

.mega-grid{

display:grid;

grid-template-columns:
minmax(260px,1fr)
minmax(260px,1fr)
240px;

column-gap:42px;

align-items:start;

}

/* columns */

.mega-column{

display:flex;
flex-direction:column;

gap:14px;

}

/* links */

.mega-link{

display:flex;

align-items:flex-start;

gap:16px;

padding:18px;

border-radius:22px;

text-decoration:none;

transition:.22s ease;

}

.mega-link:hover{

background:#f5f8fc;

transform:translateY(-2px);

}

/* icon */

.mega-icon{

width:54px;
height:54px;

border-radius:18px;

background:#f5f8fc;

display:flex;
align-items:center;
justify-content:center;

font-size:22px;

flex-shrink:0;

}

/* text */

.mega-link strong{

display:block;

font-size:17px;
font-weight:800;

line-height:1.3;

margin-bottom:5px;

color:#081526;

}

.mega-link span{

display:block;

font-size:14px;

line-height:1.5;

color:#66768a;

}

/* offer */

.mega-offer{

background:#84d400;

border-radius:30px;

padding:34px 28px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

min-height:300px;

margin-left:16px;

}

/* title */

.mega-offer-title{

font-size:18px;

font-weight:700;

line-height:1.3;

text-align:center;

margin-bottom:16px;

color:#fff;

}

/* price */

.mega-price{

font-size:72px;

font-weight:800;

line-height:1;

color:#fff;

margin-bottom:10px;

}

/* subtitle */

.mega-offer-subtitle{

display:block;

margin-top:6px;

margin-bottom:30px;

font-size:17px;

font-weight:600;

line-height:1.4;

text-align:center;

color:rgba(255,255,255,.95);

}

/* button */

.mega-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 28px;

border-radius:18px;

background:#fff;

color:#081526;

font-weight:700;

font-size:16px;

text-decoration:none;

transition:.2s ease;

width:100%;

max-width:220px;

}
.mega-btn:hover{

transform:translateY(-2px);

box-shadow:
0 10px 25px rgba(0,0,0,.12);

}

/* menu links */

.main-menu > li > a{

position:relative;

padding:30px 0;

}

/* underline */

.main-menu > li > a::after{

content:'';

position:absolute;

left:0;
bottom:22px;

width:0;
height:2px;

background:#72c500;

transition:.22s ease;

}

.main-menu > li:hover > a::after{

width:100%;

}

/* IMPORTANT FIX */

.site-header{

overflow:visible !important;

z-index:999999;

}

.header-inner{

overflow:visible !important;

}

/* slider fix */

.hero-slider,
.hero-section,
.hero{

overflow:visible !important;

}

}

/* ========================================
   MOBILE MENU
======================================== */

.mobile-dropdown{

border-bottom:
1px solid #eef2f6;

}

.mobile-dropdown-btn{

width:100%;

height:58px;

display:flex;
align-items:center;
justify-content:space-between;

background:none;
border:none;

font-size:18px;
font-weight:700;

color:#081526;

cursor:pointer;

padding:0;

}

.mobile-arrow{

font-size:26px;

transition:.25s ease;

}

.mobile-dropdown.active .mobile-arrow{

transform:rotate(45deg);

}

.mobile-submenu{

max-height:0;

overflow:hidden;

transition:.3s ease;

display:flex;
flex-direction:column;

gap:4px;

}

.mobile-dropdown.active .mobile-submenu{

max-height:400px;

padding-bottom:16px;

}

.mobile-submenu a{

padding:12px 0 12px 14px;

font-size:15px;

color:#607082;

text-decoration:none;

border-left:
2px solid #eef2f6;

}

.mobile-submenu a:hover{

color:#72c500;

border-color:#72c500;

}

/* MOBILE */

@media(max-width:980px){

.mega-menu{
display:none !important;
}

}

/* OLD IE Browser */

.ie-warning{

position:fixed;

top:0;
left:0;

width:100%;

padding:16px 20px;

background:#d90000;

color:#fff;

font-size:15px;
font-weight:700;

text-align:center;

z-index:9999999;

box-shadow:
0 10px 30px rgba(0,0,0,.2);

}

.ie-warning a{

color:#fff;

text-decoration:underline;

font-weight:800;

}

/* Optimized TV-COM stylesheet */
/* ===== SPOILER ===== */

.tvcom-spoiler{

margin:18px 0;

border:1px solid #e7edf5;

border-radius:18px;

overflow:hidden;

background:#fff;

}

.tvcom-spoiler-title{

display:flex;
align-items:center;
justify-content:space-between;

padding:18px 22px;

font-size:16px;
font-weight:700;

cursor:pointer;

background:#f5f8fc;

transition:.2s ease;

}

.tvcom-spoiler-title:hover{

background:#eef4fb;

}

.tvcom-spoiler-title span{

font-size:22px;
font-weight:400;

transition:.25s ease;

}

.tvcom-spoiler.active .tvcom-spoiler-title span{

transform:rotate(45deg);

}

.tvcom-spoiler-content{

display:none;

padding:22px;

line-height:1.7;

font-size:15px;

}