/* Amber Carbon (FIXED) — drop-in replacement
   Keeps your existing classes/structure, but scopes rules to avoid collisions
   + adds missing layout helpers so nothing “косит”. */

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

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

/* Optional: common container helper (safe, does not break) */
.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* =========================
   HEADER
   ========================= */
header.MnOpQrStUvWx{
    background-color:#0c0d0e;
    border-bottom:2px solid #FFC55E;
    position:sticky;
    top:0;
    z-index:1000;
    padding:14px 0;
}

/* header inner row */
header.MnOpQrStUvWx > div.YzAbCdEfGhIj{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
    gap:16px;
}

/* brand */
header.MnOpQrStUvWx > div.YzAbCdEfGhIj > div.KlMnOpQrStUv{
    font-size:1.6rem;
    font-weight:800;
    color:#FFC55E;
    letter-spacing:2px;
    text-transform:uppercase;
    white-space:nowrap;
}

/* burger toggle */
header.MnOpQrStUvWx input.WxYzAbCdEfGh{ display:none; }

header.MnOpQrStUvWx label.IjKlMnOpQrSt{
    display:none;
    flex-direction:column;
    cursor:pointer;
    padding:6px;
    border-radius:10px;
    user-select:none;
}

header.MnOpQrStUvWx label.IjKlMnOpQrSt span{
    width:26px;
    height:3px;
    background-color:#FFC55E;
    margin:3px 0;
    border-radius:2px;
    transition:transform .25s, opacity .25s;
}

/* nav */
header.MnOpQrStUvWx nav.AbCdEfGhIjKl{ position:relative; }

header.MnOpQrStUvWx nav.AbCdEfGhIjKl ul.MnOpQrStUvWx{
    display:flex;
    list-style:none;
    gap:22px;
    align-items:center;
}

header.MnOpQrStUvWx nav.AbCdEfGhIjKl ul.MnOpQrStUvWx li{ margin:0; }

header.MnOpQrStUvWx nav.AbCdEfGhIjKl ul.MnOpQrStUvWx li a{
    text-decoration:none;
    color:#ffffff;
    font-weight:600;
    font-size:.92rem;
    padding:8px 2px;
    display:inline-block;
    transition:color .25s, text-shadow .25s;
}

header.MnOpQrStUvWx nav.AbCdEfGhIjKl ul.MnOpQrStUvWx li a:hover{
    color:#FFC55E;
    text-shadow:0 0 12px rgba(255,197,94,.25);
}

/* =========================
   HERO
   ========================= */
section.hero-section{
    padding:80px 0;
}

section.hero-section > div.WxYzAbCdEfGh{
    max-width:1200px;
    margin:0 auto 60px;
    padding:0 20px;
    display:flex;
    align-items:center;
    gap:50px;
}

/* left image col (you used div.IjKlMnOpQrSt) */
section.hero-section > div.WxYzAbCdEfGh > div.IjKlMnOpQrSt{
    flex:1;
    min-width:280px;
}

section.hero-section > div.WxYzAbCdEfGh > div.IjKlMnOpQrSt img{
    width:100%;
    max-width:100%;
    border-radius:12px;
    border:1px solid rgba(255,197,94,.15);
    box-shadow:0 10px 30px rgba(255,197,94,.10);
    object-fit:cover;
    display:block;
}

/* right text col (you used div.MnOpQrStUvWx) */
section.hero-section > div.WxYzAbCdEfGh > div.MnOpQrStUvWx{
    flex:1;
    min-width:280px;
}

section.hero-section div.MnOpQrStUvWx h1{
    font-size:3rem;
    color:#FFC55E;
    margin-bottom:18px;
    line-height:1.15;
}

section.hero-section div.MnOpQrStUvWx p{
    margin-bottom:16px;
    font-size:1.08rem;
    color:#cccccc;
}

section.hero-section div.MnOpQrStUvWx a{
    display:inline-block;
    padding:14px 36px;
    background-color:#FFC55E;
    color:#060708;
    text-decoration:none;
    font-weight:900;
    border-radius:10px;
    transition:box-shadow .25s, transform .25s, filter .25s;
    box-shadow:0 6px 18px rgba(255,197,94,.22);
}

section.hero-section div.MnOpQrStUvWx a:hover{
    box-shadow:0 0 22px rgba(255,197,94,.45);
    transform:translateY(-1px);
    filter:brightness(1.02);
}

/* extra grid under hero */
section.hero-section div.hero-extra-grid{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

section.hero-section div.hero-extra-grid div{
    background-color:#111214;
    padding:18px;
    border-radius:14px;
    border:1px solid rgba(255,197,94,.10);
    text-align:center;
}

section.hero-section div.hero-extra-grid img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:12px;
    display:block;
}

section.hero-section div.hero-extra-grid h3{
    color:#FFC55E;
    margin-bottom:8px;
    font-size:1.05rem;
}

/* =========================
   TARGET AUDIENCE
   ========================= */
section.target-audience{
    padding:100px 0;
    background-color:#0c0d0e;
}

section.target-audience > div.audience-img-top{
    max-width:1200px;
    margin:0 auto 50px;
    padding:0 20px;
}

section.target-audience > div.audience-img-top img{
    width:100%;
    border-radius:16px;
    border:1px solid rgba(255,197,94,.12);
    display:block;
}

section.target-audience h2.IjKlMnOpQrSt{
    font-size:2.4rem;
    color:#FFC55E;
    text-align:center;
    margin:0 auto 24px;
    padding:0 20px;
    max-width:1000px;
}

section.target-audience h2.IjKlMnOpQrSt::after{
    content:'✦';
    color:#FFC55E;
    font-size:1.1rem;
    display:block;
    margin-top:10px;
    opacity:.95;
}

section.target-audience p.AbCdEfGhIjKl{
    text-align:center;
    max-width:860px;
    margin:0 auto 44px;
    padding:0 20px;
    font-size:1.15rem;
    color:#cfcfcf;
}

/* IMPORTANT: ul.MnOpQrStUvWx also used in header nav.
   Scope list grid ONLY inside target-audience */
section.target-audience ul.MnOpQrStUvWx{
    list-style:none;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    max-width:1000px;
    margin:0 auto;
    padding:0 20px;
}

section.target-audience ul.MnOpQrStUvWx li{
    background:#1a1b1d;
    padding:18px 18px 18px 16px;
    border-left:4px solid #FFC55E;
    border-radius:12px;
    color:#d8d8d8;
    border-top:1px solid rgba(255,197,94,.08);
    border-right:1px solid rgba(255,197,94,.08);
    border-bottom:1px solid rgba(255,197,94,.08);
}

/* =========================
   PRICING
   ========================= */
section.pricing-section{
    padding:100px 0;
}

section.pricing-section h2.IjKlMnOpQrSt{
    max-width:1000px;
    margin:0 auto;
    padding:0 20px;
}

section.pricing-section div.price-grid{
    max-width:1200px;
    margin:50px auto 0;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

section.pricing-section div.price-card{
    background-color:#111214;
    padding:34px 18px;
    border:1px solid rgba(255,197,94,.10);
    border-radius:16px;
    text-align:center;
    transition:transform .25s, box-shadow .25s, border-color .25s;
    display:flex;
    flex-direction:column;
}

section.pricing-section div.price-card:hover{
    transform:translateY(-5px);
    border-color:rgba(255,197,94,.28);
    box-shadow:0 0 22px rgba(255,197,94,.10);
}

section.pricing-section div.price-card.featured{
    border:2px solid #FFC55E;
    background-color:#161719;
    transform:none; /* remove forced scale to avoid layout “косит” */
    box-shadow:0 0 22px rgba(255,197,94,.10);
}

section.pricing-section div.price-card h3{
    font-size:1.35rem;
    color:#FFC55E;
    margin-bottom:14px;
}

section.pricing-section div.price-card div{
    font-size:1.9rem;
    font-weight:900;
    margin-bottom:18px;
    color:#f0f0f0;
}

section.pricing-section div.price-card ul{
    list-style:none;
    text-align:left;
    margin-bottom:22px;
    flex:1;
    min-height:160px;
}

section.pricing-section div.price-card ul li{
    margin-bottom:10px;
    font-size:.95rem;
    position:relative;
    padding-left:18px;
    color:#d0d0d0;
}

section.pricing-section div.price-card ul li::before{
    content:'→';
    color:#FFC55E;
    position:absolute;
    left:0;
}

section.pricing-section div.price-card a{
    display:block;
    padding:12px;
    border:1px solid #FFC55E;
    color:#FFC55E;
    text-decoration:none;
    border-radius:12px;
    transition:background-color .25s, color .25s, box-shadow .25s;
    font-weight:800;
}

section.pricing-section div.price-card a:hover{
    background-color:#FFC55E;
    color:#060708;
    box-shadow:0 0 18px rgba(255,197,94,.22);
}

section.pricing-section div.price-card.featured a{
    background-color:#FFC55E;
    color:#060708;
}

/* =========================
   BENEFITS
   ========================= */
section.benefits-section{
    padding:100px 0;
    background-color:#0c0d0e;
}

section.benefits-section > div.split-view{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    gap:60px;
}

section.benefits-section > div.split-view > div.text-side{ flex:1; min-width:280px; }
section.benefits-section > div.split-view > div.image-side{ flex:1; min-width:280px; }

section.benefits-section div.image-side img{
    width:100%;
    border-radius:24px 24px 0 0;
    border:4px solid rgba(255,197,94,.75);
    display:block;
    box-shadow:0 10px 30px rgba(255,197,94,.10);
}

section.benefits-section ul.list-styled{
    list-style:none;
    margin-top:24px;
}

section.benefits-section ul.list-styled li{
    margin-bottom:12px;
    font-size:1.06rem;
    display:flex;
    align-items:flex-start;
    color:#d7d7d7;
}

section.benefits-section ul.list-styled li::before{
    content:'✦';
    color:#FFC55E;
    margin-right:12px;
    line-height:1.2;
}

/* =========================
   QUOTE
   ========================= */
section.quote-section{
    padding:80px 0;
    background:
        linear-gradient(rgba(6,7,8,0.85), rgba(6,7,8,0.85)),
        url('https://placehold.co/1200x600/060708/111111?text=Pattern');
    background-size:cover;
    background-position:center;
}

section.quote-section > div.quote-container{
    max-width:820px;
    margin:0 auto;
    padding:0 20px;
    text-align:center;
}

section.quote-section blockquote.WxYzAbCdEfGh p{
    font-size:1.7rem;
    font-style:italic;
    color:#ffffff;
    margin-bottom:22px;
    line-height:1.4;
}

section.quote-section blockquote.WxYzAbCdEfGh cite{
    display:block;
    font-size:1.15rem;
    color:#FFC55E;
    font-style:normal;
    font-weight:900;
}

section.quote-section blockquote.WxYzAbCdEfGh span{
    display:block;
    margin-top:6px;
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#d2d2d2;
}

/* =========================
   FAQ
   ========================= */
section.faq-section{ padding:100px 0; }

section.faq-section > div.faq-list{
    max-width:820px;
    margin:50px auto 0;
    padding:0 20px;
}

section.faq-section details.MnOpQrStUvWx{
    background-color:#111214;
    margin-bottom:14px;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,197,94,.10);
}

section.faq-section summary.YzAbCdEfGhIj{
    padding:18px 18px;
    cursor:pointer;
    font-weight:900;
    color:#FFC55E;
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

section.faq-section summary.YzAbCdEfGhIj::-webkit-details-marker{ display:none; }

section.faq-section summary.YzAbCdEfGhIj::after{ content:'+'; }

section.faq-section details[open] summary.YzAbCdEfGhIj::after{ content:'-'; }

section.faq-section details div.KlMnOpQrStUv{
    padding:0 18px 18px;
    color:#bbbbbb;
}

/* =========================
   ARTICLE SECTIONS
   ========================= */
section.article-section{
    padding:80px 0;
    max-width:1000px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

section.alt-bg{
    background-color:#0c0d0e;
    max-width:100%;
    padding:80px 20px;
}

section.alt-bg div.AbCdEfGhIjKl{
    max-width:1000px;
    margin:0 auto;
}

div.check-list-box{
    background:#1a1b1d;
    padding:26px;
    margin-top:26px;
    border-radius:14px;
    border:1px solid rgba(255,197,94,.08);
}

/* =========================
   CONTACT
   ========================= */
section.contact-section{
    padding:100px 0;
    background-color:#0c0d0e;
}

section.contact-section > div.form-wrapper{
    max-width:620px;
    margin:50px auto 0;
    padding:0 20px;
}

section.contact-section div.input-group{ margin-bottom:18px; }

section.contact-section div.input-group label{
    display:block;
    margin-bottom:8px;
    color:#FFC55E;
    font-weight:900;
    font-size:.92rem;
}

section.contact-section div.input-group input,
section.contact-section div.input-group textarea{
    width:100%;
    padding:12px;
    background-color:#1a1b1d;
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    border-radius:12px;
    outline:none;
    transition:border-color .25s, box-shadow .25s;
}

section.contact-section div.input-group textarea{
    min-height:120px;
    resize:vertical;
}

section.contact-section div.input-group input:focus,
section.contact-section div.input-group textarea:focus{
    border-color:rgba(255,197,94,.55);
    box-shadow:0 0 12px rgba(255,197,94,.14);
}

section.contact-section div.checkbox-group{
    margin-bottom:22px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#cfcfcf;
    font-size:.92rem;
}

section.contact-section div.checkbox-group label a{ color:#FFC55E; }

/* IMPORTANT: button.KlMnOpQrStUv collides with logo class.
   Keep as-is but make it specific to contact section */
section.contact-section button.KlMnOpQrStUv{
    width:100%;
    padding:14px;
    background-color:#FFC55E;
    color:#060708;
    border:none;
    border-radius:12px;
    font-weight:900;
    cursor:pointer;
    transition:box-shadow .25s, transform .25s, filter .25s;
    letter-spacing:.6px;
    text-transform:uppercase;
}

section.contact-section button.KlMnOpQrStUv:hover{
    box-shadow:0 0 18px rgba(255,197,94,.35);
    transform:translateY(-1px);
    filter:brightness(1.02);
}

/* =========================
   FOOTER
   ========================= */
footer.main-footer{
    padding:60px 0;
    background-color:#060708;
    border-top:1px solid rgba(255,197,94,.08);
    text-align:center;
}

footer.main-footer > div.footer-links{
    margin-top:26px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    padding:0 20px;
}

footer.main-footer > div.footer-links a{
    color:#8a8a8a;
    font-size:.9rem;
    text-decoration:none;
    transition:color .25s;
}

footer.main-footer > div.footer-links a:hover{ color:#FFC55E; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 992px){
    section.hero-section > div.WxYzAbCdEfGh{
        flex-direction:column;
        text-align:center;
    }

    section.pricing-section div.price-grid{
        grid-template-columns:repeat(2,1fr);
    }

    section.benefits-section > div.split-view{
        flex-direction:column;
    }
}

@media (max-width: 768px){
    /* burger shows */
    header.MnOpQrStUvWx label.IjKlMnOpQrSt{ display:flex; }

    /* mobile nav dropdown */
    header.MnOpQrStUvWx nav.AbCdEfGhIjKl{
        display:none;
        width:100%;
        position:absolute;
        top:100%;
        left:0;
        background-color:#0c0d0e;
        padding:18px 20px;
        border-bottom:1px solid rgba(255,197,94,.35);
    }

    header.MnOpQrStUvWx input.WxYzAbCdEfGh:checked ~ nav.AbCdEfGhIjKl{
        display:block;
    }

    header.MnOpQrStUvWx nav.AbCdEfGhIjKl ul.MnOpQrStUvWx{
        flex-direction:column;
        gap:10px;
        align-items:center;
    }

    section.hero-section div.hero-extra-grid{
        grid-template-columns:1fr;
    }

    section.target-audience ul.MnOpQrStUvWx{
        grid-template-columns:1fr;
    }

    section.pricing-section div.price-grid{
        grid-template-columns:1fr;
    }

    section.hero-section div.MnOpQrStUvWx h1{
        font-size:2.2rem;
    }
}