* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0b0f;
    color: white;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

img {
    max-width: 100%;
    display: block;
}

.mainContainer {
    width: 92%;
    max-width: 1600px;
    margin: 0 auto;
}

.navBar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(11, 11, 15, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navInner {
    min-height: 86px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footerLogo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logoArea {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
}

.logoArea img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.BlossomHost1 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.navLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: 42px;
}

.navLinks a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    transition: color 0.2s ease;
}

.navLinks a:hover {
    color: white;
}

.navButtons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 14px;
}

.navButtons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 16px;
    transition: 0.2s ease;
}

.navButtons a:first-child {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    background: transparent;
}

.navButtons a:first-child:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.03);
}

.mainButton,
.secondButton,
.statusButton,
.planButton {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    transition: 0.2s;
}

.mainButton {
    background: linear-gradient(90deg, #FFC1CC, #FFC1CC);
    color: white;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 79, 139, 0.22);
}

.mainButton:hover {
    opacity: 0.92;
}

.secondButton {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.secondButton:hover {
    border: 1px solid #FFC1CC;
    color: white;
}

.heroSection {
    position: relative;
    padding: 100px 0 70px;
    overflow: hidden;
}

.heroGlow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.heroGlow1 {
    width: 500px;
    height: 500px;
    background-color: #ff4f8b;
    top: 100px;
    left: 10%;
}

.heroGlow2 {
    width: 400px;
    height: 400px;
    background-color: #9b5cff;
    bottom: 50px;
    right: 10%;
}

.heroGrid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.heroTitle {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.heroTitle span {
    color: #FFC1CC;
}

.heroText {
    max-width: 650px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 30px;
}

.heroButtons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.heroTags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.heroTag {
    padding: 8px 14px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.statusCard {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
}

.statusTitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
}

.onlineDot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #32d74b;
}

.statusRow {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.statusRow span {
    color: rgba(255, 255, 255, 0.6);
}

.statusRow strong {
    color: white;
}

.statusButton {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.07);
    color: white;
}

.statusButton:hover {
    background-color: rgba(255, 255, 255, 0.11);
}

.featuresSection,
.pricingSection,
.teamSection {
    padding: 90px 0;
}

.sectionHeader {
    text-align: center;
    margin-bottom: 40px;
}

.sectionHeader h2 {
    font-size: 46px;
    margin-bottom: 12px;
}

.sectionHeader h2 span {
    color: #FFC1CC;
}

.sectionHeader p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.featuresGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.featureCard {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px;
}

.featureCard h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.featureCard p {
    color: rgba(255, 255, 255, 0.6);
}

.durationBox {
    background-color: #111118;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 35px;
}

.durationTitle {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.durationButtons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.durationButton {
    min-height: 72px;
    background-color: #1a1a1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    padding: 12px;
    text-align: center;
}

.durationButton:hover {
    border-color: rgba(255, 255, 255, 0.18);
    color: white;
}

.durationButton span,
.durationButton small {
    display: block;
}

.durationButton span {
    color: white;
    font-weight: bold;
}

.durationButton small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    color: #FFC1CC;
}

.activeDuration {
    background-color: #2a1d2a;
    border: 1px solid #ff4f8b;
    color: white;
}

.pricingCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricingCard {
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
}

.scrollReveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scrollReveal.show {
    opacity: 1;
    transform: translateY(0);
}

.featureCard,
.teamCard,
.statusCard,
.durationButton,
.heroTag,
.pricingCard {
    transition: 0.25s ease;
}

.featureCard:hover,
.teamCard:hover,
.statusCard:hover,
.durationButton:hover,
.heroTag:hover,
.pricingCard:hover {
    border-color: rgba(255, 193, 204, 0.45);
    background-color: rgba(255, 193, 204, 0.08);
    box-shadow: 0 0 20px rgba(255, 193, 204, 0.12);
    transform: translateY(-2px);
}

.pricingCard:hover {
    border-color: rgba(255, 193, 204, 0.45);
}

.activePlan {
    background-color: rgba(255, 193, 204, 0.12);
    border: 1px solid #FFC1CC;
    box-shadow: 0 0 20px rgba(255, 193, 204, 0.18);
}

.popularPlan {
    border-color: rgba(255, 79, 139, 0.45);
}

.popularTag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFC1CC;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 999px;
}

.planName {
    font-size: 24px;
    margin-bottom: 15px;
}

.planPrice {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 25px;
}

.planPrice span {
    font-size: 14px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.55);
}

.planList {
    list-style: none;
    margin-bottom: 25px;
}

.planList li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.planButton {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
}

.planButton:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.mainPlanButton {
    background-color: #FFC1CC;
    color: white;
}

.mainPlanButton:hover {
    opacity: 0.9;
}

.teamGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.teamCard {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px;
}

.teamcard:hover {
    color: #FFC1CC;
}

.teamCard img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.teamCard h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.teamCard p {
    color: rgba(255, 255, 255, 0.55);
}

.footerLogo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
}

.footerLogo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.footerSection {
    padding: 70px 0 30px;
    background-color: #080810;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footerGrid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footerText {
    margin-top: 15px;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.6);
}

.footerButtons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footerTitle {
    margin-bottom: 15px;
    font-size: 16px;
}

.footerList {
    list-style: none;
}

.footerList li {
    margin-bottom: 10px;
}

.footerList a {
    color: rgba(255, 255, 255, 0.65);
}

.footerList a:hover {
    color: white;
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

@media (max-width: 1000px) {
    .heroGrid,
    .pricingCards,
    .teamGrid,
    .footerGrid {
        grid-template-columns: 1fr;
    }

    .featuresGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .durationButtons {
        grid-template-columns: repeat(3, 1fr);
    }

    .navInner {
        flex-direction: column;
        padding: 15px 0;
    }

    .navLinks,
    .navButtons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .heroTitle {
        font-size: 48px;
    }

    .footerBottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .featuresGrid {
        grid-template-columns: 1fr;
    }

    .durationButtons {
        grid-template-columns: repeat(2, 1fr);
    }

    .heroTitle {
        font-size: 38px;
    }

    .sectionHeader h2 {
        font-size: 34px;
    }

    .planPrice {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .durationButtons {
        grid-template-columns: 1fr;
    }

    .heroButtons,
    .footerButtons {
        flex-direction: column;
    }

    .mainButton,
    .secondButton {
        text-align: center;
    }
}