:root {
    --brand-red: #8B0000;
    --dark-neutral: #222222;
    --gray-text: #555555;
    --beige-light: #F2E8E1;
    --pricing-bg: #ece1d7;
    --card-highlight-bg: #FDF7F4;
    --placeholder-bg: #333333;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-stack);
}

/* Flexbox setup to handle dynamic sticky footer behavior */
body {
    background-color: #ffffff;
    color: var(--dark-neutral);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main container that stretches to push the footer down on short pages */
.main-content {
    flex: 1 0 auto;
}

/* Image Placeholder Base Style */
.image-placeholder {
    background-color: var(--placeholder-bg);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Navbar Container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: #ffffff;
	position: sticky;
    top: 0;
    z-index: 1000; /* Keeps the navigation bar safely floating on top of all text and graphics layers */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Adds a subtle shadow separate line as you scroll down */
}
/* Add this new rule block to safely constraint your custom navbar logo graphic boundaries */


.logo-img {
    height: auto;
    max-height: 50px; /* Constrains the logo safely within the top navigation bar height limits */
    width: auto;
    display: block;
}
.logo-area .image-placeholder {
    width: 200px;
    height: 50px;
    font-size: 1.1rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-neutral);
    font-size: 0.95rem;
}

.btn-nav {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 50px 8% 90px 8%;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;/* New offset adjustment to clear your sticky navigation header bar height smoothly */
    scroll-margin-top: 100px; 
}

.hero-left {
    flex: 1;
}

.main-hero-img {
    width: 100%;
    height: auto; /* Allow layout scale to maintain correct visual aspect ratios */
    max-width: 440px;
    margin: 0 auto;
    display: block;
}

.hero-right {
    flex: 1;
    max-width: 520px;
}

.hero-right h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 35px;
}

.btn-hero {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 14px 45px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Pricing Section - Full-width custom beige background */
.pricing-section {
    background-color: var(--pricing-bg);
    width: 100%;
    padding: 90px 0;
    text-align: center;
}

/* Inner content alignment boundary within the pricing section */
.pricing-section > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8%;
    padding-right: 8%;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 45px;
}

.pricing-subtitle {
    font-size: 1.05rem;
    color: var(--gray-text);
    max-width: 950px;
    margin-top: -25px;
    margin-bottom: 60px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1150px;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 45px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
}

.pricing-card.featured {
    background-color: var(--card-highlight-bg);
    border: 2px solid var(--brand-red);
}

.pop-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-red);
    color: #ffffff;
    padding: 6px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 25px;
}

.price-box {
    margin-bottom: 4px;
}

.price-amt {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--brand-red);
}

.price-period {
    font-size: 1rem;
    color: var(--gray-text);
}

.billing-cycle {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-bottom: 35px;
}

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

.features li {
    font-size: 0.95rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 24px;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--dark-neutral);
}

.btn-card {
    display: block;
    width: 100%;
    background-color: var(--brand-red);
    color: #ffffff;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

/* Footer Section */
.footer {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    flex-shrink: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Native Embedded SVG Vector Color Controls */
.social-link .icon-svg {
    width: 1.85rem;
    height: 1.85rem;
    fill: #ffffff; /* Forces absolute vector render layer white locally */
}

.social-link:hover {
    opacity: 0.75;
}

/* Enlarged & Right-Justified Footer Email */
.footer-email {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    margin-left: auto;
    text-align: right;
}

/* Responsive Viewports */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 45px;
    }
}

@media (max-width: 650px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    .nav-right {
        flex-direction: column;
        gap: 15px;
    }
    .hero-right h1 {
        font-size: 2.3rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    .footer-email {
        margin-left: 0;
        text-align: center;
    }
}
