/*
 * Location: ./assets/style.css
 */

/* Reset & Global Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark-graphite: #0A0D10;
    --text-ice-light: #E6FBFF;
    --text-slate: #94a3b8;
    --border-ice: rgba(230, 251, 255, 0.2);
    --accent-ice: #E6FBFF;
    --glass-bg: rgba(10, 13, 16, 0.85);
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.XmAt_GlobalBodyContainer {
    background-color: var(--bg-dark-graphite);
    color: var(--text-ice-light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.XmAt_MainHeaderWrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.XmAt_HeaderInnerFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.XmAt_TextLogoContainer {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-ice);
    text-transform: uppercase;
}

.XmAt_NavListItems {
    display: flex;
    list-style: none;
    gap: 30px;
}

.XmAt_NavLinkStyle {
    text-decoration: none;
    color: var(--text-ice-light);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.XmAt_NavLinkStyle:hover {
    opacity: 1;
    color: var(--accent-ice);
    text-shadow: 0 0 10px rgba(230, 251, 255, 0.5);
}

.XmAt_HeaderDoubleLineThin {
    height: 1px;
    background: #1a1f26;
}

.XmAt_HeaderDoubleLineLight {
    height: 2px;
    background: var(--border-ice);
}

/* Hero Section */
.XmAt_HeroBlockSection {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.XmAt_HeroGeometricShapeOne {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border: 1px solid var(--border-ice);
    transform: rotate(45deg);
    z-index: -1;
}

.XmAt_HeroGeometricShapeTwo {
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 150px;
    height: 150px;
    border: 1px solid var(--border-ice);
    opacity: 0.3;
    z-index: -1;
}

.XmAt_HeroFlexContainer {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 60px;
}

.XmAt_HeroTextColumn {
    flex: 1.2;
}

.XmAt_HeroImageColumn {
    flex: 0.8;
}

.XmAt_HeroMainHeading {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--accent-ice);
}

.XmAt_HeroSubtext {
    font-size: 20px;
    color: var(--text-slate);
    margin-bottom: 30px;
}

.XmAt_HeroParagraph, .XmAt_HeroParagraphSecondary {
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.9;
}

.XmAt_PrimaryIceButton {
    display: inline-block;
    background: var(--accent-ice);
    color: var(--bg-dark-graphite);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    transition: var(--transition-smooth);
    border: 1px solid var(--accent-ice);
}

.XmAt_PrimaryIceButton:hover {
    background: transparent;
    color: var(--accent-ice);
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.4);
}

.XmAt_HeroMainImage {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-ice);
    padding: 10px;
    object-fit: cover;
}

/* Expert Section */
.XmAt_ExpertQuoteSection {
    background: rgba(255,255,255,0.02);
    padding: 80px 0;
    border-top: 1px solid var(--border-ice);
    border-bottom: 1px solid var(--border-ice);
}

.XmAt_ExpertFlexBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.XmAt_ExpertCircleImage {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid var(--accent-ice);
    object-fit: cover;
}

.XmAt_SingleLineQuote {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-ice-light);
}

.XmAt_ExpertNameLabel {
    font-weight: 700;
    font-size: 18px;
    color: var(--accent-ice);
}

.XmAt_ExpertTitleLabel {
    color: var(--text-slate);
    font-size: 14px;
}

/* Audience Section */
.XmAt_TargetAudienceSection {
    padding: 100px 0;
}

.XmAt_SectionTitleCentered {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--accent-ice);
}

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

.XmAt_AudienceBadgeCloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.XmAt_CloudBadgeItem {
    padding: 12px 25px;
    border: 1px solid var(--border-ice);
    background: rgba(230, 251, 255, 0.05);
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.XmAt_CloudBadgeItem:hover {
    border-color: var(--accent-ice);
    background: rgba(230, 251, 255, 0.1);
    transform: translateY(-3px);
}

/* Pricing Section */
.XmAt_PricingTableSection {
    padding: 100px 0;
    background: #0d1116;
}

.XmAt_PricingGridContainer {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.XmAt_PricingCardItem {
    flex: 1;
    min-width: 300px;
    background: var(--bg-dark-graphite);
    border: 1px solid var(--border-ice);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.XmAt_FeaturedCard {
    border-color: var(--accent-ice);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.XmAt_PackageName {
    font-size: 24px;
    margin-bottom: 10px;
}

.XmAt_PackagePrice {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-ice);
    margin-bottom: 20px;
}

.XmAt_PackageShortDescription {
    font-size: 14px;
    color: var(--text-slate);
    margin-bottom: 25px;
    min-height: 45px;
}

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

.XmAt_PackageFeatureList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
}

.XmAt_PackageFeatureList li::before {
    content: "✓ ";
    color: var(--accent-ice);
}

.XmAt_SecondaryIceOutlineBtn {
    display: block;
    text-align: center;
    border: 1px solid var(--accent-ice);
    color: var(--accent-ice);
    padding: 14px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition-smooth);
}

.XmAt_SecondaryIceOutlineBtn:hover {
    background: var(--accent-ice);
    color: var(--bg-dark-graphite);
}

/* Practice Section */
.XmAt_RegularPracticeSection {
    padding: 100px 0;
}

.XmAt_PracticeFlexLayout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.XmAt_PracticeTextSide {
    flex: 1.2;
}

.XmAt_PracticeImageSide {
    flex: 0.8;
}

.XmAt_SimpleMainHeading {
    font-size: 40px;
    margin-bottom: 30px;
}

.XmAt_PracticeMainText {
    font-size: 18px;
    margin-bottom: 40px;
}

.XmAt_PracticeBenefitsIconGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.XmAt_BenefitIconBox {
    border-left: 3px solid var(--accent-ice);
    padding-left: 20px;
}

.XmAt_BenefitIconSymbol {
    font-size: 24px;
    color: var(--accent-ice);
    display: block;
    margin-bottom: 10px;
}

.XmAt_BenefitSmallTitle {
    font-size: 18px;
    margin-bottom: 8px;
}

.XmAt_BenefitSmallText {
    font-size: 14px;
    color: var(--text-slate);
}

.XmAt_PracticeTallImg {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-ice);
}

/* Text Content Sections */
.XmAt_ContentFullWidthSection {
    padding: 100px 0;
}

.XmAt_ArcticBg {
    background: linear-gradient(180deg, #0A0D10 0%, #0d141d 100%);
}

.XmAt_BigContentTitle {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--accent-ice);
}

.XmAt_IntroParagraphFull {
    max-width: 900px;
    font-size: 18px;
    margin-bottom: 50px;
}

.XmAt_NumberedTipsContainer {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.XmAt_TipItem {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.XmAt_TipNumber {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    color: rgba(230, 251, 255, 0.1);
}

.XmAt_TipTitle {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--accent-ice);
}

.XmAt_TwoColumnText {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.XmAt_TextColumnUnit {
    flex: 1;
    min-width: 300px;
}

.XmAt_TextColumnUnit p {
    margin-bottom: 20px;
}

.XmAt_DetailedListBlocks {
    list-style: none;
}

.XmAt_ListItemElement {
    padding: 30px;
    border: 1px solid var(--border-ice);
    margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
}

.XmAt_ListItemElement strong {
    display: block;
    font-size: 20px;
    color: var(--accent-ice);
    margin-bottom: 10px;
}

/* FAQ Section */
.XmAt_FaqAccordionSection {
    padding: 100px 0;
}

.XmAt_FaqCardsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.XmAt_FaqDetailsCard {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-ice);
    transition: var(--transition-smooth);
}

.XmAt_FaqDetailsCard:hover {
    border-color: var(--accent-ice);
    background: rgba(230, 251, 255, 0.05);
}

.XmAt_FaqSummaryLabel {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
}

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

.XmAt_FaqSummaryLabel::after {
    content: '+';
    position: absolute;
    right: 25px;
    color: var(--accent-ice);
}

.XmAt_FaqDetailsCard[open] .XmAt_FaqSummaryLabel::after {
    content: '-';
}

.XmAt_FaqAnswerBox {
    padding: 0 25px 25px;
    font-size: 15px;
    color: var(--text-slate);
}

/* Contact Form */
.XmAt_ContactFormSection {
    padding: 100px 0;
    background: #0d1116;
}

.XmAt_FormCardWrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-dark-graphite);
    padding: 60px;
    border: 1px solid var(--border-ice);
}

.XmAt_FormMainTitle {
    font-size: 32px;
    margin-bottom: 10px;
}

.XmAt_FormSubTitle {
    color: var(--text-slate);
    margin-bottom: 40px;
}

.XmAt_FormGroupRow {
    margin-bottom: 25px;
}

.XmAt_LabelStyle {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.XmAt_InputFieldItem, .XmAt_TextareaFieldItem {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-ice);
    padding: 15px;
    color: white;
    font-family: inherit;
}

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

.XmAt_InputFieldItem:focus, .XmAt_TextareaFieldItem:focus {
    outline: none;
    border-color: var(--accent-ice);
}

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

.XmAt_CheckboxLabel {
    font-size: 14px;
    color: var(--text-slate);
}

.XmAt_InlineLink {
    color: var(--accent-ice);
    text-decoration: underline;
}

.XmAt_SubmitFormBtn {
    background: var(--accent-ice);
    color: var(--bg-dark-graphite);
    border: none;
    padding: 18px 40px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.XmAt_SubmitFormBtn:hover {
    box-shadow: 0 0 30px rgba(230, 251, 255, 0.5);
    transform: translateY(-2px);
}

/* Footer */
.XmAt_MainFooter {
    padding: 60px 0;
    border-top: 1px solid var(--border-ice);
    background: #050709;
}

.XmAt_FooterTopRow {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.XmAt_FooterBrand {
    font-weight: bold;
    font-size: 18px;
}

.XmAt_FooterBottomLinks {
    display: flex;
    gap: 30px;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    flex-wrap: wrap;
}

.XmAt_FooterLink {
    color: var(--text-slate);
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition-smooth);
}

.XmAt_FooterLink:hover {
    color: var(--accent-ice);
}

/* Mobile Menu Fallback (No JS) */
.XmAt_MobileBurgerIcon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.XmAt_MobileBurgerIcon span {
    width: 25px;
    height: 2px;
    background: var(--accent-ice);
}

/* Responsive */
@media (max-width: 1024px) {
    .XmAt_HeroFlexContainer, .XmAt_PracticeFlexLayout {
        flex-direction: column;
        text-align: center;
    }
    .XmAt_PracticeBenefitsIconGrid {
        justify-content: center;
    }
    .XmAt_PricingCardItem.XmAt_FeaturedCard {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .XmAt_HeaderInnerFlex {
        flex-direction: column;
        gap: 20px;
    }
    .XmAt_NavListItems {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .XmAt_FaqCardsGrid {
        grid-template-columns: 1fr;
    }
    .XmAt_ExpertFlexBox {
        flex-direction: column;
        text-align: center;
    }
}