/* RESET AND VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --kerimun-bg: #0A0C10;
    --kerimun-surface: #15181D;
    --kerimun-lime: #CFFF35;
    --kerimun-text: #FFFFFF;
    --kerimun-text-dim: #A0A0A0;
    --kerimun-border: #2A2D35;
    --kerimun-gradient: linear-gradient(135deg, #0A0C10 0%, #1A1D24 100%);
}

html {
    scroll-behavior: smooth;
}

body.kerimunCoreControlLatticeBody {
    background-color: var(--kerimun-bg);
    color: var(--kerimun-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER STYLES */
header.kerimunCoreControlLatticeHeader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--kerimun-border);
}

.kerimunCoreControlLatticeNavContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kerimunCoreControlLatticeLogo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--kerimun-lime);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.kerimunCoreControlLatticePulseLine {
    height: 2px;
    background: var(--kerimun-lime);
    width: 100%;
    animation: kerimunPulseAnim 3s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes kerimunPulseAnim {
    0% { opacity: 0.2; transform: scaleX(0.8); }
    50% { opacity: 0.8; transform: scaleX(1); }
    100% { opacity: 0.2; transform: scaleX(0.8); }
}

nav.kerimunCoreControlLatticeNavMenu {
    display: flex;
    gap: 2rem;
}

.kerimunCoreControlLatticeNavLink {
    color: var(--kerimun-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.kerimunCoreControlLatticeNavLink:hover {
    color: var(--kerimun-lime);
}

/* MOBILE MENU */
.kerimunCoreControlLatticeMenuToggle {
    display: none;
}

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

.kerimunCoreControlLatticeBurger span {
    width: 30px;
    height: 3px;
    background-color: var(--kerimun-lime);
    border-radius: 2px;
    transition: 0.3s;
}

/* HERO SECTION */
.kerimunCoreControlLatticeHeroSection {
    padding: 8rem 2rem;
    background: var(--kerimun-gradient);
    position: relative;
    overflow: hidden;
}

.kerimunCoreControlLatticeHeroWrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.kerimunCoreControlLatticeHeroImageCol {
    flex: 1;
}

.kerimunCoreControlLatticeHeroImg {
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--kerimun-border);
}

.kerimunCoreControlLatticeHeroTextCol {
    flex: 1.2;
}

.kerimunCoreControlLatticeHeroTitle {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.kerimunCoreControlLatticeHighlight {
    color: var(--kerimun-lime);
    display: block;
}

.kerimunCoreControlLatticeHeroSub {
    font-size: 1.5rem;
    color: var(--kerimun-lime);
    margin-bottom: 2rem;
    font-weight: 500;
}

.kerimunCoreControlLatticeHeroPara {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--kerimun-text-dim);
    max-width: 600px;
}

.kerimunCoreControlLatticeCtaBtn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--kerimun-lime);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(207, 255, 53, 0);
}

.kerimunCoreControlLatticeCtaBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(207, 255, 53, 0.3);
    background-color: #fff;
}

/* SECTION UTILS */
.kerimunCoreControlLatticeContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.kerimunCoreControlLatticeSectionTitle {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
    border-left: 5px solid var(--kerimun-lime);
    padding-left: 1.5rem;
}

/* AUDIENCE SECTION */
.kerimunCoreControlLatticeAudienceGrid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.kerimunCoreControlLatticeAudienceText {
    flex: 1;
}

.kerimunCoreControlLatticeIntro {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--kerimun-lime);
}

.kerimunCoreControlLatticeList {
    list-style: none;
}

.kerimunCoreControlLatticeListItem {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--kerimun-text-dim);
}

.kerimunCoreControlLatticeListItem::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--kerimun-lime);
    font-weight: bold;
}

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

.kerimunCoreControlLatticeProductImg {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--kerimun-border);
}

.kerimunCoreControlLatticePriceTag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--kerimun-lime);
    color: #000;
    padding: 1.5rem 2rem;
    font-weight: 900;
    font-size: 1.2rem;
    transform: rotate(-3deg);
    box-shadow: 10px 10px 0px rgba(255,255,255,0.1);
}

/* PRICE SECTION */
.kerimunCoreControlLatticeSliderWrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--kerimun-lime) var(--kerimun-surface);
}

.kerimunCoreControlLatticePriceCard {
    min-width: 350px;
    background: var(--kerimun-surface);
    padding: 3rem 2rem;
    border: 1px solid var(--kerimun-border);
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.kerimunCoreControlLatticePriceCard:hover {
    border-color: var(--kerimun-lime);
}

.kerimunCoreControlLatticePriceFeatured {
    background: #1A1D24;
    border: 2px solid var(--kerimun-lime);
    transform: scale(1.05);
}

.kerimunCoreControlLatticePkgName {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--kerimun-lime);
    text-transform: uppercase;
}

.kerimunCoreControlLatticePkgPrice {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.kerimunCoreControlLatticePkgList {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.kerimunCoreControlLatticePkgList li {
    margin-bottom: 0.8rem;
    color: var(--kerimun-text-dim);
    font-size: 0.95rem;
}

.kerimunCoreControlLatticePkgBtn {
    display: block;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--kerimun-lime);
    color: var(--kerimun-lime);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.3s;
}

.kerimunCoreControlLatticePkgBtn:hover {
    background: var(--kerimun-lime);
    color: #000;
}

/* BENEFITS SECTION */
.kerimunCoreControlLatticeBenefitsGrid {
    display: flex;
    gap: 4rem;
}

.kerimunCoreControlLatticeBenefitsImageCol {
    flex: 1;
}

.kerimunCoreControlLatticeBenImg {
    width: 100%;
    object-fit: cover;
}

.kerimunCoreControlLatticeBenefitsTextCol {
    flex: 1.5;
}

.kerimunCoreControlLatticeBenItems {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.kerimunCoreControlLatticeBenTitle {
    color: var(--kerimun-lime);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.kerimunCoreControlLatticePara {
    font-size: 1.1rem;
    color: var(--kerimun-text-dim);
}

/* QUOTE SECTION */
.kerimunCoreControlLatticeQuoteSection {
    background: var(--kerimun-surface);
}

.kerimunCoreControlLatticeQuote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.kerimunCoreControlLatticeQuoteText {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.kerimunCoreControlLatticeQuoteAuthor {
    display: block;
    font-style: normal;
}

.kerimunCoreControlLatticeQuoteAuthor strong {
    font-size: 1.2rem;
    color: var(--kerimun-lime);
}

.kerimunCoreControlLatticeQuoteAuthor span {
    color: var(--kerimun-text-dim);
    font-size: 0.9rem;
}

/* TEXT SECTIONS */
.kerimunCoreControlLatticeTextSection {
    padding: 4rem 0;
}

.kerimunCoreControlLatticeBgAlt {
    background: #0F1218;
}

.kerimunCoreControlLatticeContentArea p {
    margin-bottom: 1.5rem;
    color: var(--kerimun-text-dim);
    font-size: 1.1rem;
}

/* FAQ SECTION */
.kerimunCoreControlLatticeFaqGrid {
    display: grid;
    gap: 1.5rem;
}

.kerimunCoreControlLatticeFaqItem {
    background: var(--kerimun-surface);
    border: 1px solid var(--kerimun-border);
}

.kerimunCoreControlLatticeFaqSummary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--kerimun-lime);
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.kerimunCoreControlLatticeFaqSummary::after {
    content: "+";
}

.kerimunCoreControlLatticeFaqItem[open] .kerimunCoreControlLatticeFaqSummary::after {
    content: "-";
}

.kerimunCoreControlLatticeFaqText {
    padding: 0 1.5rem 1.5rem;
    color: var(--kerimun-text-dim);
}

/* FORM SECTION */
.kerimunCoreControlLatticeFormHeader {
    text-align: center;
    margin-bottom: 4rem;
}

.kerimunCoreControlLatticeFormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--kerimun-surface);
    padding: 4rem;
    border: 1px solid var(--kerimun-border);
}

.kerimunCoreControlLatticeFormGroup {
    margin-bottom: 2rem;
}

.kerimunCoreControlLatticeLabel {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--kerimun-lime);
}

.kerimunCoreControlLatticeInput,
.kerimunCoreControlLatticeTextarea {
    width: 100%;
    padding: 1rem;
    background: var(--kerimun-bg);
    border: 1px solid var(--kerimun-border);
    color: #fff;
    outline: none;
}

.kerimunCoreControlLatticeInput:focus,
.kerimunCoreControlLatticeTextarea:focus {
    border-color: var(--kerimun-lime);
}

.kerimunCoreControlLatticeTextarea {
    height: 150px;
    resize: vertical;
}

.kerimunCoreControlLatticeCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.kerimunCoreControlLatticeCheckboxLabel {
    font-size: 0.9rem;
    color: var(--kerimun-text-dim);
}

.kerimunCoreControlLatticeCheckboxLabel a {
    color: var(--kerimun-lime);
}

.kerimunCoreControlLatticeSubmitBtn {
    width: 100%;
    padding: 1.2rem;
    background: var(--kerimun-lime);
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.kerimunCoreControlLatticeSubmitBtn:hover {
    background: #fff;
}

/* FOOTER */
.kerimunCoreControlLatticeFooter {
    background: #050608;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--kerimun-border);
}

.kerimunCoreControlLatticeFooterMain {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.kerimunCoreControlLatticeFooterLogo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--kerimun-lime);
    margin-bottom: 1rem;
}

.kerimunCoreControlLatticeFooterContact a {
    color: var(--kerimun-lime);
    text-decoration: none;
}

.kerimunCoreControlLatticeFooterBottom {
    padding-top: 2rem;
    border-top: 1px solid var(--kerimun-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--kerimun-text-dim);
}

.kerimunCoreControlLatticeFooterLinks {
    display: flex;
    gap: 1.5rem;
}

.kerimunCoreControlLatticeFooterLinks a {
    color: var(--kerimun-text-dim);
    text-decoration: none;
}

.kerimunCoreControlLatticeFooterLinks a:hover {
    color: var(--kerimun-lime);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .kerimunCoreControlLatticeHeroWrapper,
    .kerimunCoreControlLatticeAudienceGrid,
    .kerimunCoreControlLatticeBenefitsGrid {
        flex-direction: column;
        text-align: center;
    }

    .kerimunCoreControlLatticeHeroTitle {
        font-size: 3.5rem;
    }

    .kerimunCoreControlLatticeSectionTitle {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--kerimun-lime);
        display: inline-block;
        padding-bottom: 0.5rem;
    }

    .kerimunCoreControlLatticeBurger {
        display: flex;
    }

    nav.kerimunCoreControlLatticeNavMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--kerimun-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        display: none;
        border-bottom: 1px solid var(--kerimun-border);
    }

    .kerimunCoreControlLatticeMenuToggle:checked ~ .kerimunCoreControlLatticeNavMenu {
        display: flex;
    }

    .kerimunCoreControlLatticeBenItems {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .kerimunCoreControlLatticeHeroTitle {
        font-size: 2.5rem;
    }

    .kerimunCoreControlLatticeFormWrapper {
        padding: 2rem;
    }

    .kerimunCoreControlLatticeFooterBottom {
        flex-direction: column;
        text-align: center;
    }

    .kerimunCoreControlLatticeFooterLinks {
        flex-direction: column;
        gap: 0.5rem;
    }
}