/* 
   Style for Keripan — Стабільний тонус
   Futuristic Void-Violet Style
   No JS, No CDN
*/

/* Variables for consistency */
:root {
    --keripanStablePowerOrbitBg: #0B0020;
    --keripanStablePowerOrbitBgAlt: #150035;
    --keripanStablePowerOrbitPrimary: #B98CFF;
    --keripanStablePowerOrbitSecondary: #FFFFFF;
    --keripanStablePowerOrbitAccent: #7B00FF;
    --keripanStablePowerOrbitText: #E0E0E0;
    --keripanStablePowerOrbitGlow: 0 0 15px rgba(185, 140, 255, 0.6);
    --keripanStablePowerOrbitBorder: 1px solid rgba(185, 140, 255, 0.3);
}

/* Base resets and layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--keripanStablePowerOrbitText);
    background-color: var(--keripanStablePowerOrbitBg);
}

.keripanStablePowerOrbitBody {
    line-height: 1.6;
    overflow-x: hidden;
}

.keripanStablePowerOrbitContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.keripanStablePowerOrbitH1, .keripanStablePowerOrbitH2, .keripanStablePowerOrbitH3 {
    color: var(--keripanStablePowerOrbitSecondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.keripanStablePowerOrbitH1 {
    font-size: 3rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(185, 140, 255, 0.4);
}

.keripanStablePowerOrbitH2 {
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.keripanStablePowerOrbitH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--keripanStablePowerOrbitPrimary);
    box-shadow: var(--keripanStablePowerOrbitGlow);
}

.keripanStablePowerOrbitText {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #CCCCCC;
}

.keripanStablePowerOrbitImg {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Header & Nav */
.keripanStablePowerOrbitHeader {
    background-color: rgba(11, 0, 32, 0.95);
    border-bottom: 2px solid var(--keripanStablePowerOrbitPrimary);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.keripanStablePowerOrbitLogo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--keripanStablePowerOrbitPrimary);
    text-transform: uppercase;
    text-shadow: var(--keripanStablePowerOrbitGlow);
}

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

.keripanStablePowerOrbitNavLink {
    text-decoration: none;
    color: var(--keripanStablePowerOrbitSecondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.keripanStablePowerOrbitNavLink:hover {
    color: var(--keripanStablePowerOrbitPrimary);
    text-shadow: var(--keripanStablePowerOrbitGlow);
}

/* Burger Menu */
.keripanStablePowerOrbitMenuCheckbox {
    display: none;
}

.keripanStablePowerOrbitBurger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.keripanStablePowerOrbitBurger span {
    width: 30px;
    height: 3px;
    background-color: var(--keripanStablePowerOrbitPrimary);
    transition: all 0.3s ease;
}

/* Hero Section */
.keripanStablePowerOrbitHero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #1a0040, #0B0020);
    border-bottom: 1px solid rgba(185, 140, 255, 0.1);
}

.keripanStablePowerOrbitHeroGrid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.keripanStablePowerOrbitHeroImageWrapper,
.keripanStablePowerOrbitHeroContent {
    flex: 1;
}

.keripanStablePowerOrbitSubTitle {
    font-size: 1.4rem;
    color: var(--keripanStablePowerOrbitPrimary);
    margin-bottom: 25px;
}

.keripanStablePowerOrbitHeroFormBox {
    margin-top: 40px;
    background: rgba(185, 140, 255, 0.05);
    padding: 25px;
    border: var(--keripanStablePowerOrbitBorder);
    border-radius: 12px;
}

.keripanStablePowerOrbitInlineForm {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.keripanStablePowerOrbitBtnPrimary {
    background-color: var(--keripanStablePowerOrbitPrimary);
    color: var(--keripanStablePowerOrbitBg);
    border: none;
    padding: 14px 28px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.keripanStablePowerOrbitBtnPrimary:hover {
    background-color: #d1b3ff;
    box-shadow: 0 0 20px rgba(185, 140, 255, 0.8);
}

.keripanStablePowerOrbitBtnSecondary {
    background-color: transparent;
    color: var(--keripanStablePowerOrbitSecondary);
    border: 1px solid var(--keripanStablePowerOrbitPrimary);
    padding: 12px 24px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.keripanStablePowerOrbitBtnSecondary:hover {
    background-color: rgba(185, 140, 255, 0.1);
    box-shadow: var(--keripanStablePowerOrbitGlow);
}

/* Reviews */
.keripanStablePowerOrbitReviews {
    padding: 80px 0;
    background-color: var(--keripanStablePowerOrbitBg);
}

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

.keripanStablePowerOrbitReviewCard {
    background: #120030;
    padding: 30px;
    border: var(--keripanStablePowerOrbitBorder);
    border-radius: 10px;
}

.keripanStablePowerOrbitReviewHeader {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.keripanStablePowerOrbitReviewName {
    font-weight: bold;
    color: var(--keripanStablePowerOrbitPrimary);
    font-size: 1.2rem;
}

.keripanStablePowerOrbitReviewStats {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
}

.keripanStablePowerOrbitExpertQuote {
    margin-top: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid rgba(185, 140, 255, 0.2);
    padding-top: 40px;
}

.keripanStablePowerOrbitQuote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--keripanStablePowerOrbitSecondary);
    margin-bottom: 20px;
}

.keripanStablePowerOrbitCite {
    color: var(--keripanStablePowerOrbitPrimary);
    font-weight: bold;
}

/* Pricing */
.keripanStablePowerOrbitPricing {
    padding: 80px 0;
    background-color: var(--keripanStablePowerOrbitBgAlt);
}

.keripanStablePowerOrbitPricingGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.keripanStablePowerOrbitPriceCard {
    background: #0B0020;
    padding: 40px;
    border: var(--keripanStablePowerOrbitBorder);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.keripanStablePowerOrbitPriceCard:hover {
    transform: translateY(-10px);
}

.keripanStablePowerOrbitPriceFeatured {
    border: 2px solid var(--keripanStablePowerOrbitPrimary);
    box-shadow: var(--keripanStablePowerOrbitGlow);
    position: relative;
    overflow: hidden;
}

.keripanStablePowerOrbitPriceIconWrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--keripanStablePowerOrbitPrimary);
}

.keripanStablePowerOrbitPriceValue {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--keripanStablePowerOrbitPrimary);
    margin: 20px 0;
}

.keripanStablePowerOrbitPriceList {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

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

/* Benefits */
.keripanStablePowerOrbitBenefits {
    padding: 80px 0;
}

.keripanStablePowerOrbitBenefitsFlex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.keripanStablePowerOrbitBenefitsContent,
.keripanStablePowerOrbitBenefitsImage {
    flex: 1;
}

.keripanStablePowerOrbitBenefitsList {
    list-style: none;
}

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

.keripanStablePowerOrbitBenefitItem::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--keripanStablePowerOrbitPrimary);
}

/* Target Audience */
.keripanStablePowerOrbitTarget {
    padding: 80px 0;
    background-color: var(--keripanStablePowerOrbitBgAlt);
}

.keripanStablePowerOrbitTargetGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.keripanStablePowerOrbitTargetItem {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.keripanStablePowerOrbitTargetImg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.keripanStablePowerOrbitTargetPrice {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--keripanStablePowerOrbitPrimary);
}

.keripanStablePowerOrbitCheckList {
    list-style: none;
    columns: 2;
    gap: 40px;
    margin-top: 40px;
}

.keripanStablePowerOrbitCheckList li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.keripanStablePowerOrbitCheckList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ */
.keripanStablePowerOrbitFAQ {
    padding: 80px 0;
}

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

.keripanStablePowerOrbitDetails {
    background: #1a0040;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(185, 140, 255, 0.2);
}

.keripanStablePowerOrbitSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    outline: none;
}

.keripanStablePowerOrbitAnswer {
    padding: 0 20px 20px;
    color: #bbb;
}

/* Contact Form */
.keripanStablePowerOrbitContact {
    padding: 80px 0;
}

.keripanStablePowerOrbitContactBox {
    max-width: 700px;
    margin: 0 auto;
    background: #120030;
    padding: 50px;
    border-radius: 20px;
    border: var(--keripanStablePowerOrbitBorder);
}

.keripanStablePowerOrbitFullForm {
    margin-top: 40px;
}

.keripanStablePowerOrbitFormGroup {
    margin-bottom: 20px;
}

.keripanStablePowerOrbitLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.keripanStablePowerOrbitInput,
.keripanStablePowerOrbitInputFull,
.keripanStablePowerOrbitTextarea {
    width: 100%;
    padding: 15px;
    background: #0B0020;
    border: 1px solid rgba(185, 140, 255, 0.3);
    color: white;
    border-radius: 5px;
    outline: none;
}

.keripanStablePowerOrbitInput:focus,
.keripanStablePowerOrbitInputFull:focus,
.keripanStablePowerOrbitTextarea:focus {
    border-color: var(--keripanStablePowerOrbitPrimary);
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.2);
}

.keripanStablePowerOrbitTextarea {
    height: 120px;
    resize: none;
}

.keripanStablePowerOrbitCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.keripanStablePowerOrbitBtnSubmit {
    width: 100%;
    background-color: var(--keripanStablePowerOrbitPrimary);
    color: var(--keripanStablePowerOrbitBg);
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
}

/* Extra Text Sections */
.keripanStablePowerOrbitExtraText {
    padding: 100px 0;
}

.keripanStablePowerOrbitBgAlt {
    background-color: var(--keripanStablePowerOrbitBgAlt);
}

.keripanStablePowerOrbitTextContent p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: #ccc;
}

.keripanStablePowerOrbitCustomList {
    margin: 30px 0;
    list-style: square;
    padding-left: 40px;
    color: var(--keripanStablePowerOrbitPrimary);
}

.keripanStablePowerOrbitCustomList li {
    margin-bottom: 10px;
}

/* Footer */
.keripanStablePowerOrbitFooter {
    background-color: #050010;
    padding: 60px 0;
    border-top: 1px solid var(--keripanStablePowerOrbitPrimary);
    text-align: center;
}

.keripanStablePowerOrbitFooterContent {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.keripanStablePowerOrbitFooterLink {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.keripanStablePowerOrbitFooterLink:hover {
    color: var(--keripanStablePowerOrbitPrimary);
}

/* Responsive */
@media (max-width: 992px) {
    .keripanStablePowerOrbitHeroGrid,
    .keripanStablePowerOrbitBenefitsFlex {
        flex-direction: column;
        text-align: center;
    }
    .keripanStablePowerOrbitH1 { font-size: 2.5rem; }
    .keripanStablePowerOrbitCheckList { columns: 1; }
}

@media (max-width: 768px) {
    .keripanStablePowerOrbitBurger {
        display: flex;
    }
    .keripanStablePowerOrbitNav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--keripanStablePowerOrbitBg);
        border-bottom: 2px solid var(--keripanStablePowerOrbitPrimary);
    }
    .keripanStablePowerOrbitNavList {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .keripanStablePowerOrbitMenuCheckbox:checked ~ .keripanStablePowerOrbitNav {
        display: block;
    }
    .keripanStablePowerOrbitHero { padding: 60px 0; }
    .keripanStablePowerOrbitContactBox { padding: 30px; }
}