/* Базові налаштування та кольори */
:root {
    --bg-dark: #000F2B;
    --ice-blue: #D9FAFF;
    --ice-glow: rgba(217, 250, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(217, 250, 255, 0.2);
    --text-light: #F0F8FF;
    --text-muted: #A0B0C0;
    --accent-line: #00BFFF;
}

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

html {
    scroll-behavior: smooth;
}

body.qivoraMainBdy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Header */
.qivoraHdrGlass {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.qivoraHdrCont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qivoraLogoTxt {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ice-blue);
    text-transform: uppercase;
}

.qivoraNavChkbx {
    display: none;
}

.qivoraBrgBtn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.qivoraBrgBtn span {
    width: 25px;
    height: 2px;
    background: var(--ice-blue);
    transition: 0.3s;
}

.qivoraNavList {
    display: flex;
    list-style: none;
    gap: 25px;
}

.qivoraLnkItem {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-muted);
}

.qivoraLnkItem:hover {
    color: var(--ice-blue);
    text-shadow: 0 0 8px var(--ice-glow);
}

/* Hero Section */
.qivoraHeroWrp {
    padding: 140px 20px 80px;
    background: radial-gradient(circle at top right, #001a4a, var(--bg-dark));
}

.qivoraHeroCont {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.qivoraHeroImgGrd {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.qivoraHeroImgGrd img:nth-child(1) {
    grid-row: span 2;
}

.qivoraHeroImg {
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 100%;
}

.qivoraHeroTxt {
    flex: 1;
}

.qivoraHeroTitl {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--ice-blue);
}

.qivoraHeroSubt {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.qivoraHeroDesc {
    margin-bottom: 20px;
    font-size: 16px;
    color: #cbd5e0;
}

/* Buttons */
.qivoraIceBtn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--ice-blue);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 250, 255, 0.2);
}

.qivoraIceBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--ice-glow);
    background-color: #fff;
}

/* Common Section Styles */
.qivoraSectTitl {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--ice-blue);
}

.qivoraSectSubt {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Who it is for */
.qivoraWhoWrp {
    padding: 80px 20px;
}

.qivoraWhoCont {
    max-width: 1200px;
    margin: 0 auto;
}

.qivoraWhoTopImg {
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.qivoraWhoImg {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.qivoraWhoList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    list-style: none;
}

.qivoraWhoItem {
    background: var(--glass-bg);
    padding: 25px;
    border-left: 3px solid var(--ice-blue);
    border-radius: 4px;
    transition: 0.3s;
}

.qivoraWhoItem:hover {
    background: rgba(217, 250, 255, 0.1);
}

/* Prices */
.qivoraPrcWrp {
    padding: 80px 20px;
    background: rgba(0, 15, 43, 0.5);
}

.qivoraPrcCont {
    max-width: 1200px;
    margin: 0 auto;
}

.qivoraPrcGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.qivoraPrcCard {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.qivoraPrcCard:hover {
    transform: translateY(-10px);
    border-color: var(--ice-blue);
}

.qivoraCardHot {
    background: rgba(217, 250, 255, 0.08);
    border: 2px solid var(--ice-blue);
    position: relative;
    overflow: hidden;
}

.qivoraCardTitl {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--ice-blue);
}

.qivoraCardPrc {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.qivoraCardFeat {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
    flex-grow: 1;
}

.qivoraCardFeat li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
}

.qivoraCardBtn {
    padding: 12px 25px;
    border: 1px solid var(--ice-blue);
    color: var(--ice-blue);
    border-radius: 4px;
    font-weight: 600;
}

/* Reviews */
.qivoraRevWrp {
    padding: 80px 20px;
}

.qivoraRevCont {
    max-width: 1200px;
    margin: 0 auto;
}

.qivoraRevGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.qivoraRevCard {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 12px;
    font-style: italic;
    border: 1px solid var(--glass-border);
}

.qivoraRevAuth {
    display: block;
    margin-top: 20px;
    color: var(--ice-blue);
    font-style: normal;
    font-weight: 600;
}

/* Advantages */
.qivoraAdvWrp {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--bg-dark), #001a4a);
}

.qivoraAdvCont {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.qivoraAdvTxtSide {
    flex: 1;
}

.qivoraAdvImgSide {
    flex: 1;
}

.qivoraAdvList {
    list-style: none;
}

.qivoraAdvList li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.qivoraAdvList li::before {
    content: "❄";
    position: absolute;
    left: 0;
    color: var(--ice-blue);
}

/* Expert Section */
.qivoraExpWrp {
    padding: 100px 20px;
}

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

.qivoraExpQuote {
    margin-bottom: 50px;
}

.qivoraQuoteTxt {
    font-size: 24px;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.qivoraQuoteSign {
    color: var(--ice-blue);
    font-weight: 700;
    font-style: normal;
}

.qivoraExpSteps {
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.qivoraStepList {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.qivoraStepList li {
    background: rgba(0,0,0,0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid var(--glass-border);
}

/* FAQ */
.qivoraFaqWrp {
    padding: 80px 20px;
}

.qivoraFaqCont {
    max-width: 800px;
    margin: 0 auto;
}

.qivoraFaqDet {
    margin-bottom: 15px;
    background: var(--glass-bg);
    border-radius: 8px;
    overflow: hidden;
}

.qivoraFaqSum {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--ice-blue);
    list-style: none;
    position: relative;
}

.qivoraFaqSum::after {
    content: "+";
    position: absolute;
    right: 20px;
}

.qivoraFaqDet[open] .qivoraFaqSum::after {
    content: "-";
}

.qivoraFaqAns {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Extra Text Sections */
.qivoraExtraSect {
    padding: 80px 20px;
}

.qivoraExtraCont {
    max-width: 900px;
    margin: 0 auto;
}

.qivoraGlassPanel {
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 60px;
}

.qivoraExtraPara {
    margin-bottom: 25px;
    font-size: 18px;
    color: #cbd5e0;
}

.qivoraExtraList {
    list-style: none;
    margin: 30px 0;
}

.qivoraExtraList li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Form */
.qivoraFrmWrp {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #001a4a, var(--bg-dark));
}

.qivoraFrmCont {
    max-width: 600px;
    margin: 0 auto;
}

.qivoraFormEl {
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--ice-blue);
    margin-top: 40px;
}

.qivoraInpGrp {
    margin-bottom: 20px;
}

.qivoraLabl {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.qivoraInp {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: #fff;
    outline: none;
}

.qivoraInp:focus {
    border-color: var(--ice-blue);
}

.qivoraTxtAr {
    height: 120px;
    resize: vertical;
}

.qivoraChkGrp {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.qivoraChkGrp a {
    color: var(--ice-blue);
    text-decoration: underline;
}

/* Footer */
.qivoraFtrWrp {
    padding: 60px 20px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.qivoraFtrCont {
    max-width: 1200px;
    margin: 0 auto;
}

.qivoraFtrCp {
    margin-bottom: 15px;
    font-weight: 700;
}

.qivoraFtrMail, .qivoraFtrTel {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.qivoraFtrLinks {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.qivoraFtrLnk {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .qivoraHeroCont, .qivoraAdvCont {
        flex-direction: column;
    }
    .qivoraHeroTitl {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .qivoraBrgBtn {
        display: flex;
    }
    .qivoraNavList {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
    }
    .qivoraNavChkbx:checked ~ .qivoraNavLnk .qivoraNavList {
        left: 0;
    }
    .qivoraWhoTopImg .qivoraWhoImg {
        height: 250px;
    }
    .qivoraGlassPanel {
        padding: 30px;
    }
}