/* General Body & Typography */
body {
    background-color: #111; /* Dark background for the hero area */
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.sales-page-wrapper {
    background-color: #fff; /* White background for the main content */
}

/* Hero Section */
.sales-hero {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 80px 20px 60px;
}

.hero-logo-container {
    width: 130px; /* Match the logo's max-width */
    height: 115px; /* Adjust this value to control the crop */
    margin: 0 auto 2.5rem;
    overflow: hidden;
}

.hero-logo {
    display: block;
    width: 100%; /* Make logo fill the container */
    filter: invert(1); /* Invert the logo to make it white */
    mix-blend-mode: screen; /* Removes the black background created by the invert filter */
}

.sales-hero h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fff;
    text-shadow: none;
}

.hero-tagline {
    font-size: 1.4em;
    font-style: italic;
    color: #ccc;
    margin-top: -10px; /* Pull it closer to the h1 */
    margin-bottom: 30px;
    font-weight: 300;
}

/* Light version of the hero for interior pages */
.sales-hero.sales-hero-light {
    background-color: #fff;
    padding-top: 60px;
}

.sales-hero.sales-hero-light h1 {
    color: #222;
}

.sales-hero.sales-hero-light .subtitle {
    color: #555;
}

.header-content-light {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.hero-subtitle-wrapper {
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.sales-hero p.subtitle {
    font-size: 1.2em;
    color: #ccc;
    line-height: 1.6;
    text-align: left;
}

/* Main CTA Button Style */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

/* Hero CTA Button */
.sales-hero .cta-button {
    background-color: #F9690E; /* Vibrant Orange */
    color: #fff;
    border: 2px solid #F9690E;
}

.sales-hero .cta-button:hover {
    background-color: transparent;
    color: #F9690E;
}

/* Content Area Below Hero */
.content-area {
    padding: 60px 20px;
    background-color: #fff;
}

.content-area section {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 60px;
}

.content-area section:last-child {
    padding-bottom: 0;
}

.content-area h2 {
    font-size: 2.2em;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
}

.content-area p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-wrapper {
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
}

/* Plan Steps Section */
.plan-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    text-align: left;
}

.plan-step {
    flex-basis: 280px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.plan-step h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.plan-step h3 span {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
}

.plan-step p {
    font-size: 1em;
    color: #666;
}

/* Final CTA Section */
.final-cta-section .content-wrapper {
    margin-bottom: 30px;
}

.final-cta-section .cta-button {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

/* Footer for Home Page */
.home-footer-wrapper {
    background-color: #111;
    padding: 30px 20px;
    text-align: center;
}

.home-footer-wrapper .footer-links {
    margin-bottom: 20px;
}

.home-footer-wrapper .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
    transition: color 0.2s ease;
}

.home-footer-wrapper .footer-links a:hover {
    color: #F9690E;
}

.home-footer-wrapper .copyright {
    color: #aaa;
    font-size: 0.9em;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.final-cta-section .cta-button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* Home Page Footer */
.home-footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.home-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.home-footer a:hover {
    color: #F9690E; /* Match CTA button color */
}

.home-footer p {
    margin-top: 25px;
    font-size: 0.9em;
    opacity: 0.6;
}

/* Legal Pages (Terms, Privacy) */
.legal-content-section .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--headings-color);
}

.legal-content-section p,
.legal-content-section ul {
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-content-section ul {
    list-style-position: outside;
    padding-left: 20px;
}

.legal-content-section li {
    margin-bottom: 10px;
}

.legal-content-section strong {
    color: #333;
}
