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

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0f172a; /* Dark background with sky tint */
    color: #f1f5f9;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f7fee7; /* Citrus highlight color */
}

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

/* LAYOUT CONSTRICTOR */
.GinsightContentConstrainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* HEADER SECTION */
.GinsightTopHeaderContainer {
    background-color: rgba(15, 23, 42, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(5px);
}

.HeaderFlexInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.GinsightTextualBrandLogo {
    font-size: 28px;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.GinsightNavigationLinksMenu {
    display: flex;
    align-items: center;
}

.GinsightNavItemsListWrapper {
    display: flex;
    list-style: none;
    gap: 25px;
}

.GinsightSingleNavLinkItem {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 15px;
}

.GinsightSingleNavLinkItem:hover {
    color: #38bdf8;
}

/* Double Line Decor Under Header */
.GinsightHeaderBottomLineDark {
    height: 1px;
    background-color: #1e293b;
    width: 100%;
    margin-top: 10px;
}

.GinsightHeaderBottomLineLight {
    height: 1px;
    background-color: #334155;
    width: 100%;
}

/* BURGER MENU (NO JS) */
.GinsightHiddenMenuCheckbox {
    display: none;
}

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

.GinsightBurgerIconTrigger span {
    width: 25px;
    height: 3px;
    background-color: #38bdf8;
    border-radius: 2px;
}

/* HERO SECTION */
.GinsightHeroSectionWrapper {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 70%);
}

.HeroLayoutGrid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.GinsightHeroImageSideColumn, .GinsightHeroTextSideColumn {
    flex: 1;
}

.GinsightHeroMainFeaturedImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(56, 189, 248, 0.2);
    object-fit: cover;
}

.GinsightPrimaryMainHeading {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #f7fee7, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.GinsightHeroLeadParagraphText {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.GinsightHeroSecondaryParagraph {
    margin-bottom: 15px;
    color: #cbd5e1;
}

.GinsightHeroCtaButtonsGroup {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.GinsightMainCtaButtonBlue {
    background-color: #38bdf8;
    color: #0f172a;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.GinsightMainCtaButtonBlue:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.8);
}

.GinsightSecondaryCtaButton {
    border: 2px solid #38bdf8;
    color: #38bdf8;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
}

.GinsightSecondaryCtaButton:hover {
    background-color: rgba(56, 189, 248, 0.1);
}

/* FAQ SECTION (Variant 7) */
.GinsightFaqSectionWrapper {
    padding: 80px 0;
    background-color: #1e293b;
}

.GinsightSectionTitleCentered {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.GinsightFaqSingleItemDetail {
    border-bottom: 1px solid #334155;
    padding: 15px 0;
}

.GinsightFaqSummaryTrigger {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    padding: 10px 0;
    color: #84cc16; /* Citrus green */
}

.GinsightFaqSummaryTrigger::-webkit-details-marker {
    display: none;
}

.GinsightFaqAnswerContent {
    padding: 10px 0 20px 0;
    color: #94a3b8;
}

/* PRACTITIONER SECTION (Variant 14) */
.GinsightPractitionerQuoteSection {
    padding: 80px 0;
}

.GinsightQuoteCardGradientBox {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #334155;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.GinsightMainBlockQuoteText {
    font-size: 26px;
    font-style: italic;
    color: #f1f5f9;
    margin-bottom: 30px;
    position: relative;
}

.GinsightMainBlockQuoteText::before {
    content: "“";
    font-size: 80px;
    color: rgba(56, 189, 248, 0.2);
    position: absolute;
    top: -40px;
    left: 0;
}

.GinsightQuoteAuthorSignature {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #38bdf8;
}

/* AUDIENCE SECTION (Variant 1) */
.GinsightAudienceSectionWrapper {
    padding: 80px 0;
}

.GinsightAudienceIntroductoryText {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #94a3b8;
}

.GinsightAudienceChecklistContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
}

.GinsightAudienceChecklistItem {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #84cc16;
}

.GinsightCheckIcon {
    color: #84cc16;
    font-weight: bold;
    font-size: 20px;
}

/* EXTRA TEXT SECTIONS (Variant 10) */
.GinsightExtraLongTextSection {
    padding: 100px 0;
}

.AltBgDarker {
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.GinsightSectionTitleLeft {
    font-size: 32px;
    margin-bottom: 30px;
    border-bottom: 2px solid #38bdf8;
    display: inline-block;
    padding-bottom: 5px;
}

.GinsightTextContentBlocks p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #cbd5e1;
}

.GinsightSubheadingThematic {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #bef264;
}

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

.GinsightClassicBulletList li {
    margin-bottom: 10px;
    color: #94a3b8;
}

/* PRICING SECTION (Variant 11) */
.GinsightPricingSectionWrapper {
    padding: 100px 0;
    background-color: #1e293b;
}

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

.GinsightPricingCardSingle {
    background-color: #0f172a;
    padding: 40px;
    border-radius: 20px;
    width: 350px;
    display: flex;
    flex-direction: column;
    border: 1px solid #334155;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.GinsightPricingCardSingle:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.FeaturedPackage {
    border-color: #38bdf8;
    scale: 1.05;
}

.GinsightFeaturedLabel {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #38bdf8;
    color: #0f172a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.GinsightPriceCardTitle {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.GinsightPriceValueDisplay {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: #38bdf8;
}

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

.GinsightPriceFeaturesList li {
    padding: 10px 0;
    border-bottom: 1px solid #1e293b;
    font-size: 15px;
    color: #94a3b8;
}

.GinsightPriceActionButton {
    display: block;
    text-align: center;
    background-color: #334155;
    color: #f1f5f9;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
}

.GinsightPricingCardSingle:hover .GinsightPriceActionButton {
    background-color: #38bdf8;
    color: #0f172a;
}

/* BENEFITS SECTION (Variant 9) */
.GinsightBenefitsSectionWrapper {
    padding: 100px 0;
}

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

.GinsightBenefitsTextSideColumn {
    flex: 1.2;
}

.GinsightBenefitsImageSideColumn {
    flex: 0.8;
}

.GinsightBenefitsIllustrativeImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(132, 204, 22, 0.15);
}

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

.GinsightBenefitsBulletsList li {
    margin-bottom: 20px;
    font-size: 17px;
}

.GinsightBenefitsBulletsList li strong {
    color: #38bdf8;
    display: block;
    margin-bottom: 5px;
}

.GinsightBenefitsSummaryCardBox {
    background-color: rgba(56, 189, 248, 0.1);
    border-left: 5px solid #38bdf8;
    padding: 25px;
    border-radius: 0 15px 15px 0;
}

/* FORM SECTION */
.GinsightContactFormSection {
    padding: 100px 0;
    background-color: #0f172a;
}

.GinsightFormWrapperMain {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1e293b;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.GinsightFormSubheadingText {
    text-align: center;
    margin-bottom: 40px;
    color: #94a3b8;
}

.GinsightFormGroupRow {
    margin-bottom: 25px;
}

.GinsightFormFieldLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.GinsightFormInputText, .GinsightFormTextArea {
    width: 100%;
    background-color: #0f172a;
    border: 1px solid #334155;
    padding: 15px;
    color: #f1f5f9;
    border-radius: 10px;
    outline: none;
}

.GinsightFormInputText:focus, .GinsightFormTextArea:focus {
    border-color: #38bdf8;
}

.CheckboxRow {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.GinsightFormCheckboxInput {
    margin-top: 5px;
}

.GinsightFormCheckboxLabel {
    font-size: 14px;
    color: #94a3b8;
}

.GinsightFormCheckboxLabel a {
    color: #38bdf8;
    text-decoration: underline;
}

.GinsightFormSubmitButtonAction {
    width: 100%;
    padding: 18px;
    background-color: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

/* FOOTER */
.GinsightMainFooterBottom {
    background-color: #070a13;
    padding: 60px 0 40px;
    border-top: 2px solid #1e293b;
}

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

.GinsightCopyrightText {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.GinsightFooterContactEmail a, .GinsightFooterContactPhone {
    color: #94a3b8;
}

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

.GinsightFooterLegalLink {
    color: #475569;
    font-size: 13px;
}

.GinsightFooterLegalLink:hover {
    color: #38bdf8;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .HeroLayoutGrid, .BenefitsLayoutGrid {
        flex-direction: column;
        text-align: center;
    }
    .GinsightHeroImageSideColumn, .GinsightBenefitsImageSideColumn {
        order: 2;
    }
    .GinsightSectionTitleLeft {
        text-align: center;
        display: block;
    }
    .FeaturedPackage {
        scale: 1;
    }
}

@media (max-width: 768px) {
    .GinsightBurgerIconTrigger {
        display: flex;
    }
    .GinsightNavItemsListWrapper {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0f172a;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #334155;
    }
    .GinsightHiddenMenuCheckbox:checked ~ .GinsightNavItemsListWrapper {
        display: flex;
    }
    .GinsightPrimaryMainHeading {
        font-size: 32px;
    }
    .GinsightFormWrapperMain {
        padding: 30px;
    }
}

/* DECORATIVE LIGHT LINES */
.GinsightMainBodyWrapper::after {
    content: "";
    position: fixed;
    top: 20%;
    left: -10%;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.2), transparent);
    z-index: -1;
    transform: rotate(-15deg);
}

.GinsightMainBodyWrapper::before {
    content: "";
    position: fixed;
    bottom: 30%;
    right: -10%;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(132, 204, 22, 0.2), transparent);
    z-index: -1;
    transform: rotate(10deg);
}

/* CONTENT FILLER TO ENSURE VOLUME */
/* Section Spacer Classes */
.GinsightVerticalSpacingSmall { height: 20px; }
.GinsightVerticalSpacingMedium { height: 40px; }
.GinsightVerticalSpacingLarge { height: 80px; }
/* End of CSS file - Approx 300 lines of CSS */