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

html {
    scroll-behavior: smooth;
}

body.HigayajetSpaceBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f7fee7;
    color: #1f2937;
    line-height: 1.6;
}

/* Header */
header.HigayajetSpaceHeader {
    background-color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.HigayajetSpaceLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #84cc16;
    letter-spacing: -1px;
}

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

.HigayajetSpaceNavCheckbox {
    display: none;
}

.HigayajetSpaceNavList {
    display: flex;
    list-style: none;
}

.HigayajetSpaceNavItem {
    margin-left: 2rem;
}

.HigayajetSpaceNavLink {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    transition: color 0.3s ease;
}

.HigayajetSpaceNavLink:hover {
    color: #84cc16;
}

/* Burger Menu */
.HigayajetSpaceNavButton {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.HigayajetSpaceNavIcon, .HigayajetSpaceNavIcon::before, .HigayajetSpaceNavIcon::after {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #1f2937;
    position: absolute;
    transition: 0.3s;
}

.HigayajetSpaceNavIcon::before { content: ""; top: -8px; }
.HigayajetSpaceNavIcon::after { content: ""; top: 8px; }

/* Hero Section */
.HigayajetSpaceHeroSection {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fee7 0%, #bef264 100%);
    overflow: hidden;
    position: relative;
}

/* Light beam lines effect */
.HigayajetSpaceHeroSection::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(255,255,255,0.3) 100px, rgba(255,255,255,0.3) 101px);
    pointer-events: none;
}

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

.HigayajetSpaceHeroImageWrapper {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.HigayajetSpaceHeroImg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.HigayajetSpaceHeroOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(132, 204, 22, 0.2), rgba(31, 41, 55, 0.3));
}

.HigayajetSpaceHeroContent {
    flex: 1;
}

.HigayajetSpaceHeroTitle {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.HigayajetSpaceHeroSubtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.HigayajetSpaceHeroDescription {
    margin-bottom: 1rem;
    color: #374151;
}

.HigayajetSpaceHeroCta {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3b82f6; /* Blue base for glow */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 1rem;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.HigayajetSpaceHeroCta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.9);
}

/* Quote Section */
.HigayajetSpaceQuoteSection {
    padding: 60px 20px;
    background-color: #ffffff;
}

.HigayajetSpaceQuoteContainer {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.HigayajetSpaceSpeechBubble {
    background-color: #f7fee7;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.1);
    margin-bottom: 20px;
}

.HigayajetSpaceSpeechBubble::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: #f7fee7 transparent transparent;
}

.HigayajetSpaceQuoteText {
    font-size: 1.4rem;
    font-style: italic;
    color: #1f2937;
}

.HigayajetSpaceAuthorName {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
}

.HigayajetSpaceAuthorRole {
    color: #6b7280;
    font-size: 0.9rem;
}

/* For Whom Section */
.HigayajetSpaceForWhomSection {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.HigayajetSpaceSectionTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.HigayajetSpaceSectionIntro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #4b5563;
}

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

.HigayajetSpaceForWhomCard {
    flex: 1 1 350px;
    background-color: #f7fee7;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #84cc16;
}

.HigayajetSpaceForWhomIcon {
    width: 40px;
    height: 40px;
    background-color: #84cc16;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.HigayajetSpaceForWhomHeader {
    margin-bottom: 10px;
    color: #1f2937;
}

.HigayajetSpaceForWhomText {
    font-size: 0.95rem;
    color: #4b5563;
}

/* FAQ Section */
.HigayajetSpaceFaqSection {
    padding: 80px 0;
    background-color: #f7fee7;
}

.HigayajetSpaceFaqContainer {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.HigayajetSpaceFaqAccordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.HigayajetSpaceFaqItem {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.HigayajetSpaceFaqSummary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.HigayajetSpaceFaqSummary::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: #84cc16;
}

details[open] .HigayajetSpaceFaqSummary::after {
    content: "−";
}

.HigayajetSpaceFaqContent {
    padding: 0 20px 20px;
    color: #4b5563;
    border-top: 1px solid #f1f5f9;
}

/* Info Sections */
.HigayajetSpaceInfoSection {
    padding: 80px 0;
    background-color: #ffffff;
}

.HigayajetSpaceInfoContainer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.HigayajetSpaceInfoMainTitle {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

.HigayajetSpaceInfoBlock {
    margin-bottom: 60px;
}

.HigayajetSpaceInfoSubTitle {
    font-size: 1.8rem;
    color: #84cc16;
    margin-bottom: 15px;
}

.HigayajetSpaceInfoText {
    margin-bottom: 15px;
}

.HigayajetSpaceInfoList {
    list-style: none;
    margin: 20px 0;
}

.HigayajetSpaceInfoList li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    font-weight: 500;
}

.HigayajetSpaceInfoList li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #84cc16;
}

/* Benefits Section */
.HigayajetSpaceBenefitsSection {
    padding: 80px 0;
    background-color: #1f2937;
    color: #ffffff;
}

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

.HigayajetSpaceBenefitsContent {
    flex: 1;
}

.HigayajetSpaceBenefitsContent .HigayajetSpaceSectionTitle {
    text-align: left;
    color: #bef264;
}

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

.HigayajetSpaceBenefitsListItem {
    padding-left: 40px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.HigayajetSpaceBenefitsListItem::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #84cc16;
    font-weight: bold;
    font-size: 1.3rem;
}

.HigayajetSpaceBenefitsImageWrapper {
    flex: 1;
}

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

/* Pricing Section */
.HigayajetSpacePricingSection {
    padding: 80px 0;
    background-color: #f7fee7;
}

.HigayajetSpacePricingGrid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.HigayajetSpacePriceCard {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 24px;
    flex: 1 1 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.HigayajetSpacePriceCardFeatured {
    border: 2px solid #84cc16;
    transform: scale(1.05);
    z-index: 10;
}

.HigayajetSpacePriceHeader {
    text-align: center;
    margin-bottom: 25px;
}

.HigayajetSpacePriceTitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.HigayajetSpacePriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #84cc16;
}

.HigayajetSpacePriceAccordion {
    margin-bottom: 30px;
    flex-grow: 1;
}

.HigayajetSpacePriceSummary {
    cursor: pointer;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.HigayajetSpacePriceList {
    list-style: none;
    padding: 15px 0;
}

.HigayajetSpacePriceList li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.HigayajetSpacePriceList li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #84cc16;
}

.HigayajetSpacePriceBtn {
    display: block;
    text-align: center;
    padding: 15px;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
    transition: background 0.3s;
}

.HigayajetSpacePriceBtn:hover {
    background-color: #2563eb;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
}

/* Form Section */
.HigayajetSpaceFormSection {
    padding: 100px 0;
    background-color: #ffffff;
}

.HigayajetSpaceFormContainer {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.HigayajetSpaceFormCard {
    background-color: #f9fafb;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

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

.HigayajetSpaceFormSubtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
}

.HigayajetSpaceFormGroup {
    margin-bottom: 20px;
}

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

.HigayajetSpaceFormInput, .HigayajetSpaceFormTextarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.HigayajetSpaceFormTextarea {
    height: 120px;
    resize: none;
}

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

.HigayajetSpaceFormCheckbox {
    margin-top: 5px;
}

.HigayajetSpaceFormCheckboxLabel {
    font-size: 0.85rem;
    color: #4b5563;
}

.HigayajetSpaceFormSubmit {
    width: 100%;
    padding: 15px;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.HigayajetSpaceFormSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
}

/* Footer */
footer.HigayajetSpaceFooter {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 60px 0 30px;
}

.HigayajetSpaceFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.HigayajetSpaceFooterLogo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #84cc16;
    margin-bottom: 15px;
}

.HigayajetSpaceFooterLinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.HigayajetSpaceFooterLink {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
}

.HigayajetSpaceFooterLink:hover {
    color: #ffffff;
}

.HigayajetSpaceFooterCopyright {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
    .HigayajetSpaceHeroContainer, .HigayajetSpaceBenefitsContainer {
        flex-direction: column;
    }
    .HigayajetSpaceHeroTitle {
        font-size: 2.2rem;
    }
    .HigayajetSpacePriceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .HigayajetSpaceNavButton {
        display: block;
        z-index: 1001;
    }
    .HigayajetSpaceNavList {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    .HigayajetSpaceNavCheckbox:checked ~ .HigayajetSpaceNavList {
        right: 0;
    }
    .HigayajetSpaceNavItem {
        margin: 20px 0;
    }
    .HigayajetSpaceNavCheckbox:checked ~ .HigayajetSpaceNavButton .HigayajetSpaceNavIcon {
        background-color: transparent;
    }
    .HigayajetSpaceNavCheckbox:checked ~ .HigayajetSpaceNavButton .HigayajetSpaceNavIcon::before {
        transform: rotate(45deg);
        top: 0;
    }
    .HigayajetSpaceNavCheckbox:checked ~ .HigayajetSpaceNavButton .HigayajetSpaceNavIcon::after {
        transform: rotate(-45deg);
        top: 0;
    }
}