/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.torenavilCoreLatticeMoveBody {
    background-color: #120014;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.torenavilCoreLatticeMoveHeader {
    background: linear-gradient(180deg, #2a002e 0%, #120014 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #FF4FD833;
    box-shadow: 0 5px 20px rgba(255, 79, 216, 0.1);
}

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

.torenavilCoreLatticeMoveLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF4FD8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.torenavilCoreLatticeMoveNavLink {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.torenavilCoreLatticeMoveNavLink:hover {
    color: #FF4FD8;
}

/* Mobile Menu Toggle */
.torenavilCoreLatticeMoveToggleInput {
    display: none;
}

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

.torenavilCoreLatticeMoveToggleLabel span {
    width: 25px;
    height: 3px;
    background-color: #FF4FD8;
    border-radius: 2px;
}

/* Hero Section (Variant 4: Red Outline) */
.torenavilCoreLatticeMoveHeroSec {
    padding: 100px 0;
    border: 4px solid #ff0000;
    margin: 20px;
    border-radius: 15px;
}

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

.torenavilCoreLatticeMoveHeroImgCol {
    flex: 1;
}

.torenavilCoreLatticeMoveHeroTextCol {
    flex: 1;
}

.torenavilCoreLatticeMoveHeroImg {
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(255, 79, 216, 0.2);
}

.torenavilCoreLatticeMoveH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, #FF4FD8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.torenavilCoreLatticeMoveSub {
    font-size: 1.4rem;
    color: #FF4FD8;
    margin-bottom: 20px;
    font-weight: 600;
}

.torenavilCoreLatticeMoveP {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.torenavilCoreLatticeMoveBtnMain {
    display: inline-block;
    padding: 18px 40px;
    background-color: #FF4FD8;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 79, 216, 0.5);
    text-transform: uppercase;
}

.torenavilCoreLatticeMoveBtnMain:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 79, 216, 0.8);
    background-color: #ff7be2;
}

/* Price Section (Variant 2: 5 services + outline) */
.torenavilCoreLatticeMovePriceSec {
    padding: 80px 0;
    border: 2px solid #FF4FD833;
    margin: 40px 20px;
    border-radius: 20px;
    background: rgba(255, 79, 216, 0.02);
}

.torenavilCoreLatticeMoveH2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #FF4FD8;
}

.torenavilCoreLatticeMovePriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.torenavilCoreLatticeMovePriceCard {
    background: #1e0022;
    border: 1px solid #FF4FD844;
    padding: 30px;
    border-radius: 15px;
    width: calc(20% - 20px);
    min-width: 220px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.torenavilCoreLatticeMovePriceCard:hover {
    transform: translateY(-10px);
    border-color: #FF4FD8;
}

.torenavilCoreLatticeMoveH3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #FF4FD8;
}

.torenavilCoreLatticeMoveCost {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.torenavilCoreLatticeMovePriceList {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.torenavilCoreLatticeMovePriceList li {
    padding: 8px 0;
    border-bottom: 1px solid #ffffff11;
    font-size: 0.9rem;
    color: #ccc;
}

.torenavilCoreLatticeMoveBtnPrice {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #FF4FD8;
    color: #FF4FD8;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.torenavilCoreLatticeMoveBtnPrice:hover {
    background-color: #FF4FD8;
    color: #ffffff;
}

/* Target Section (Variant 1: detailed + prices) */
.torenavilCoreLatticeMoveTargetSec {
    padding: 80px 0;
}

.torenavilCoreLatticeMoveIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.torenavilCoreLatticeMoveTargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.torenavilCoreLatticeMoveTargetItem {
    flex: 1 1 calc(33.33% - 30px);
    background: #250029;
    padding: 25px;
    border-radius: 20px;
}

.torenavilCoreLatticeMoveTargetImg {
    border-radius: 10px;
    margin-bottom: 20px;
    width: 100%;
    object-fit: cover;
}

.torenavilCoreLatticeMoveH4 {
    font-size: 1.3rem;
    color: #FF4FD8;
    margin-bottom: 10px;
}

.torenavilCoreLatticeMoveMiniPrice {
    display: inline-block;
    margin-top: 15px;
    background: #FF4FD822;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: #FF4FD8;
}

.torenavilCoreLatticeMoveTargetList {
    columns: 2;
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.torenavilCoreLatticeMoveTargetList li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.torenavilCoreLatticeMoveTargetList li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #FF4FD8;
}

/* Benefits Section */
.torenavilCoreLatticeMoveBenefitsSec {
    padding: 80px 0;
    background: #000000;
}

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

.torenavilCoreLatticeMoveBenefitsText {
    flex: 1;
}

.torenavilCoreLatticeMoveBenefitsImg {
    flex: 1;
}

.torenavilCoreLatticeMoveBenefitImgTag {
    border-radius: 50% 20% 50% 20%;
    border: 5px solid #FF4FD833;
}

.torenavilCoreLatticeMoveCheckList {
    list-style: none;
}

.torenavilCoreLatticeMoveCheckList li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.torenavilCoreLatticeMoveCheckList li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background: #FF4FD8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #120014;
    font-size: 0.8rem;
}

/* Quote Section (Variant 2: Non-JS Slider) */
.torenavilCoreLatticeMoveQuoteSec {
    padding: 80px 0;
    text-align: center;
}

.torenavilCoreLatticeMoveSlider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.torenavilCoreLatticeMoveSlideRadio {
    display: none;
}

.torenavilCoreLatticeMoveSlidesContainer {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.torenavilCoreLatticeMoveSlideItem {
    width: 33.33%;
    padding: 40px;
}

.torenavilCoreLatticeMoveBlockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.torenavilCoreLatticeMoveCite {
    font-weight: bold;
    color: #FF4FD8;
    text-transform: uppercase;
    display: block;
}

#trn-slide-1:checked ~ .torenavilCoreLatticeMoveSlidesContainer { transform: translateX(0); }
#trn-slide-2:checked ~ .torenavilCoreLatticeMoveSlidesContainer { transform: translateX(-33.33%); }
#trn-slide-3:checked ~ .torenavilCoreLatticeMoveSlidesContainer { transform: translateX(-66.66%); }

.torenavilCoreLatticeMoveSliderControls {
    margin-top: 20px;
}

.torenavilCoreLatticeMoveSliderDot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #ffffff33;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

#trn-slide-1:checked ~ .torenavilCoreLatticeMoveSliderControls label[for="trn-slide-1"],
#trn-slide-2:checked ~ .torenavilCoreLatticeMoveSliderControls label[for="trn-slide-2"],
#trn-slide-3:checked ~ .torenavilCoreLatticeMoveSliderControls label[for="trn-slide-3"] {
    background: #FF4FD8;
}

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

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

.torenavilCoreLatticeMoveDetails {
    background: #1e0022;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #FF4FD822;
}

.torenavilCoreLatticeMoveSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    outline: none;
    list-style: none;
    position: relative;
}

.torenavilCoreLatticeMoveSummary::-webkit-details-marker { display: none; }

.torenavilCoreLatticeMoveSummary::after {
    content: "+";
    position: absolute;
    right: 20px;
    color: #FF4FD8;
    font-size: 1.5rem;
}

.torenavilCoreLatticeMoveDetails[open] .torenavilCoreLatticeMoveSummary::after {
    content: "-";
}

.torenavilCoreLatticeMoveFaqContent {
    padding: 0 20px 20px;
    color: #ccc;
}

/* Info Sections */
.torenavilCoreLatticeMoveInfoSec {
    padding: 100px 0;
}

.torenavilCoreLatticeMoveBgAlt {
    background: #1e0022;
}

.torenavilCoreLatticeMoveUl {
    margin-top: 20px;
    margin-left: 20px;
}

.torenavilCoreLatticeMoveAdviceBox {
    background: linear-gradient(90deg, #FF4FD833, transparent);
    padding: 20px;
    border-left: 5px solid #FF4FD8;
    margin-top: 30px;
}

/* Form Section */
.torenavilCoreLatticeMoveFormSec {
    padding: 100px 0;
    background: linear-gradient(180deg, #120014 0%, #2a002e 100%);
}

.torenavilCoreLatticeMoveForm {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 79, 216, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #FF4FD844;
}

.torenavilCoreLatticeMoveFormGroup {
    margin-bottom: 20px;
}

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

.torenavilCoreLatticeMoveInput, 
.torenavilCoreLatticeMoveTextarea {
    width: 100%;
    padding: 15px;
    background: #120014;
    border: 1px solid #ffffff33;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.torenavilCoreLatticeMoveInput:focus, 
.torenavilCoreLatticeMoveTextarea:focus {
    border-color: #FF4FD8;
}

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

.torenavilCoreLatticeMoveCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.torenavilCoreLatticeMoveSubmitBtn {
    width: 100%;
    padding: 18px;
    background: #FF4FD8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 79, 216, 0.4);
}

.torenavilCoreLatticeMoveSubmitBtn:hover {
    background: #ff7be2;
    transform: translateY(-2px);
}

/* Footer */
.torenavilCoreLatticeMoveFooter {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #ffffff11;
}

.torenavilCoreLatticeMoveFooterMainText {
    font-weight: bold;
    margin-bottom: 10px;
}

.torenavilCoreLatticeMoveFooterEmail, 
.torenavilCoreLatticeMoveFooterPhone {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.torenavilCoreLatticeMoveFooterEmail a {
    color: #FF4FD8;
    text-decoration: none;
}

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

.torenavilCoreLatticeMoveFootLink {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
}

.torenavilCoreLatticeMoveFootLink:hover {
    color: #FF4FD8;
}

/* Responsive */
@media (max-width: 992px) {
    .torenavilCoreLatticeMoveHeroWrapper {
        flex-direction: column;
    }
    .torenavilCoreLatticeMoveH1 {
        font-size: 2.8rem;
    }
    .torenavilCoreLatticeMovePriceCard {
        width: calc(33.33% - 20px);
    }
    .torenavilCoreLatticeMoveBenefitsFlex {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .torenavilCoreLatticeMoveToggleLabel {
        display: flex;
    }
    .torenavilCoreLatticeMoveNav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #2a002e;
        padding: 20px;
    }
    .torenavilCoreLatticeMoveNavList {
        flex-direction: column;
        align-items: center;
    }
    #torenavilMenuToggle:checked ~ .torenavilCoreLatticeMoveNav {
        display: block;
    }
    .torenavilCoreLatticeMovePriceCard {
        width: calc(50% - 20px);
    }
    .torenavilCoreLatticeMoveTargetItem {
        flex: 1 1 calc(50% - 30px);
    }
    .torenavilCoreLatticeMoveTargetList {
        columns: 1;
    }
}

@media (max-width: 480px) {
    .torenavilCoreLatticeMovePriceCard, 
    .torenavilCoreLatticeMoveTargetItem {
        width: 100%;
    }
    .torenavilCoreLatticeMoveH1 {
        font-size: 2rem;
    }
}