/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.felopanCoreLatticeMove_Body_Main {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #03070A;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* HEADER */
.felopanCoreLatticeMove_Header_Base {
    background: rgba(3, 7, 10, 0.95);
    border-bottom: 2px solid #42FFD5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.felopanCoreLatticeMove_Header_Logo {
    font-size: 28px;
    font-weight: 800;
    color: #42FFD5;
    letter-spacing: 1px;
}

.felopanCoreLatticeMove_Header_Nav {
    display: flex;
}

.felopanCoreLatticeMove_Nav_List {
    display: flex;
    gap: 25px;
}

.felopanCoreLatticeMove_Nav_Link {
    color: #E0E0E0;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.felopanCoreLatticeMove_Nav_Link:hover {
    color: #42FFD5;
}

.felopanCoreLatticeMove_Nav_Checkbox {
    display: none;
}

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

.felopanCoreLatticeMove_Nav_Button span {
    width: 25px;
    height: 3px;
    background-color: #42FFD5;
    transition: 0.3s;
}

/* HERO SECTION */
.felopanCoreLatticeMove_Hero_Section {
    padding: 80px 20px;
    background: radial-gradient(circle at top right, #0a1f1a 0%, #03070A 60%);
}

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

.felopanCoreLatticeMove_Hero_ImageSide {
    flex: 1;
}

.felopanCoreLatticeMove_Hero_MainImg {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(66, 255, 213, 0.1);
}

.felopanCoreLatticeMove_Hero_TextSide {
    flex: 1.2;
}

.felopanCoreLatticeMove_Hero_Title {
    font-size: 48px;
    color: #42FFD5;
    line-height: 1.2;
    margin-bottom: 20px;
}

.felopanCoreLatticeMove_Hero_Subtitle {
    font-size: 20px;
    color: #A0AEC0;
    margin-bottom: 40px;
}

.felopanCoreLatticeMove_Hero_InfoBlock {
    margin-bottom: 25px;
}

.felopanCoreLatticeMove_Hero_SubHeader {
    color: #42FFD5;
    font-size: 22px;
    margin-bottom: 10px;
}

.felopanCoreLatticeMove_Hero_Para {
    color: #CBD5E0;
    font-size: 16px;
}

.felopanCoreLatticeMove_Hero_CTA {
    margin-top: 40px;
}

/* BUTTONS */
.felopanCoreLatticeMove_Button_Primary {
    display: inline-block;
    background-color: #42FFD5;
    color: #03070A;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.felopanCoreLatticeMove_Button_Primary:hover {
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.5);
    transform: translateY(-2px);
}

.felopanCoreLatticeMove_Button_Secondary {
    display: inline-block;
    background-color: transparent;
    color: #42FFD5;
    padding: 13px 30px;
    border: 2px solid #42FFD5;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.felopanCoreLatticeMove_Button_Secondary:hover {
    background-color: rgba(66, 255, 213, 0.1);
}

/* REVIEWS */
.felopanCoreLatticeMove_Reviews_Section {
    padding: 100px 20px;
    background-color: #050C10;
}

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

.felopanCoreLatticeMove_Reviews_Heading {
    text-align: center;
    font-size: 36px;
    color: #42FFD5;
    margin-bottom: 60px;
}

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

.felopanCoreLatticeMove_Review_Card {
    background: #03070A;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #42FFD5;
}

.felopanCoreLatticeMove_Review_Text {
    font-style: italic;
    font-size: 17px;
    margin-bottom: 20px;
    color: #E2E8F0;
}

.felopanCoreLatticeMove_Review_Author {
    color: #42FFD5;
    font-weight: 700;
}

/* WHO SECTION */
.felopanCoreLatticeMove_Who_Section {
    padding: 100px 20px;
}

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

.felopanCoreLatticeMove_Who_Heading {
    text-align: center;
    font-size: 36px;
    color: #42FFD5;
    margin-bottom: 20px;
}

.felopanCoreLatticeMove_Who_Lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
}

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

.felopanCoreLatticeMove_Who_Item {
    width: calc(50% - 20px);
    background: #111821;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 30px;
}

.felopanCoreLatticeMove_Who_Img {
    width: 100%;
    margin-bottom: 20px;
}

.felopanCoreLatticeMove_Who_SubTitle {
    padding: 0 30px;
    color: #42FFD5;
    margin-bottom: 15px;
}

.felopanCoreLatticeMove_Who_Para {
    padding: 0 30px;
    font-size: 16px;
}

.felopanCoreLatticeMove_Who_List {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.felopanCoreLatticeMove_Who_List li {
    background: rgba(66, 255, 213, 0.05);
    border: 1px solid rgba(66, 255, 213, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: #42FFD5;
}

/* BENEFITS SECTION */
.felopanCoreLatticeMove_Benefits_Section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #03070A, #050C10);
}

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

.felopanCoreLatticeMove_Benefits_Text {
    flex: 1;
}

.felopanCoreLatticeMove_Benefits_Heading {
    font-size: 36px;
    color: #42FFD5;
    margin-bottom: 30px;
}

.felopanCoreLatticeMove_Benefits_Checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.felopanCoreLatticeMove_Benefits_Checklist li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #42FFD5;
    font-weight: bold;
}

.felopanCoreLatticeMove_Benefits_Image {
    flex: 1;
}

.felopanCoreLatticeMove_Benefits_Img {
    border-radius: 50%;
    border: 3px solid #42FFD5;
}

/* QUOTE */
.felopanCoreLatticeMove_Quote_Section {
    padding: 80px 20px;
    text-align: center;
}

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

.felopanCoreLatticeMove_Quote_Box {
    background: #111821;
    padding: 60px;
    border-radius: 30px;
    position: relative;
}

.felopanCoreLatticeMove_Quote_Box::before {
    content: "“";
    font-size: 100px;
    color: rgba(66, 255, 213, 0.2);
    position: absolute;
    top: 20px;
    left: 40px;
}

.felopanCoreLatticeMove_Quote_Content {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #E2E8F0;
}

.felopanCoreLatticeMove_Quote_Author {
    display: block;
    font-size: 20px;
    color: #42FFD5;
    font-weight: bold;
}

.felopanCoreLatticeMove_Quote_Status {
    font-size: 14px;
    color: #718096;
}

/* PRICE STEPS */
.felopanCoreLatticeMove_Price_Section {
    padding: 100px 20px;
    background-color: #03070A;
}

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

.felopanCoreLatticeMove_Price_Heading {
    text-align: center;
    font-size: 36px;
    color: #42FFD5;
    margin-bottom: 60px;
}

.felopanCoreLatticeMove_Steps_Grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.felopanCoreLatticeMove_Step_Card {
    background: #0D151C;
    padding: 40px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 80px 1.5fr 1.5fr 1fr;
    align-items: center;
    gap: 30px;
    border: 1px solid #1A202C;
    transition: 0.3s;
}

.felopanCoreLatticeMove_Step_Card:hover {
    border-color: #42FFD5;
}

.felopanCoreLatticeMove_Step_Featured {
    border: 2px solid #42FFD5;
    background: #111B21;
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.1);
}

.felopanCoreLatticeMove_Step_Number {
    font-size: 40px;
    font-weight: 800;
    color: rgba(66, 255, 213, 0.3);
}

.felopanCoreLatticeMove_Step_Title {
    color: #42FFD5;
    font-size: 22px;
}

.felopanCoreLatticeMove_Step_List {
    font-size: 14px;
}

.felopanCoreLatticeMove_Step_Price {
    font-size: 24px;
    font-weight: 800;
    color: #E2E8F0;
}

/* TEXT CONTENT */
.felopanCoreLatticeMove_TextContent_Section {
    padding: 100px 20px;
}

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

.felopanCoreLatticeMove_Content_Title {
    font-size: 32px;
    color: #42FFD5;
    margin-bottom: 30px;
}

.felopanCoreLatticeMove_Content_Para {
    margin-bottom: 20px;
    color: #CBD5E0;
    font-size: 18px;
}

.felopanCoreLatticeMove_Content_SubTitle {
    margin: 40px 0 20px;
    color: #42FFD5;
}

.felopanCoreLatticeMove_Content_List {
    margin-bottom: 30px;
    padding-left: 20px;
}

.felopanCoreLatticeMove_Content_List li {
    margin-bottom: 10px;
    list-style-type: square;
    color: #42FFD5;
}

.felopanCoreLatticeMove_Content_AltBG {
    background-color: #050C10;
}

/* FAQ */
.felopanCoreLatticeMove_FAQ_Section {
    padding: 100px 20px;
}

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

.felopanCoreLatticeMove_FAQ_Heading {
    text-align: center;
    font-size: 36px;
    color: #42FFD5;
    margin-bottom: 60px;
}

.felopanCoreLatticeMove_FAQ_Item {
    background: #111821;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.felopanCoreLatticeMove_FAQ_Summary {
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #42FFD5;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.felopanCoreLatticeMove_FAQ_Summary::after {
    content: '+';
    font-size: 24px;
}

.felopanCoreLatticeMove_FAQ_Item[open] .felopanCoreLatticeMove_FAQ_Summary::after {
    content: '-';
}

.felopanCoreLatticeMove_FAQ_Content {
    padding: 0 30px 25px;
    color: #CBD5E0;
}

/* FORM */
.felopanCoreLatticeMove_Form_Section {
    padding: 100px 20px;
    background: linear-gradient(to top, #0A1F1A, #03070A);
}

.felopanCoreLatticeMove_Form_Container {
    max-width: 700px;
    margin: 0 auto;
    background: #03070A;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #42FFD5;
}

.felopanCoreLatticeMove_Form_Header {
    text-align: center;
    margin-bottom: 40px;
}

.felopanCoreLatticeMove_Form_Title {
    font-size: 32px;
    color: #42FFD5;
    margin-bottom: 15px;
}

.felopanCoreLatticeMove_Form_Row {
    margin-bottom: 25px;
}

.felopanCoreLatticeMove_Label {
    display: block;
    margin-bottom: 10px;
    color: #42FFD5;
    font-weight: 500;
}

.felopanCoreLatticeMove_Input, .felopanCoreLatticeMove_Textarea {
    width: 100%;
    background: #111821;
    border: 1px solid #2D3748;
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.felopanCoreLatticeMove_Input:focus, .felopanCoreLatticeMove_Textarea:focus {
    border-color: #42FFD5;
    outline: none;
}

.felopanCoreLatticeMove_Checkbox_Wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.felopanCoreLatticeMove_Checkbox_Label a {
    color: #42FFD5;
    text-decoration: underline;
}

.felopanCoreLatticeMove_Form_Submit {
    text-align: center;
    margin-top: 40px;
}

/* FOOTER */
.felopanCoreLatticeMove_Footer_Base {
    padding: 80px 20px 40px;
    background: #03070A;
    border-top: 1px solid #1A202C;
}

.felopanCoreLatticeMove_Footer_Container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.felopanCoreLatticeMove_Footer_Logo {
    font-size: 24px;
    font-weight: 800;
    color: #42FFD5;
    margin-bottom: 20px;
}

.felopanCoreLatticeMove_Footer_Rights {
    font-size: 14px;
    color: #718096;
    margin-bottom: 10px;
}

.felopanCoreLatticeMove_Footer_Contact {
    font-size: 15px;
}

.felopanCoreLatticeMove_Footer_Contact a {
    color: #42FFD5;
}

.felopanCoreLatticeMove_Footer_Links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.felopanCoreLatticeMove_Footer_Links a {
    color: #A0AEC0;
    font-size: 14px;
}

.felopanCoreLatticeMove_Footer_Links a:hover {
    color: #42FFD5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .felopanCoreLatticeMove_Hero_Wrapper, 
    .felopanCoreLatticeMove_Benefits_Wrapper {
        flex-direction: column;
        text-align: center;
    }
    .felopanCoreLatticeMove_Step_Card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .felopanCoreLatticeMove_Benefits_Checklist li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .felopanCoreLatticeMove_Nav_Button {
        display: flex;
    }
    .felopanCoreLatticeMove_Header_Nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #03070A;
        flex-direction: column;
        display: none;
        padding: 40px;
        border-bottom: 2px solid #42FFD5;
    }
    .felopanCoreLatticeMove_Nav_List {
        flex-direction: column;
        align-items: center;
    }
    .felopanCoreLatticeMove_Nav_Checkbox:checked ~ .felopanCoreLatticeMove_Header_Nav {
        display: flex;
    }
    .felopanCoreLatticeMove_Hero_Title {
        font-size: 32px;
    }
    .felopanCoreLatticeMove_Who_Item {
        width: 100%;
    }
    .felopanCoreLatticeMove_Form_Container {
        padding: 30px;
    }
}