/* 
    PREMIUM CARBON STYLE FOR PERXENO 
    Colors: Background #060708, Amber #FFC55E
*/

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

html {
    scroll-behavior: smooth;
}

body.perxenoRestSightFlow_MainBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #060708;
    color: #e0e0e0;
    line-height: 1.6;
}

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

/* HEADER */
.perxenoRestSightFlow_Header {
    background-color: #0c0d0f;
    border-bottom: 2px solid #FFC55E;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.perxenoRestSightFlow_FlexHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.perxenoRestSightFlow_LogoText {
    font-size: 28px;
    font-weight: 800;
    color: #FFC55E;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.perxenoRestSightFlow_NavMenu {
    display: flex;
    gap: 30px;
}

.perxenoRestSightFlow_NavLink {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
    text-transform: uppercase;
}

.perxenoRestSightFlow_NavLink:hover {
    color: #FFC55E;
}

/* MOBILE MENU (BURGER) */
.perxenoRestSightFlow_NavToggle {
    display: none;
}

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

.perxenoRestSightFlow_Burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFC55E;
}

/* HERO SECTION */
.perxenoRestSightFlow_HeroSection {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.perxenoRestSightFlow_HeroImagesWrapper {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.perxenoRestSightFlow_HeroImgItem:nth-child(1) {
    grid-column: span 2;
}

.perxenoRestSightFlow_HeroImgItem img {
    border-radius: 12px;
    border: 1px solid rgba(255, 197, 94, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.perxenoRestSightFlow_MainTitle {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.perxenoRestSightFlow_MainTitle::before {
    content: '•';
    color: #FFC55E;
    margin-right: 10px;
    text-shadow: 0 0 10px #FFC55E;
}

.perxenoRestSightFlow_SubTitle {
    font-size: 20px;
    color: #FFC55E;
    margin-bottom: 25px;
    font-weight: 600;
}

.perxenoRestSightFlow_Text {
    margin-bottom: 20px;
    color: #b0b0b0;
    font-size: 17px;
}

/* BUTTONS */
.perxenoRestSightFlow_BtnPrimary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #FFC55E;
    color: #060708;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
}

.perxenoRestSightFlow_BtnPrimary:hover {
    background-color: #ffd48a;
    box-shadow: 0 0 20px rgba(255, 197, 94, 0.6);
    transform: translateY(-2px);
}

.perxenoRestSightFlow_BtnOutline {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #FFC55E;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #FFC55E;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.perxenoRestSightFlow_BtnOutline:hover {
    background-color: #FFC55E;
    color: #060708;
}

/* AUDIENCE SECTION */
.perxenoRestSightFlow_AudienceSection {
    padding: 100px 0;
    background-color: #0a0b0d;
}

.perxenoRestSightFlow_SecTitle {
    font-size: 36px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.perxenoRestSightFlow_CenterDesc {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 50px;
    color: #a0a0a0;
}

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

.perxenoRestSightFlow_AudienceCard {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #111214;
    border: 1px solid #1f2124;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.perxenoRestSightFlow_AudienceCard:hover {
    transform: translateY(-10px);
    border-color: #FFC55E;
}

.perxenoRestSightFlow_AudienceCard img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
}

.perxenoRestSightFlow_CardTitle {
    font-size: 22px;
    color: #FFC55E;
    margin-bottom: 15px;
}

.perxenoRestSightFlow_CardText {
    margin-bottom: 20px;
    font-size: 15px;
}

.perxenoRestSightFlow_List {
    list-style: none;
    margin-bottom: 25px;
}

.perxenoRestSightFlow_List li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.perxenoRestSightFlow_List li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFC55E;
}

.perxenoRestSightFlow_CardPrice {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    border-top: 1px solid #2a2c30;
    padding-top: 20px;
}

/* PRICE TABLE (VARIANT 2) */
.perxenoRestSightFlow_PriceSection {
    padding: 100px 0;
}

.perxenoRestSightFlow_PriceTable {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #2a2c30;
    border-radius: 15px;
    overflow: hidden;
}

.perxenoRestSightFlow_PriceRow {
    display: flex;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #2a2c30;
    transition: background 0.3s ease;
}

.perxenoRestSightFlow_PriceRow:last-child {
    border-bottom: none;
}

.perxenoRestSightFlow_PriceRow:hover {
    background: #0f1012;
}

.perxenoRestSightFlow_PriceInfo {
    flex: 2;
}

.perxenoRestSightFlow_PriceName {
    color: #FFC55E;
    font-size: 20px;
    margin-bottom: 5px;
}

.perxenoRestSightFlow_PriceDesc {
    font-size: 14px;
    color: #888;
}

.perxenoRestSightFlow_PriceValue {
    flex: 1;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.perxenoRestSightFlow_PriceAction {
    flex: 1;
    text-align: right;
}

.perxenoRestSightFlow_PriceFeatured {
    background: #111214;
    border-left: 4px solid #FFC55E;
}

/* BENEFITS SECTION */
.perxenoRestSightFlow_BenefitsSection {
    padding: 100px 0;
    background-color: #0a0b0d;
}

.perxenoRestSightFlow_FlexRowReverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.perxenoRestSightFlow_BenefitsImage, .perxenoRestSightFlow_BenefitsContent {
    flex: 1;
    min-width: 320px;
}

.perxenoRestSightFlow_BenefitsList {
    list-style: none;
    margin-top: 30px;
}

.perxenoRestSightFlow_BenefitsList li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.perxenoRestSightFlow_BenefitsList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC55E;
    font-weight: bold;
    font-size: 20px;
}

/* QUOTE SECTION */
.perxenoRestSightFlow_QuoteSection {
    padding: 120px 0;
    background: linear-gradient(rgba(6,7,8,0.9), rgba(6,7,8,0.9)), url('https://placehold.co/1200x400/060708/1a1a1a?text=Carbon+Texture&width=1200&height=400');
    background-attachment: fixed;
    text-align: center;
}

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

.perxenoRestSightFlow_QuoteText {
    font-size: 28px;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
}

.perxenoRestSightFlow_QuoteAuthor {
    display: block;
    font-size: 18px;
    color: #FFC55E;
    font-weight: 600;
}

/* FAQ SECTION */
.perxenoRestSightFlow_FaqSection {
    padding: 100px 0;
}

.perxenoRestSightFlow_FaqItem {
    max-width: 800px;
    margin: 0 auto 15px;
    background: #111214;
    border: 1px solid #2a2c30;
    border-radius: 8px;
}

.perxenoRestSightFlow_FaqSummary {
    padding: 20px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.perxenoRestSightFlow_FaqSummary::after {
    content: '+';
    color: #FFC55E;
    font-size: 24px;
}

.perxenoRestSightFlow_FaqItem[open] .perxenoRestSightFlow_FaqSummary::after {
    content: '-';
}

.perxenoRestSightFlow_FaqContent {
    padding: 0 30px 25px;
    color: #a0a0a0;
}

/* TEXT SECTIONS */
.perxenoRestSightFlow_TextSection {
    padding: 100px 0;
}

.perxenoRestSightFlow_BgAlt {
    background-color: #0a0b0d;
}

.perxenoRestSightFlow_LargeText {
    margin-bottom: 25px;
    font-size: 18px;
    color: #cccccc;
    max-width: 1000px;
}

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

.perxenoRestSightFlow_InfoItem {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #16181b;
    border-radius: 10px;
    border-left: 3px solid #FFC55E;
}

.perxenoRestSightFlow_InfoItem h3 {
    color: #FFC55E;
    margin-bottom: 15px;
}

/* FORM SECTION */
.perxenoRestSightFlow_FormSection {
    padding: 100px 0;
    background: #060708;
}

.perxenoRestSightFlow_FormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #111214;
    padding: 50px;
    border-radius: 15px;
    border: 1px solid #2a2c30;
}

.perxenoRestSightFlow_InputGroup {
    margin-bottom: 25px;
}

.perxenoRestSightFlow_Label {
    display: block;
    margin-bottom: 8px;
    color: #FFC55E;
    font-weight: 600;
}

.perxenoRestSightFlow_Input, .perxenoRestSightFlow_Textarea {
    width: 100%;
    background: #060708;
    border: 1px solid #2a2c30;
    padding: 15px;
    color: #fff;
    border-radius: 4px;
    outline: none;
}

.perxenoRestSightFlow_Input:focus, .perxenoRestSightFlow_Textarea:focus {
    border-color: #FFC55E;
}

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

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

.perxenoRestSightFlow_CheckboxGroup label {
    font-size: 14px;
    color: #a0a0a0;
}

.perxenoRestSightFlow_CheckboxGroup a {
    color: #FFC55E;
    text-decoration: underline;
}

.perxenoRestSightFlow_BtnSubmit {
    width: 100%;
    padding: 18px;
    background: #FFC55E;
    color: #060708;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.perxenoRestSightFlow_BtnSubmit:hover {
    background: #ffd48a;
    box-shadow: 0 0 25px rgba(255, 197, 94, 0.4);
}

/* FOOTER */
.perxenoRestSightFlow_Footer {
    padding: 80px 0 30px;
    background: #0a0b0d;
    border-top: 1px solid #1f2124;
}

.perxenoRestSightFlow_FooterContent {
    text-align: center;
    margin-bottom: 50px;
}

.perxenoRestSightFlow_FooterLogo {
    font-size: 24px;
    font-weight: 800;
    color: #FFC55E;
    margin-bottom: 20px;
}

.perxenoRestSightFlow_FooterContent p {
    color: #777;
    margin-bottom: 5px;
}

.perxenoRestSightFlow_FooterContent a {
    color: #ccc;
    text-decoration: none;
}

.perxenoRestSightFlow_FooterBottom {
    padding-top: 30px;
    border-top: 1px solid #1f2124;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.perxenoRestSightFlow_FooterLinks a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.perxenoRestSightFlow_FooterLinks a:hover {
    color: #FFC55E;
}

/* UTILS */
.perxenoRestSightFlow_ImgResponsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .perxenoRestSightFlow_HeroGrid, .perxenoRestSightFlow_FlexRowReverse {
        flex-direction: column;
    }
    .perxenoRestSightFlow_MainTitle {
        font-size: 36px;
    }
    .perxenoRestSightFlow_PriceRow {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .perxenoRestSightFlow_PriceAction {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .perxenoRestSightFlow_NavMenu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0c0d0f;
        padding: 40px;
        text-align: center;
        border-bottom: 2px solid #FFC55E;
    }

    .perxenoRestSightFlow_NavToggle:checked ~ .perxenoRestSightFlow_NavMenu {
        display: flex;
    }

    .perxenoRestSightFlow_Burger {
        display: flex;
    }

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

    .perxenoRestSightFlow_HeroImagesWrapper {
        display: none; /* Hide multi-image on mobile for speed */
    }
}
/* --- Hero image normalization (remove person photo + fit to card sizes) --- */
.perxenoRestSightFlow_HeroImgItem {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
}

.perxenoRestSightFlow_HeroImgItem:nth-child(1) {
    aspect-ratio: 16 / 9;
}

.perxenoRestSightFlow_HeroImgItem img,
.perxenoRestSightFlow_ImgResponsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
