/* Основні налаштування та колірна палітра */
:root {
    --bg-dark: #050A18;
    --accent-blue: #6AA9FF;
    --neon-blue: #00f2ff;
    --text-white: #ffffff;
    --text-muted: #a0aec0;
    --card-bg: #0c1427;
    --border-color: rgba(106, 169, 255, 0.2);
    --red-outline: #ff0000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.ForgeQirelBodyMain {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header та Навігація */
.ForgeQirelHeaderNav {
    background-color: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 242, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.ForgeQirelLogoText {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ForgeQirelNavList {
    list-style: none;
    display: flex;
    gap: 20px;
}

.ForgeQirelNavLink {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ForgeQirelNavLink:hover {
    color: var(--accent-blue);
}

/* Бургер меню */
.ForgeQirelBurgerCheckbox {
    display: none;
}

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

.ForgeQirelBurgerLabel span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--accent-blue);
    border-radius: 2px;
}

/* Hero Section */
.ForgeQirelHeroSection {
    padding: 80px 0;
    border: 2px solid var(--red-outline); /* Вимога промта */
    margin: 20px;
    border-radius: 15px;
}

.ForgeQirelHeroContainer {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.ForgeQirelHeroColumnLeft, .ForgeQirelHeroColumnRight {
    flex: 1;
}

.ForgeQirelHeroImage {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.2);
    object-fit: cover;
}

.ForgeQirelHeroTitle {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ForgeQirelHeroSubtitle {
    font-size: 1.25rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.ForgeQirelHeroDescription {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.ForgeQirelMainButton {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-blue);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-blue);
}

.ForgeQirelMainButton:hover {
    background-color: transparent;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

/* Відгуки */
.ForgeQirelReviewsSection {
    padding: 100px 0;
    background-color: rgba(12, 20, 39, 0.5);
}

.ForgeQirelSectionHeading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.ForgeQirelSectionHeading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-blue);
    margin: 20px auto 0;
}

.ForgeQirelReviewsGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.ForgeQirelReviewCard {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    width: calc(33.333% - 20px);
    border: 1px solid var(--border-color);
    position: relative;
}

.ForgeQirelReviewText {
    font-style: italic;
    margin-bottom: 25px;
}

.ForgeQirelReviewAuthor {
    display: block;
    font-weight: 700;
    color: var(--accent-blue);
}

/* Тарифи */
.ForgeQirelPricingSection {
    padding: 100px 0;
}

.ForgeQirelQuickLinksContainer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.ForgeQirelQuickLinkItem {
    padding: 8px 18px;
    border: 1px solid var(--accent-blue);
    border-radius: 20px;
    text-decoration: none;
    color: var(--accent-blue);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.ForgeQirelQuickLinkItem:hover {
    background: var(--accent-blue);
    color: white;
}

.ForgeQirelPricingGrid {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.ForgeQirelPriceCard {
    flex: 1;
    background: var(--card-bg);
    padding: 50px 30px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.ForgeQirelPriceCardFeatured {
    border: 2px solid var(--accent-blue);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(106, 169, 255, 0.15);
}

.ForgeQirelPriceHeader {
    text-align: center;
    margin-bottom: 30px;
}

.ForgeQirelPriceTitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.ForgeQirelPriceValue {
    font-size: 2rem;
    font-weight: 800;
}

.ForgeQirelDiscountLabel {
    display: block;
    font-size: 0.9rem;
    color: #ff4d4d;
    margin-top: 5px;
}

.ForgeQirelPriceFeatures {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.ForgeQirelPriceFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.ForgeQirelSecondaryButton {
    display: block;
    text-align: center;
    padding: 12px;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.ForgeQirelSecondaryButton:hover {
    background: var(--accent-blue);
    color: white;
}

/* Для кого підійде */
.ForgeQirelWhoForSection {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark), #0a132e);
}

.ForgeQirelSectionIntro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-muted);
}

.ForgeQirelWhoForGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ForgeQirelWhoForItem {
    width: calc(50% - 10px);
    background: rgba(106, 169, 255, 0.05);
    padding: 30px;
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 15px 15px 0;
    position: relative;
}

.ForgeQirelItemNumber {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    opacity: 0.6;
}

.ForgeQirelWhoForItemSale {
    font-size: 0.75rem;
    background: #ff4d4d;
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Експерт */
.ForgeQirelExpertSection {
    padding: 100px 0;
}

.ForgeQirelExpertBox {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    border: 1px solid var(--border-color);
}

.ForgeQirelExpertQuote {
    flex: 1;
}

.ForgeQirelMainQuote {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 25px;
    color: var(--text-white);
    font-style: italic;
}

.ForgeQirelExpertName {
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    font-style: normal;
}

.ForgeQirelExpertDetails {
    flex: 1;
}

.ForgeQirelExpertAccordion {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.ForgeQirelAccordionSummary {
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ForgeQirelAccordionSummary::after {
    content: '+';
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.ForgeQirelAccordionContent {
    padding: 0 0 20px;
    color: var(--text-muted);
}

/* Переваги */
.ForgeQirelBenefitsSection {
    padding: 100px 0;
}

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

.ForgeQirelBenefitsText, .ForgeQirelBenefitsImageContainer {
    flex: 1;
}

.ForgeQirelBenefitsList {
    list-style: none;
}

.ForgeQirelBenefitsListItem {
    margin-bottom: 35px;
}

.ForgeQirelBenefitsListItem h3 {
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.ForgeQirelBenefitsImg {
    width: 100%;
    border-radius: 30px;
}

/* FAQ */
.ForgeQirelFaqSection {
    padding: 100px 0;
    background-color: rgba(12, 20, 39, 0.5);
}

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

.ForgeQirelFaqItem {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
}

.ForgeQirelFaqSummary {
    padding: 20px 30px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.ForgeQirelFaqAnswer {
    padding: 0 30px 20px;
    color: var(--text-muted);
}

/* Форма */
.ForgeQirelFormSection {
    padding: 100px 0;
}

.ForgeQirelFormBox {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--accent-blue);
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.1);
}

.ForgeQirelFormTitle {
    text-align: center;
    margin-bottom: 10px;
}

.ForgeQirelFormSubtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.ForgeQirelInputGroup {
    margin-bottom: 25px;
}

.ForgeQirelInputGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.ForgeQirelInputGroup input, .ForgeQirelInputGroup textarea {
    width: 100%;
    padding: 15px;
    background: #050a18;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: white;
    outline: none;
}

.ForgeQirelInputGroup input:focus, .ForgeQirelInputGroup textarea:focus {
    border-color: var(--accent-blue);
}

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

.ForgeQirelCheckboxGroup a {
    color: var(--accent-blue);
}

.ForgeQirelSubmitBtn {
    width: 100%;
    padding: 18px;
    background: var(--accent-blue);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.ForgeQirelSubmitBtn:hover {
    box-shadow: 0 0 20px var(--accent-blue);
}

/* Текстові секції */
.ForgeQirelTextSection {
    padding: 80px 0;
}

.ForgeQirelAltBg {
    background: rgba(106, 169, 255, 0.03);
}

.ForgeQirelCustomList {
    margin: 30px 0;
    list-style: none;
}

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

.ForgeQirelCustomList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

/* Footer */
.ForgeQirelFooterMain {
    padding: 60px 0;
    background: #02050d;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.ForgeQirelFooterLogo {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

.ForgeQirelCopy, .ForgeQirelFooterEmail {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.ForgeQirelFooterEmail a {
    color: var(--accent-blue);
    text-decoration: none;
}

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

.ForgeQirelFooterLinks a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
}

.ForgeQirelFooterLinks a:hover {
    color: white;
}

/* Адаптивність */
@media (max-width: 992px) {
    .ForgeQirelHeroContainer, .ForgeQirelBenefitsLayout, .ForgeQirelExpertBox {
        flex-direction: column;
        text-align: center;
    }

    .ForgeQirelPricingGrid {
        flex-direction: column;
        align-items: center;
    }

    .ForgeQirelPriceCard {
        width: 100%;
        max-width: 450px;
    }

    .ForgeQirelReviewCard {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .ForgeQirelBurgerLabel {
        display: flex;
    }

    .ForgeQirelMainNav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--bg-dark);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .ForgeQirelNavList {
        flex-direction: column;
        align-items: center;
    }

    .ForgeQirelBurgerCheckbox:checked ~ .ForgeQirelMainNav {
        display: block;
    }

    .ForgeQirelHeroTitle {
        font-size: 2.2rem;
    }

    .ForgeQirelReviewCard, .ForgeQirelWhoForItem {
        width: 100%;
    }
}