/* RESET AND BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.tenqaroCoreControlLatticeMainBody {
    background-color: #050607;
    color: #e0e0e0;
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #5AF3FF;
    margin-bottom: 20px;
}

h1.tenqaroCoreControlLatticeHeroH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(90, 243, 255, 0.4);
}

h2.tenqaroCoreControlLatticeSectionH2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

h2.tenqaroCoreControlLatticeSectionH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

/* CONTAINER */
.tenqaroCoreControlLatticeSectionContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* HEADER */
.tenqaroCoreControlLatticeHeader {
    background: rgba(5, 6, 7, 0.95);
    border-bottom: 1px solid #5AF3FF;
    box-shadow: 0 4px 15px rgba(90, 243, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.tenqaroCoreControlLatticeHeaderContainer {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.tenqaroCoreControlLatticeLogoText {
    font-size: 24px;
    font-weight: 900;
    color: #5AF3FF;
    text-shadow: 0 0 10px #5AF3FF;
    letter-spacing: 4px;
}

.tenqaroCoreControlLatticeNavList {
    display: flex;
    list-style: none;
}

.tenqaroCoreControlLatticeNavLink {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.tenqaroCoreControlLatticeNavLink:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px #5AF3FF;
}

/* BURGER MENU (No JS) */
.tenqaroCoreControlLatticeMenuCheckbox {
    display: none;
}

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

.tenqaroCoreControlLatticeBurgerLabel span {
    width: 30px;
    height: 3px;
    background: #5AF3FF;
    transition: 0.4s;
    box-shadow: 0 0 5px #5AF3FF;
}

/* HERO SECTION */
.tenqaroCoreControlLatticeHeroSection {
    position: relative;
    padding-top: 150px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #050607;
}

.tenqaroCoreControlLatticeCyberGridOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(90, 243, 255, 0.05) 1px, transparent 1px), 
                      linear-gradient(to bottom, rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.tenqaroCoreControlLatticeHeroContainer {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 5;
}

.tenqaroCoreControlLatticeHeroContentWrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.tenqaroCoreControlLatticeHeroImageSide {
    flex: 1;
}

.tenqaroCoreControlLatticeHeroMainImg {
    width: 100%;
    height: auto;
    border: 1px solid #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
    object-fit: cover;
}

.tenqaroCoreControlLatticeHeroTextSide {
    flex: 1;
}

.tenqaroCoreControlLatticeHeroSub {
    font-size: 1.5rem;
    color: #5AF3FF;
    margin-bottom: 25px;
    font-weight: 300;
}

.tenqaroCoreControlLatticeHeroPara {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

.tenqaroCoreControlLatticeCtaButton {
    display: inline-block;
    background: #5AF3FF;
    color: #050607;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: 0.4s;
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.3);
}

.tenqaroCoreControlLatticeCtaButton:hover {
    background: #fff;
    box-shadow: 0 0 30px #5AF3FF;
    transform: translateY(-3px);
}

.tenqaroCoreControlLatticeHeroTripleBlocks {
    display: flex;
    gap: 30px;
}

.tenqaroCoreControlLatticeHeroMiniCard {
    flex: 1;
    background: rgba(90, 243, 255, 0.03);
    border: 1px solid rgba(90, 243, 255, 0.2);
    padding: 20px;
    transition: 0.3s;
}

.tenqaroCoreControlLatticeHeroMiniCard:hover {
    border-color: #5AF3FF;
    box-shadow: inset 0 0 15px rgba(90, 243, 255, 0.1);
}

.tenqaroCoreControlLatticeMiniImg {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(0.5) contrast(1.2);
}

.tenqaroCoreControlLatticeMiniH3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tenqaroCoreControlLatticeMiniP {
    font-size: 0.95rem;
    color: #aaa;
}

/* TARGET AUDIENCE SECTION */
.tenqaroCoreControlLatticeTargetSection {
    background: #080a0c;
}

.tenqaroCoreControlLatticeTopImageWrapper {
    margin-bottom: 50px;
}

.tenqaroCoreControlLatticeFullImg {
    width: 100%;
    height: auto;
    border: 1px solid rgba(90, 243, 255, 0.3);
}

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

.tenqaroCoreControlLatticeTargetList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
}

.tenqaroCoreControlLatticeTargetItem {
    background: rgba(255,255,255,0.02);
    border-left: 4px solid #5AF3FF;
    padding: 20px;
    font-size: 1.05rem;
    transition: 0.3s;
}

.tenqaroCoreControlLatticeTargetItem:hover {
    background: rgba(90, 243, 255, 0.05);
    transform: translateX(10px);
}

/* PRICE SECTION */
.tenqaroCoreControlLatticePriceSection {
    background: #050607;
}

.tenqaroCoreControlLatticePriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.tenqaroCoreControlLatticePriceCard {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid #5AF3FF;
    padding: 2px;
    position: relative;
    transition: 0.4s;
}

.tenqaroCoreControlLatticeCardInner {
    background: #050607;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(90, 243, 255, 0.3);
}

.tenqaroCoreControlLatticePriceCard:hover {
    box-shadow: 0 0 25px rgba(90, 243, 255, 0.2);
    transform: scale(1.02);
}

.tenqaroCoreControlLatticeFeaturedCard {
    border-width: 3px;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.2);
}

.tenqaroCoreControlLatticePriceTitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.tenqaroCoreControlLatticePriceValue {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(90, 243, 255, 0.2);
    padding-bottom: 15px;
}

.tenqaroCoreControlLatticePriceFeatures {
    list-style: none;
}

.tenqaroCoreControlLatticePriceFeatures li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* BENEFITS SECTION */
.tenqaroCoreControlLatticeBenefitsSection {
    background: #080a0c;
}

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

.tenqaroCoreControlLatticeMirrorTextSide {
    flex: 1;
}

.tenqaroCoreControlLatticeMirrorImageSide {
    flex: 1;
}

.tenqaroCoreControlLatticeMirrorImg {
    width: 100%;
    border: 1px solid #5AF3FF;
    filter: drop-shadow(0 0 15px rgba(90, 243, 255, 0.2));
}

.tenqaroCoreControlLatticeBenefitsList {
    list-style: none;
    margin-top: 30px;
}

.tenqaroCoreControlLatticeBenefitItem {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.tenqaroCoreControlLatticeMarker {
    width: 12px;
    height: 12px;
    background: #5AF3FF;
    margin-top: 8px;
    box-shadow: 0 0 8px #5AF3FF;
    flex-shrink: 0;
}

/* EXPERT SECTION */
.tenqaroCoreControlLatticeExpertSection {
    background: #050607;
}

.tenqaroCoreControlLatticeQuoteBlock {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(90, 243, 255, 0.05);
    padding: 60px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    position: relative;
}

.tenqaroCoreControlLatticeQuote {
    font-size: 1.8rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.4;
}

.tenqaroCoreControlLatticeExpertName {
    text-align: right;
    font-size: 1.2rem;
    color: #5AF3FF;
    font-weight: 700;
    margin-bottom: 40px;
}

.tenqaroCoreControlLatticeDetails {
    margin-bottom: 15px;
    border: 1px solid rgba(90, 243, 255, 0.2);
}

.tenqaroCoreControlLatticeSummary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 700;
    color: #5AF3FF;
    background: rgba(90, 243, 255, 0.1);
    list-style: none;
}

.tenqaroCoreControlLatticeDetailsContent {
    padding: 20px;
    background: rgba(0,0,0,0.3);
    color: #ccc;
}

/* FAQ SECTION */
.tenqaroCoreControlLatticeFaqSection {
    background: #080a0c;
}

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

.tenqaroCoreControlLatticeFaqItem {
    margin-bottom: 15px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(90, 243, 255, 0.1);
}

.tenqaroCoreControlLatticeFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.tenqaroCoreControlLatticeFaqSummary::after {
    content: '+';
    color: #5AF3FF;
    font-size: 1.5rem;
}

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

/* FORM SECTION */
.tenqaroCoreControlLatticeFormSection {
    background: #050607;
}

.tenqaroCoreControlLatticeFormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #0a0c0e;
    padding: 50px;
    border: 1px solid #5AF3FF;
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.1);
}

.tenqaroCoreControlLatticeFormSub {
    text-align: center;
    margin-bottom: 40px;
    color: #aaa;
}

.tenqaroCoreControlLatticeInputGroup {
    margin-bottom: 25px;
}

.tenqaroCoreControlLatticeLabel {
    display: block;
    margin-bottom: 8px;
    color: #5AF3FF;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.tenqaroCoreControlLatticeInput, 
.tenqaroCoreControlLatticeTextarea {
    width: 100%;
    background: #050607;
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 15px;
    color: #fff;
    font-family: inherit;
}

.tenqaroCoreControlLatticeInput:focus, 
.tenqaroCoreControlLatticeTextarea:focus {
    outline: none;
    border-color: #5AF3FF;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.2);
}

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

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

.tenqaroCoreControlLatticeCheckboxLabel {
    font-size: 0.85rem;
    color: #aaa;
}

.tenqaroCoreControlLatticeCheckboxLabel a {
    color: #5AF3FF;
}

.tenqaroCoreControlLatticeSubmitBtn {
    width: 100%;
    background: #5AF3FF;
    color: #050607;
    border: none;
    padding: 20px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.tenqaroCoreControlLatticeSubmitBtn:hover {
    background: #fff;
    box-shadow: 0 0 20px #5AF3FF;
}

/* EXTRA SECTIONS */
.tenqaroCoreControlLatticeExtraSection {
    background: #080a0c;
    border-top: 1px solid rgba(90, 243, 255, 0.1);
}

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

.tenqaroCoreControlLatticeTextColumn p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #ccc;
    text-align: justify;
}

.tenqaroCoreControlLatticeSimpleList {
    list-style: none;
    margin-top: 30px;
}

.tenqaroCoreControlLatticeSimpleList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(90, 243, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.tenqaroCoreControlLatticeSimpleList li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #5AF3FF;
    font-weight: 900;
}

/* FOOTER */
.tenqaroCoreControlLatticeFooter {
    background: #050607;
    border-top: 2px solid #5AF3FF;
    padding: 60px 0 30px;
}

.tenqaroCoreControlLatticeFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.tenqaroCoreControlLatticeFooterBrand {
    font-size: 28px;
    font-weight: 900;
    color: #5AF3FF;
    text-shadow: 0 0 10px #5AF3FF;
}

.tenqaroCoreControlLatticeFooterEmail a, 
.tenqaroCoreControlLatticeFooterPhone {
    color: #fff;
    text-decoration: none;
}

.tenqaroCoreControlLatticeFooterMiddle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.tenqaroCoreControlLatticeFooterBottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.tenqaroCoreControlLatticeFooterLinks {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.tenqaroCoreControlLatticeFooterLinks a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.tenqaroCoreControlLatticeFooterLinks a:hover {
    color: #5AF3FF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    h1.tenqaroCoreControlLatticeHeroH1 { font-size: 2.8rem; }
    .tenqaroCoreControlLatticeHeroContentWrapper { flex-direction: column; }
    .tenqaroCoreControlLatticeHeroTripleBlocks { flex-direction: column; }
    .tenqaroCoreControlLatticeMirrorWrapper { flex-direction: column; }
    .tenqaroCoreControlLatticeTargetList { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .tenqaroCoreControlLatticeBurgerLabel { display: flex; z-index: 1001; }
    .tenqaroCoreControlLatticeNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #050607;
        padding-top: 100px;
        transition: 0.5s;
        border-left: 1px solid #5AF3FF;
    }
    .tenqaroCoreControlLatticeNavList { flex-direction: column; align-items: center; }
    .tenqaroCoreControlLatticeMenuCheckbox:checked ~ .tenqaroCoreControlLatticeNav { right: 0; }
    .tenqaroCoreControlLatticeMenuCheckbox:checked ~ .tenqaroCoreControlLatticeBurgerLabel span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
    .tenqaroCoreControlLatticeMenuCheckbox:checked ~ .tenqaroCoreControlLatticeBurgerLabel span:nth-child(2) { opacity: 0; }
    .tenqaroCoreControlLatticeMenuCheckbox:checked ~ .tenqaroCoreControlLatticeBurgerLabel span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    
    .tenqaroCoreControlLatticeFormWrapper { padding: 30px 20px; }
}

/* ADDITIONAL DECORATIVE LINES */
.tenqaroCoreControlLatticePriceCard::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    border-top: 2px solid #5AF3FF;
    border-left: 2px solid #5AF3FF;
}

.tenqaroCoreControlLatticePriceCard::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #5AF3FF;
    border-right: 2px solid #5AF3FF;
}