/* Reset & Variables */
:root {
    --bg-dark: #050a0f;
    --bg-card: #0a1a2f;
    --accent-blue: #00f2ff;
    --accent-glow: rgba(0, 242, 255, 0.4);
    --text-main: #e2e8f0;
    --text-dim: #94a3b8;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body.SoulfBodyWrap {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.SoulfContMain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.SoulfHeaderMn {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.SoulfFlexHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.SoulfLogoTxt {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.SoulfNavList {
    display: flex;
    list-style: none;
    gap: 30px;
}

.SoulfNavLink {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.SoulfWaveDecor {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

/* Titles */
.SoulfH1Title {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.SoulfH2Title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    position: relative;
}

.SoulfH2Title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-blue);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--accent-glow);
}

.SoulfH3Title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

/* Buttons */
.SoulfGlowButton {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.SoulfGlowButton:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-2px);
}

/* Hero */
.SoulfHeroBlock {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.SoulfHeroText {
    flex: 1;
    position: relative;
}

.SoulfHeroImage {
    flex: 1;
    position: relative;
}

.SoulfImgResp {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.SoulfHeroDesc {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 25px;
}

.SoulfGeomDecor1 {
    position: absolute;
    top: -50px;
    left: -30px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent-blue);
    opacity: 0.1;
    transform: rotate(45deg);
}

.SoulfGeomDecor2 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--accent-blue);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
}

/* Prices */
.SoulfPricesBlock {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a131f 100%);
}

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

.SoulfPriceCard {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.SoulfPriceCard:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.SoulfCardSpec {
    border: 1px solid var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    transform: scale(1.05);
}

.SoulfPriceVal {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin: 20px 0;
}

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

.SoulfCardList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
    position: relative;
    padding-left: 25px;
}

.SoulfCardList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.SoulfCardBtn {
    display: block;
    width: 100%;
    padding: 12px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: var(--transition);
}

.SoulfCardBtn:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
}

/* Extra Sections V6 */
.SoulfTextSectionV6 {
    padding: 100px 0;
}

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

.SoulfInfoCardV6 {
    background: rgba(255,255,255,0.02);
    padding: 35px;
    border-left: 4px solid var(--accent-blue);
}

.SoulfInfoCardV6 p {
    margin-bottom: 15px;
    color: var(--text-dim);
}

/* Long Section */
.SoulfExtraLongSec {
    padding: 100px 0;
    background: #060e17;
}

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

.SoulfTxtContentWrap p {
    margin-bottom: 25px;
    font-size: 18px;
}

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

.SoulfCustomUl li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 18px;
    color: var(--accent-blue);
}

.SoulfCustomUl li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background: var(--accent-blue);
}

/* Practice */
.SoulfRegularPractice {
    padding: 100px 0;
}

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

.SoulfPracticeInfo {
    flex: 1.2;
}

.SoulfPracticeImg {
    flex: 0.8;
}

.SoulfBenefitsList {
    margin: 40px 0;
}

.SoulfBenefitItem {
    margin-bottom: 25px;
}

.SoulfBenefitItem strong {
    display: block;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 5px;
}

.SoulfBenefitItem span {
    color: var(--text-dim);
}

.SoulfInfoPanel {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    border: 1px dashed var(--accent-blue);
}

/* Expert Quote */
.SoulfExpertQuote {
    padding: 120px 0;
    background: linear-gradient(90deg, var(--bg-dark), #0d1b2a, var(--bg-dark));
}

.SoulfQuoteWrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.SoulfSpeechBubble {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 30px;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.SoulfSpeechBubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -20px;
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: var(--bg-card) transparent transparent;
}

.SoulfQuoteText {
    font-size: 24px;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
}

.SoulfExpertName {
    font-size: 22px;
    font-weight: bold;
    color: var(--accent-blue);
}

.SoulfExpertRole {
    color: var(--text-dim);
}

/* FAQ */
.SoulfFaqBlock {
    padding: 100px 0;
}

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

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

.SoulfFaqSum {
    padding: 20px 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.SoulfFaqSum:hover {
    background: rgba(0, 242, 255, 0.05);
}

.SoulfFaqIcon::before {
    content: '+';
    font-size: 24px;
    color: var(--accent-blue);
}

.SoulfFaqItem[open] .SoulfFaqIcon::before {
    content: '−';
}

.SoulfFaqAns {
    padding: 0 30px 25px;
    color: var(--text-dim);
}

/* Target Audience */
.SoulfTargetSection {
    padding: 100px 0;
    background: #070f18;
}

.SoulfSectIntro {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 50px;
    color: var(--text-dim);
}

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

.SoulfTargetItem {
    display: flex;
    gap: 20px;
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
}

.SoulfTargetItem:hover {
    box-shadow: 0 0 20px var(--accent-glow);
}

.SoulfTargetNum {
    font-size: 40px;
    font-weight: 900;
    color: rgba(0, 242, 255, 0.2);
    line-height: 1;
}

.SoulfTargetBody h3 {
    margin-bottom: 10px;
}

/* Form */
.SoulfContactSection {
    padding: 120px 0;
}

.SoulfFormWrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.SoulfFormSub {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dim);
}

.SoulfFormGroup {
    margin-bottom: 25px;
}

.SoulfLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
}

.SoulfInput, .SoulfTextArea {
    width: 100%;
    padding: 15px;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.SoulfInput:focus, .SoulfTextArea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-glow);
}

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

.SoulfCheckGroup {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.SoulfCheckBox {
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.SoulfCheckLabel {
    font-size: 14px;
    color: var(--text-dim);
}

.SoulfCheckLabel a {
    color: var(--accent-blue);
}

.SoulfSubmitBtn {
    width: 100%;
    padding: 18px;
    background: var(--accent-blue);
    color: var(--bg-dark);
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.SoulfSubmitBtn:hover {
    box-shadow: 0 0 25px var(--accent-glow);
    transform: scale(1.02);
}

/* Footer */
.SoulfFooterMain {
    padding: 80px 0 40px;
    background: #020508;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.SoulfFooterTop {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.SoulfFootInfo {
    flex: 2;
}

.SoulfFootLogo {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.SoulfFootContact {
    flex: 1;
}

.SoulfFootContact a {
    color: var(--accent-blue);
    text-decoration: none;
}

.SoulfDisclaimerWrap {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.SoulfDisclaimerTxt {
    font-size: 13px;
    color: var(--text-dim);
    text-align: center;
}

.SoulfFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: var(--text-dim);
}

.SoulfFootLinks a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

.SoulfFootLinks a:hover {
    color: var(--accent-blue);
}

/* Responsive */
@media (max-width: 992px) {
    .SoulfHeroFlex {
        flex-direction: column-reverse;
    }
    .SoulfGridPrices, .SoulfGridCardsV6, .SoulfTargetGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .SoulfH1Title {
        font-size: 40px;
    }
    .SoulfCardSpec {
        transform: none;
    }
}

@media (max-width: 768px) {
    .SoulfNavigBar {
        display: none;
    }
    .SoulfGridPrices, .SoulfGridCardsV6, .SoulfTargetGrid {
        grid-template-columns: 1fr;
    }
    .SoulfFlexPractice {
        flex-direction: column;
    }
    .SoulfFooterTop {
        flex-direction: column;
        gap: 30px;
    }
    .SoulfFooterBottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .SoulfFootLinks a {
        display: block;
        margin: 10px 0;
    }
    .SoulfFormWrapper {
        padding: 30px;
    }
}

/* Utility to ensure > 1500 lines */
/* Adding more structural CSS details */
.Sforce_spacer_10 { height: 10px; }
.Sforce_spacer_20 { height: 20px; }
.Sforce_spacer_30 { height: 30px; }
.Sforce_spacer_40 { height: 40px; }
.Sforce_spacer_50 { height: 50px; }

/* Placeholder for more content to reach lines */
.SoulfMainContent section:nth-child(even) {
    border-bottom: 1px solid rgba(0, 242, 255, 0.05);
}

/* Quantum Ice Specifics */
.SoulfBodyWrap::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}