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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
.tenoramelRestSightFlowH1 {
    font-size: 3.5rem;
    color: #FFC55E;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.tenoramelRestSightFlowH2 {
    font-size: 2.5rem;
    color: #FFC55E;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.tenoramelRestSightFlowH2::after {
    content: '✦';
    font-size: 1rem;
    color: #FFC55E;
    display: block;
    margin-top: 10px;
}

.tenoramelRestSightFlowH3 {
    font-size: 1.5rem;
    color: #FFC55E;
    margin-bottom: 15px;
}

.tenoramelRestSightFlowP {
    margin-bottom: 20px;
    color: #cccccc;
    font-size: 1.1rem;
}

.tenoramelRestSightFlowSub {
    font-size: 1.3rem;
    color: #FFC55E;
    margin-bottom: 25px;
    font-style: italic;
}

/* Header & Nav */
.tenoramelRestSightFlowHeader {
    background-color: #060708;
    border-bottom: 2px solid #FFC55E;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.tenoramelRestSightFlowLogo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFC55E;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.tenoramelRestSightFlowNavLink {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.tenoramelRestSightFlowNavLink:hover {
    color: #FFC55E;
}

/* Burger Menu */
.tenoramelRestSightFlowMenuToggle {
    display: none;
}

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

.tenoramelRestSightFlowBurger span {
    width: 30px;
    height: 3px;
    background-color: #FFC55E;
    transition: 0.3s;
}

/* Buttons */
.tenoramelRestSightFlowBtn {
    display: inline-block;
    background-color: #FFC55E;
    color: #060708;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #FFC55E;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.tenoramelRestSightFlowBtn:hover {
    background-color: transparent;
    color: #FFC55E;
    box-shadow: 0 0 15px rgba(255, 197, 94, 0.4);
}

.tenoramelRestSightFlowBtnFull {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.tenoramelRestSightFlowHero {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #060708 70%);
}

.tenoramelRestSightFlowQuickLinks {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tenoramelRestSightFlowQuickBtn {
    background: transparent;
    color: #FFC55E;
    border: 1px solid #FFC55E;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 20px;
    transition: 0.3s;
}

.tenoramelRestSightFlowQuickBtn:hover {
    background: #FFC55E;
    color: #060708;
}

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

.tenoramelRestSightFlowHeroImage, .tenoramelRestSightFlowHeroText {
    flex: 1;
}

.tenoramelRestSightFlowImg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
}

/* Prices Section */
.tenoramelRestSightFlowPrices {
    padding: 80px 0;
}

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

.tenoramelRestSightFlowSubLink {
    color: #FFC55E;
    text-decoration: none;
}

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

.tenoramelRestSightFlowPriceCard {
    background: #111214;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

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

.tenoramelRestSightFlowPriceCardFeatured {
    border: 2px solid #FFC55E;
    transform: scale(1.05);
    background: #1a1b1e;
}

.tenoramelRestSightFlowPriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    color: #fff;
}

.tenoramelRestSightFlowPriceList {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.tenoramelRestSightFlowPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #aaa;
}

.tenoramelRestSightFlowPriceList li::before {
    content: '→';
    margin-right: 10px;
    color: #FFC55E;
}

/* Reviews */
.tenoramelRestSightFlowReviews {
    padding: 80px 0;
    background: #0a0b0d;
}

.tenoramelRestSightFlowReviewSlider {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tenoramelRestSightFlowReviewItem {
    background: #111214;
    padding: 30px;
    border-left: 4px solid #FFC55E;
}

.tenoramelRestSightFlowReviewText {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.tenoramelRestSightFlowReviewAuthor {
    color: #FFC55E;
    font-weight: bold;
}

/* Who it's for */
.tenoramelRestSightFlowWho {
    padding: 80px 0;
}

.tenoramelRestSightFlowWhoIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.tenoramelRestSightFlowWhoGrid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.tenoramelRestSightFlowWhoCard {
    flex: 1;
    background: #111214;
    border-radius: 8px;
    overflow: hidden;
}

.tenoramelRestSightFlowWhoCard img {
    height: 200px;
}

.tenoramelRestSightFlowWhoCard .tenoramelRestSightFlowH3, 
.tenoramelRestSightFlowWhoCard .tenoramelRestSightFlowP {
    padding: 0 20px;
    margin-top: 15px;
}

.tenoramelRestSightFlowWhoPrice {
    padding: 20px;
    color: #FFC55E;
    font-weight: bold;
    border-top: 1px solid #222;
    margin-top: 15px;
}

.tenoramelRestSightFlowWhoList {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    justify-content: center;
}

.tenoramelRestSightFlowWhoList li {
    background: #1a1b1e;
    padding: 10px 20px;
    border: 1px solid #FFC55E;
    border-radius: 5px;
}

/* Expert Section */
.tenoramelRestSightFlowExpert {
    padding: 100px 0;
}

.tenoramelRestSightFlowExpertBox {
    background: #111214;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255,197,94,0.05);
}

.tenoramelRestSightFlowQuote {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
}

.tenoramelRestSightFlowSignature {
    font-weight: bold;
    color: #FFC55E;
    margin-bottom: 40px;
}

.tenoramelRestSightFlowDetails {
    background: #060708;
    border-radius: 8px;
}

.tenoramelRestSightFlowSummary {
    padding: 15px;
    cursor: pointer;
    color: #FFC55E;
    font-weight: bold;
    list-style: none;
}

.tenoramelRestSightFlowDetailsContent {
    padding: 20px;
}

.tenoramelRestSightFlowExpertList {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.tenoramelRestSightFlowExpertList li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

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

/* Benefits Section */
.tenoramelRestSightFlowBenefits {
    padding: 80px 0;
    background: #0a0b0d;
}

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

.tenoramelRestSightFlowBenefitsText, .tenoramelRestSightFlowBenefitsImage {
    flex: 1;
}

.tenoramelRestSightFlowCheckList {
    list-style: none;
}

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

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

/* Extra Text Sections */
.tenoramelRestSightFlowTextSection {
    padding: 80px 0;
}

.tenoramelRestSightFlowAltBg {
    background: #111214;
}

.tenoramelRestSightFlowAccentBox {
    margin-top: 30px;
    padding: 30px;
    border: 1px dashed #FFC55E;
    background: rgba(255,197,94,0.05);
}

/* FAQ */
.tenoramelRestSightFlowFaq {
    padding: 80px 0;
}

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

.tenoramelRestSightFlowFaqItem {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 5px;
}

.tenoramelRestSightFlowFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #FFC55E;
    list-style: none;
}

.tenoramelRestSightFlowFaqAnswer {
    padding: 0 20px 20px;
    color: #aaa;
}

/* Form */
.tenoramelRestSightFlowFormSection {
    padding: 100px 0;
    background: radial-gradient(circle at top, #1a1a1a 0%, #060708 100%);
}

.tenoramelRestSightFlowFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #111214;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #FFC55E;
}

.tenoramelRestSightFlowInputGroup {
    margin-bottom: 20px;
}

.tenoramelRestSightFlowLabel {
    display: block;
    margin-bottom: 8px;
    color: #FFC55E;
}

.tenoramelRestSightFlowInput, .tenoramelRestSightFlowTextarea {
    width: 100%;
    padding: 12px;
    background: #060708;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
}

.tenoramelRestSightFlowTextarea {
    height: 120px;
    resize: vertical;
}

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

.tenoramelRestSightFlowCheckboxLabel a {
    color: #FFC55E;
}

/* Footer */
.tenoramelRestSightFlowFooter {
    padding: 60px 0 30px;
    background: #030405;
    border-top: 1px solid #222;
    text-align: center;
}

.tenoramelRestSightFlowFooterTop {
    margin-bottom: 30px;
}

.tenoramelRestSightFlowFooterBrand {
    font-size: 1.5rem;
    color: #FFC55E;
    margin-bottom: 15px;
    font-weight: bold;
}

.tenoramelRestSightFlowFooterEmail a {
    color: #e0e0e0;
    text-decoration: none;
}

.tenoramelRestSightFlowFooterMiddle {
    margin-bottom: 30px;
    color: #666;
}

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

.tenoramelRestSightFlowFooterLinks a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 992px) {
    .tenoramelRestSightFlowHeroContent, .tenoramelRestSightFlowPriceGrid, .tenoramelRestSightFlowWhoGrid, .tenoramelRestSightFlowBenefitsContent {
        flex-direction: column;
    }
    
    .tenoramelRestSightFlowPriceCard {
        width: 100%;
        transform: none !important;
    }
    
    .tenoramelRestSightFlowH1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .tenoramelRestSightFlowBurger {
        display: flex;
    }
    
    .tenoramelRestSightFlowNav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #060708;
        padding: 20px;
        border-bottom: 1px solid #FFC55E;
    }
    
    .tenoramelRestSightFlowMenuToggle:checked ~ .tenoramelRestSightFlowNav {
        display: block;
    }
    
    .tenoramelRestSightFlowNavList {
        flex-direction: column;
        align-items: center;
    }
    
    .tenoramelRestSightFlowQuote {
        font-size: 1.5rem;
    }
}