/* Vpnify Template — design cloned from vpnifyapp.com */
/* Primary accent: #5A3DB8 */

@import url('https://fonts.googleapis.com/css?family=Raleway:400,600,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Palanquin+Dark:700&display=swap');

/* -----------------------------------
    General Styles
------------------------------------ */
*, body {
    font-family: 'Raleway', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

.vbtn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: .8rem 2rem;
    border-radius: 100px;
    border: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.vbtn.vbtn-custom {
    position: relative;
    color: #fff;
    background-color: transparent;
    border: 4px solid #5A3DB8;
    text-transform: uppercase;
    z-index: 1;
}

.vbtn.vbtn-custom:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #5A3DB8;
    border-radius: 100px;
    z-index: -1;
    transform: scale(0);
    transition: all 0.2s ease-in-out;
}

.vbtn.vbtn-custom:hover:before {
    transform: scale(1);
}

.vbtn.vbtn-purple {
    color: #fff;
    background-color: #5A3DB8;
    padding: .8rem 2rem;
}

.vbtn.vbtn-purple:hover {
    background-color: #4A2FA0;
    color: #fff;
    text-decoration: none;
}

.vbtn.vbtn-no-bg {
    color: #7E8193;
}

.vbtn.vbtn-no-bg:hover {
    color: #9fa2b8;
    text-decoration: none;
}

::selection {
    background-color: rgba(130, 82, 241, 0.5);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    color: #2F2857;
    font-weight: 700;
}

p {
    font-size: 16px;
    line-height: 35px;
    color: #43435A;
    font-weight: 400;
    margin-bottom: 2rem;
}

p span {
    color: #5A3DB8;
}

ul { margin-bottom: 2rem; }

ul li {
    font-size: 16px;
    line-height: 35px;
    color: #53476C;
    font-weight: 400;
}

@media (min-width: 1200px) {
    .container { max-width: 1190px; }
}

html, body { height: 100%; margin: 0; padding: 0; }

/* -----------------------------------
    Header
------------------------------------ */
.header {
    position: relative;
    overflow: hidden;
    background-color: #171B39;
}

.header .head-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.header .head-bg .graphic {
    position: absolute;
    display: inline-block;
    width: 838px;
    height: 838px;
    top: -3rem;
    left: 50%;
}

.header .head-bg .graphic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header .head-bg .graphic img:nth-child(1) { transition: all 0.6s ease 0.3s; }
.header .head-bg .graphic img:nth-child(2) { transform: scale(0.83); transition: all 0.6s ease 0.2s; }
.header .head-bg .graphic img:nth-child(3) { transform: scale(0.65); transition: all 0.6s ease 0.1s; }
.header .head-bg .graphic img:nth-child(4) { transform: scale(0.47); transition: all 0.6s ease; }

.header:hover .head-bg .graphic img:nth-child(1) { transform: scale(1.05); }
.header:hover .head-bg .graphic img:nth-child(2) { transform: scale(0.88); }
.header:hover .head-bg .graphic img:nth-child(3) { transform: scale(0.70); }
.header:hover .head-bg .graphic img:nth-child(4) { transform: scale(0.52); }

/* -----------------------------------
    Navbar
------------------------------------ */
.navbar {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar .navbar-brand .brand-logo {
    width: 36px;
    height: 36px;
}

.navbar .navbar-brand .brand-name {
    font-family: 'Palanquin Dark', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.navbar .navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar .navbar-toggler-icon {
    display: block;
    width: 28px;
    height: 20px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.navbar .navbar-nav li { margin-right: 1.2rem; }
.navbar .navbar-nav li:last-child { margin-right: 0; }

.navbar .navbar-nav li a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    opacity: 1;
    line-height: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar .navbar-nav li a.nav-download {
    background-color: #5A3DB8;
    border-radius: 100px;
    padding: .4rem 1.4rem;
}

.navbar .navbar-nav li a.nav-download:hover {
    background-color: #4A2FA0;
    opacity: 1;
}

.navbar .navbar-nav li a:hover { opacity: 0.7; }

/* -----------------------------------
    Hero (top-content)
------------------------------------ */
.top-content { padding-bottom: 7rem; }

.top-content .content-holder { margin-top: 7rem; }

.top-content .lg-text {
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 700;
    font-size: 76px;
    color: #fff;
    line-height: 88px;
    margin-bottom: 3.5rem;
}

.top-content .btns-holder { margin-bottom: 2rem; }

.top-content .btns-holder .vbtn { margin-right: 1rem; margin-bottom: 1rem; }

.top-content .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.top-content .hero-stats .stat-item { text-align: left; }

.top-content .hero-stats .stat-num {
    font-family: 'Palanquin Dark', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.top-content .hero-stats .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.top-content .head-img {
    position: relative;
    text-align: center;
    margin-top: 4rem;
}

/* Right-side decoration: concentric circles CSS fallback */
.top-content .hero-deco {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 4rem auto 0;
}

.top-content .hero-deco .circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(130,82,241,0.25);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.top-content .hero-deco .circle:nth-child(1) { width: 380px; height: 380px; }
.top-content .hero-deco .circle:nth-child(2) { width: 290px; height: 290px; border-color: rgba(130,82,241,0.35); }
.top-content .hero-deco .circle:nth-child(3) { width: 200px; height: 200px; border-color: rgba(130,82,241,0.5); }
.top-content .hero-deco .circle:nth-child(4) { width: 120px; height: 120px; background: rgba(130,82,241,0.15); border-color: rgba(130,82,241,0.7); }

.top-content .hero-deco .deco-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    fill: #5A3DB8;
}

/* -----------------------------------
    About section
------------------------------------ */
.about-app {
    padding-top: 6rem;
    padding-bottom: 4rem;
    text-align: center;
}

.about-app .resize-content {
    text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 1000px;
}

.about-app .title {
    font-family: "Palanquin Dark", sans-serif;
    font-size: 49px;
    font-weight: 700;
    color: #5A3DB8;
    margin-bottom: 3rem;
}

.about-app p {
    font-size: 19px;
    color: #43435A;
}

.about-app p.bold { font-weight: 600; }

.about-app p.bold span { color: #5A3DB8; }

/* -----------------------------------
    Features
------------------------------------ */
.features {
    padding-top: 5rem;
    padding-bottom: 3rem;
    text-align: center;
}

.features .resize-content {
    display: inline-block;
    width: 100%;
    max-width: 1000px;
}

.features .feature-box {
    display: inline-block;
    width: 100%;
    max-width: 290px;
    text-align: left;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.features .feature-box .feat-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(130,82,241,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.features .feature-box .feat-icon svg {
    width: 28px;
    height: 28px;
    fill: #5A3DB8;
}

.features .feature-box .title {
    font-family: "Palanquin Dark", sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #5A3DB8;
}

.features .feature-box .text {
    font-size: 16px;
    color: #676767;
    line-height: 30px;
}

/* -----------------------------------
    Pricing Section (режим C)
------------------------------------ */
.pricing-section {
    position: relative;
    overflow: hidden;
    background-color: #130D33;
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

.pricing-section .pricing-head-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.pricing-section .pricing-head-bg .graphic {
    position: absolute;
    display: inline-block;
    width: 700px;
    height: 700px;
    top: 50%;
    margin-top: -350px;
    left: -100px;
    opacity: 0.4;
}

.pricing-section .pricing-head-bg .graphic img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
}

.pricing-section .pricing-head-bg .graphic img:nth-child(2) { transform: scale(0.83); }
.pricing-section .pricing-head-bg .graphic img:nth-child(3) { transform: scale(0.65); }
.pricing-section .pricing-head-bg .graphic img:nth-child(4) { transform: scale(0.47); }

.pricing-section .sm-title {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pricing-section .lg-title {
    font-family: "Palanquin Dark", sans-serif;
    font-size: 49px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-section .trial-note {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 240px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: #5A3DB8;
    border-color: #5A3DB8;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    background: #4A2FA0;
    transform: scale(1.08) translateY(-4px);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #5A3DB8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 30px;
}

.pricing-label {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-label { color: rgba(255,255,255,0.8); }

.price-amount {
    font-family: "Palanquin Dark", sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.price-currency {
    font-size: 24px;
    color: rgba(255,255,255,0.8);
    vertical-align: top;
    margin-top: 12px;
    display: inline-block;
}

.price-period {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.8rem;
}

.pricing-save {
    font-size: 13px;
    font-weight: 700;
    color: #8060E8;
    min-height: 20px;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-save { color: rgba(255,255,255,0.9); }

.pricing-btn {
    display: inline-block;
    background: #fff;
    color: #5A3DB8;
    border-radius: 100px;
    padding: .7rem 1.8rem;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #5A3DB8;
    text-decoration: none;
}

.pricing-card:not(.featured) .pricing-btn {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.pricing-card:not(.featured) .pricing-btn:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* -----------------------------------
    Referral Section
------------------------------------ */
.referral-section {
    background-color: #F9F9FC;
    padding: 3.5rem 0;
}

.referral-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #E8E6F0;
}

.referral-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(130,82,241,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.referral-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #5A3DB8;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.referral-inner h2 {
    font-family: 'Palanquin Dark', sans-serif;
    font-size: 22px;
    margin-bottom: 0.5rem;
    color: #2F2857;
}

.referral-inner p {
    font-size: 15px;
    color: #43435A;
    line-height: 28px;
    margin-bottom: 1rem;
}

.referral-btn {
    display: inline-block;
    background: #5A3DB8;
    color: #fff;
    border-radius: 100px;
    padding: .6rem 1.6rem;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.referral-btn:hover {
    background: #4A2FA0;
    color: #fff;
    text-decoration: none;
}

/* -----------------------------------
    FAQ Section
------------------------------------ */
.faq-section {
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.faq-section .resize-content {
    display: inline-block;
    width: 100%;
    max-width: 772px;
    text-align: left;
}

.faq-section .row-title {
    font-family: "Palanquin Dark", sans-serif;
    font-size: 49px;
    font-weight: 700;
    color: #2F2857;
    margin-bottom: 1.8rem;
    text-align: left;
}

.faq-section .head-text {
    font-size: 19px;
    color: #43435A;
    line-height: 35px;
    text-align: left;
    max-width: 814px;
    margin-bottom: 4rem;
}

.faq-section .head-text a { color: #5A3DB8; font-weight: 600; }

.faq-list .card {
    border: 0;
    margin-bottom: 1rem;
}

.faq-list .card .card-header {
    position: relative;
    background: none;
    border: 0;
    padding: 0;
    border-radius: 0;
}

.faq-list .card .card-header button {
    background: none;
    border: 0;
    font-size: 18px;
    font-weight: 700;
    color: #5A3DB8;
    padding: 1.19rem 0;
    padding-right: 3rem;
    width: 100%;
    text-align: left;
    outline: none;
    border-bottom: 1px solid #D1D0DB;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-list .card .card-header button .plus-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    background-color: #F2F0F7;
    pointer-events: none;
    transition: all 0.3s ease;
}

.faq-list .card .card-header button .plus-icon:before,
.faq-list .card .card-header button .plus-icon:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 2px;
    background-color: #2F2857;
    transition: all 0.3s ease;
}

.faq-list .card .card-header button.collapsed { color: #2C1E4B; }

.faq-list .card .card-header button.collapsed .plus-icon:after {
    transform: rotate(-90deg);
}

.faq-list .card .card-header button:hover {
    border-bottom: 1px solid #c2c1cc;
}

.faq-list .card .card-body {
    color: #53476C;
    font-size: 16px;
    font-weight: 600;
    line-height: 37px;
    padding: 1.8rem;
}

/* -----------------------------------
    Footer
------------------------------------ */
.footer {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 3rem;
    background-color: #2F2857;
}

.footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer .footer-brand .brand-logo {
    width: 32px;
    height: 32px;
}

.footer .footer-brand .brand-name {
    font-family: 'Palanquin Dark', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.footer .copyright {
    font-family: "Palanquin Dark", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #7F78AA;
}

.footer-menu-holder { margin-bottom: 2rem; }

.footer-menu-holder h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-menu-holder ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu-holder ul li a {
    font-size: 14px;
    font-weight: 600;
    color: #928DB4;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    line-height: 32px;
}

.footer-menu-holder ul li a:hover { color: #fff; }

/* -----------------------------------
    Responsive
------------------------------------ */
@media (max-width: 1200px) {
    .top-content .lg-text { font-size: 60px; line-height: 78px; }
}

@media (max-width: 992px) {
    .navbar-nav {
        margin-top: 2rem;
    }
    .navbar .navbar-nav li {
        margin-right: 0;
        text-align: center;
    }
    .top-content .btns-holder { text-align: center; }
    .top-content .btns-holder .vbtn { margin-bottom: 1rem; }
    .top-content .hero-stats { justify-content: center; }
    .about-app .title { font-size: 44px; }
    .faq-section .row-title { font-size: 44px; }
    .pricing-section .lg-title { font-size: 38px; }
    .pricing-card.featured { transform: scale(1); }
    .features .feature-box { max-width: 100%; }
}

@media (max-width: 768px) {
    .top-content .content-holder { margin-top: 4rem; margin-bottom: 2rem; }
    .top-content .lg-text { font-size: 48px; line-height: 60px; text-align: center; }
    .top-content .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .top-content .hero-deco { width: 260px; height: 260px; }
    .top-content .hero-deco .circle:nth-child(1) { width: 260px; height: 260px; }
    .top-content .hero-deco .circle:nth-child(2) { width: 200px; height: 200px; }
    .top-content .hero-deco .circle:nth-child(3) { width: 140px; height: 140px; }
    .top-content .hero-deco .circle:nth-child(4) { width: 84px; height: 84px; }
    .about-app .title { font-size: 36px; margin-bottom: 1.5rem; }
    .faq-section .row-title { font-size: 36px; }
    .referral-inner { flex-direction: column; text-align: center; }
    .pricing-grid { gap: 1rem; }
    .pricing-card { width: 100%; max-width: 300px; }
    .pricing-card.featured { transform: none; }
}

@media (max-width: 575px) {
    .top-content .lg-text { font-size: 38px; line-height: 50px; }
    .navbar { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}
