:root {
    --primary: #2C3E50;
    --primary-light: #34495E;
    --accent: #D4AF37; /* Elegant Gold */
    --accent-hover: #C5A028;
    --text-dark: #1A1A1A;
    --text-light: #5A5A5A;
    --bg-light: #E2D9D0; /* A near-white tint with a faint, cozy vintage brown cast - was grey: #F9F9FB */
    --white: #F0ECE7; /* An ultra-light ivory-sepia background wash for high readability - was white: #FFFFFF */
    }

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

body {
	font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

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

page-content {
	width: 600px;
	margin: 40px auto;
	padding: 0 20px;
}

/* Hero Section */
header {
    background: var(--white);
    padding: 0;
    text-align: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: var(--accent);
}

h1 {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-weight: bold;
/*  font-family: 'Playfair Display', serif; */
	color: #D4AF37;
    font-size: 3.0rem;
	line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #E2E8F0;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

/* Value Proposition Blocks */
.features {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-weight: bold;
/*  font-family: 'Playfair Display', serif; */
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto 0 auto;
}

.top-section {
    max-width: 600px;
    margin: 0 auto;
			padding-top: 40px;
 }

/* Pricing Matrix Stack */
.pricing-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 20px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 10px 15px -3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.card.featured {
    border: 2px solid var(--accent);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.tier-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.tier-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.price-box {
    margin-bottom: 30px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: 500;
}

.duration {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

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

.bullet-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: #333333;
}

.bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ECC71;
    font-weight: 700;
}

.cta-btn {
    display: block;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 600;
			font-size: 1rem;
    transition: background 0.2s ease;
}

.cta-btn:hover {
    background-color: var(--primary-light);
}

.card.featured .cta-btn {
    background-color: var(--accent);
    color: var(--text-dark);
}

.card.featured .cta-btn:hover {
    background-color: var(--accent-hover);
}

/* Trust Signals / Guarantee */
.guarantee-section {
    padding: 80px 0;
    text-align: center;
    background: var(--white);
    border-top: 1px solid #E2E8F0;
}

.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-box p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* FAQ Framework */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #E2E8F0;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

footer {
    background: #111827;
    color: #9CA3AF;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

/* Mobile Optimization */
@media (max-width: 900px) {
    .grid {
grid-template-columns: 1fr;
max-width: 500px;
margin-left: auto;
margin-right: auto;
    }
    h1 {
font-size: 2.3rem;
    }
    .card.featured {
transform: none !important;
    }
}

/* Container establishing positioning context */
.header-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Make navigation float on top of the banner with background transparency */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26,37,47,0.25); /* #1A252F navy at 25% opacity */
}

/* Ensure banner image scales nicely behind the nav */
.header-banner .banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page title spacing below the hero header */
.page-title-container {
    margin-top: 20px;
    text-align: center;
}

/* Navigation Bar Styling */
.main-nav {
    background-color: #1A252F; /* Matches your header theme */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Horizontal Lockup Container */
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Space between the image and the text */
    text-decoration: none;
}

/* Sizing your custom helix logo image smoothly */
.nav-logo .logo-img {
    height: 32px; /* Adjust this height to match your navbar scale */
    width: auto;
    display: block;
}

/* Text styling matching the heavy, modern geometric look */
.nav-logo .logo-text {
    font-family: 'Cinzel', serif;
    color: #D4AF37; /* Signature Gold */
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1;
}

.nav-page {
    font-family: 'Cinzel', serif;
    color: #D4AF37; /* Signature Gold */
    font-weight: 600;
	padding-top: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: #E2E8F0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: #D4AF37;
}

/* Mobile Toggle Layout */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #E2E8F0;
    transition: all 0.3s ease;
}

/* Responsive Breakpoint (Tablet/Mobile) */
@media (max-width: 768px) {
    .menu-toggle {
display: flex;
    }

    .nav-menu {
display: none; /* Hide default inline menu */
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: #1A252F;
padding: 20px 0;
border-bottom: 2px solid #D4AF37;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
gap: 15px;
    }

    .nav-menu.open {
display: flex; /* Show dropdown when open class is injected */
    }

    .nav-menu li {
width: 100%;
text-align: center;
    }

    .nav-menu a {
display: block;
padding: 10px 0;
font-size: 1.1rem;
    }

    /* Animated Hamburger to "X" */
    .menu-toggle.active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
    }
}

/* Footer Link Wrapper */
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows links to cleanly wrap onto a new line on small mobile screens */
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

/* Base Footer Link Style */
.footer-link {
    color: #E2E8F0; /* Off-white matching your header text */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Hover State Matching Main Nav */
.footer-link:hover {
    color: #D4AF37; /* Signature Elegant Gold */
}

/* Container framework for the social tier */
.footer-social-wrapper {
    margin: 25px 0 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* "Connect with us" heading styling */
.social-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9CA3AF; /* Muted grey */
    font-weight: 600;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px; /* Reduced slightly from 18px to fit perfectly on tight screens */
    flex-wrap: wrap; /* Ensures elements stack cleanly if viewed on an ultra-narrow screen */
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Interactive SVG sizing and animation defaults */
.social-icon-link svg {
    width: 22px;
    height: 22px;
    fill: #E2E8F0; /* Off-white matching your main navigation defaults */
    transition: fill 0.2s ease, transform 0.2s ease;
}

/* Elegant gold shift on user hover */
.social-icon-link:hover svg {
    fill: #D4AF37; /* Signature Gold */
    transform: translateY(-2px); /* Gentle micro-interaction layout bounce */
}

/* --- Mobile Menu Overhaul --- */
@media screen and (max-width: 768px) {
    /* 1. Prevent any parent header elements from clipping the dropdown */
    .header-wrapper,
    .main-nav,
    .nav-container {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }

    /* 2. Style the dropdown menu itself */
    .nav-menu {
        display: none; /* Hidden by default */
        position: absolute !important;
        top: 100% !important; /* Anchors directly below the top nav bar */
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: 80vh !important; /* Allows scrolling if screen is short */
        overflow-y: auto !important; /* Enables smooth scrolling inside menu if needed */
        
        background-color: #1A252F !important; /* Solid background so banner doesn't bleed through */
        padding: 15px 0 !important;
        margin: 0 !important;
        list-style: none !important;
        z-index: 9999 !important; /* Forces menu above banner & page content */
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    /* 3. Reveal menu when toggle class '.open' is active */
    .nav-menu.open {
        display: flex !important;
        flex-direction: column !important;
    }

    /* 4. Format link list items */
    .nav-menu li {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu li a {
        display: block !important;
        width: 100% !important;
        color: #FFFFFF !important;
        font-size: 1.1rem !important;
    }
}