/* Font Declaration */
* {
    font-family: "museo-sans", sans-serif;
    box-sizing: border-box;
}

:root {
    --brand-blue: rgba(50, 157, 255, 1);
    --brand-orange: #fc7300;
    --brand-light-blue: #eaf6ff;
    --brand-dark-blue: #1a7fd9;
    --brand-dark-orange: #d96400;
    --text-color: #495057;
    --heading-color: #212529;
    --light-grey: #f8f9fa;
    --border-color: #dee2e6;
    --white: #fff;
    --black: #000;

    /* General Gradient Variables */
    --gradient-blue-start: #329dff;
    --gradient-orange-end: #fc7300;
    --gradient-footer-dark-blue: #1a7fd9;
    --gradient-footer-dark-orange: #D95B00;
    --gradient-page-title-light-orange: #FFF2E6;

    --gradient-direction-standard: to bottom right;
    --gradient-direction-page-title: 135deg;
    --gradient-direction-footer: to right;

    /* Hero Specific Gradient Variables (from your file) - KEPT FOR REFERENCE BUT NOT USED FOR BG*/
    --hero-gradient-black-start: rgba(10, 10, 10, 0.9);
    --hero-gradient-mid-tone: rgba(10, 10, 10, 0.9);
    --hero-gradient-orange-end: rgba(50, 157, 255, 1); /* This is your brand blue */
    --hero-gradient-direction-complex: to right;
    --hero-image-opacity: 0.6;

    /* NEW: Hero Video Overlay Color */
    --hero-overlay-color: rgba(10, 10, 10, 0.75); /* Adjust opacity (0.0 to 1.0) as needed */

    /* RGB for Bootstrap focus shadow & Toggler */
    --brand-blue-rgb: 50, 157, 255;

    /* Custom Navbar Breakpoint Variable */
    --navbar-collapse-breakpoint: 1399.98px;
    --header-height-approx: 65px; /* Approximate header height for calc() */

}

/* Base & Typography */
body {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.75em;
}
.display-4 { font-size: calc(1.475rem + 2.7vw); letter-spacing: -0.02em;}
.display-5 { font-size: calc(1.425rem + 2.1vw); letter-spacing: -0.01em;}
.display-6 { font-size: calc(1.375rem + 1.5vw); }

@media (min-width: 1200px) {
  .display-4 { font-size: 3.5rem; }
  .display-5 { font-size: 3rem; }
  .display-6 { font-size: 2.5rem; }
}

p.lead {
    font-size: 1.2rem;
    font-weight: 400;
}

a {
    color: var(--brand-orange);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
a:hover {
    color: var(--brand-dark-orange);
    text-decoration: underline;
}

.highlight {
    color: var(--brand-orange);
    font-weight: 700;
}
.highlight-blue {
    color: var(--brand-blue);
    font-weight: 700;
}

/* Header & Navigation - REFINED FOR CUSTOM BREAKPOINT */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    backdrop-filter: blur(5px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.site-header .navbar-brand img.main-logo {
    max-height: 45px;
    max-width: 85%;
    transition: transform 0.3s ease;
}
    @media (max-width: 767px) { /* Note: This is a different breakpoint than 767.98px, keep consistent if needed */
        .site-header .navbar-brand img.main-logo {
            margin-left: 15px;
        }
    }

    a.navbar-brand {
       max-width: 75%;
    }
.site-header .navbar-brand:hover img.main-logo {
    transform: scale(1.05);
}

/* --- Navbar Structure: custom-navbar-expand --- */
.custom-navbar-expand .navbar-toggler {
    display: block;
    border-color: rgba(0,0,0,.1);
}
.custom-navbar-expand .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--brand-blue-rgb), 0.25);
}
.custom-navbar-expand .navbar-collapse {
    width: 100%;
}
.custom-navbar-expand .navbar-nav {
    flex-direction: column;
    width: 100%;
}

.site-header .nav-links .nav-item {
    width: 100%;
}
.site-header .nav-links .nav-item .nav-link {
    color: var(--heading-color);
    font-weight: 500;
    padding: 0.75rem 1rem;
    text-align: center;
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}
.custom-navbar-expand .navbar-nav .nav-item:not(.mobile-cta-item):last-of-type .nav-link {
    border-bottom: none;
}
.custom-navbar-expand .navbar-nav .nav-item.mobile-cta-item .nav-link {
    border-bottom: none;
    padding-top: 0.5rem;
    padding-bottom: 0;
}
.site-header .nav-links .nav-item .nav-link:hover,
.site-header .nav-links .nav-item .nav-link.active,
.site-header .nav-links .nav-item .nav-link[aria-current="page"] {
    color: var(--brand-blue);
    background-color: var(--light-grey);
}
.site-header .nav-links .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--brand-blue);
    transition: width 0.3s ease;
    display: none;
}

.site-header .navbar-collapse.show,
.site-header .navbar-collapse.collapsing {
    background-color: var(--white);
    padding: 0.5rem;
    border-radius: 0.25rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
    position: absolute;
    width: calc(100% - 2rem);
    left: 1rem;
    top: calc(var(--header-height-approx) + 0.5rem);
    max-height: calc(100vh - var(--header-height-approx) - 1.5rem);
    overflow-y: auto;
    z-index: 1025;
}

.site-header .btn-primary-outline.scroll-reveal.desktop-cta {
    display: none !important;
}
.custom-navbar-expand .nav-item .btn-primary-outline-mobile {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
}
.custom-navbar-expand .nav-item.mobile-cta-item {
    border-bottom: none;
    padding: 0.25rem 0;
}

@media (min-width: 1400px) {
    .custom-navbar-expand .navbar-toggler {
        display: none !important;
    }
    .custom-navbar-expand .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
        width: auto !important;
        position: static !important;
        background-color: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 0 !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
    .custom-navbar-expand .navbar-collapse.justify-content-center .navbar-nav {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .custom-navbar-expand .navbar-nav {
        flex-direction: row !important;
        width: auto !important;
    }
    .site-header .nav-links .nav-item {
        width: auto !important;
    }
    .site-header .nav-links .nav-item .nav-link {
        padding: 0.5rem 1rem !important;
        text-align: left !important;
        border-bottom: none !important;
        background-color: transparent !important;
    }
    .site-header .nav-links .nav-item .nav-link::after {
        display: block !important;
    }
    .site-header .btn-primary-outline.scroll-reveal.desktop-cta {
        display: inline-block !important;
        margin-left: auto !important;
    }
    .custom-navbar-expand .nav-item .btn-primary-outline-mobile {
        display: none !important;
    }
}

.navbar-toggler-icon {
    background-image: none;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span.toggler-bar-middle {
    content: '';
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: rgba(var(--brand-blue-rgb), 0.75);
    border-radius: 2px;
    left: 0;
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
.navbar-toggler-icon::before { top: 0.3125em; }
.navbar-toggler-icon span.toggler-bar-middle { top: 50%; transform: translateY(-50%); }
.navbar-toggler-icon::after { bottom: 0.3125em; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span.toggler-bar-middle { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.btn-primary-outline {
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.btn-primary-outline:hover {
    background-color: var(--brand-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    background-color: #111; /* Fallback color before poster/video OR mobile background loads */
}

/* Video Background Styling */
#heroVideoBackground {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover; /* Applies to video content AND poster frame */
    background-size: cover;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 1.5rem;
}
    .index3 .hero-section .hero-content {
        padding: 2.5rem 1.5rem;
    }

.hero-section .hero-logo {
    max-width: 280px !important;
}
.hero-section h1 {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.hero-section .lead {
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
}

.hero-background-layer { /* This is the overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Above video/poster/section-bg, below content */
    background-color: var(--hero-overlay-color);
}


/* Parallax Background (for other sections) */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    z-index: 1;
}
.closing-statement-section .parallax-bg {
     display: none;
}
.page-title-section .parallax-bg {
    background-image: url('../img/placeholder-ai-engagement.png');
    opacity: 0.1;
}

/* Closing Statement Section on Homepage */
.closing-statement-section,
.cta-section {
    position: relative;
    background-image: url('../img/readyrecruitai-enrollment-associate-advantages.jpg'); /* Path relative to CSS file */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 4rem 1.5rem;
    text-align: center;
    z-index: 0;
}

.closing-statement-section::before,
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
    .index3 .closing-statement-section::before {
        background-color: #ffffff;
    }

.closing-statement-section .container,
.cta-section .container {
    position: relative;
    z-index: 2;
}

.closing-statement-section p.display-6 {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.closing-statement-section .highlight {
    color: var(--brand-orange);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* CTA Section Specifics */
.cta-section h2, .cta-section .lead {
    color: var(--white);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease-out;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}
.btn-primary {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--brand-dark-orange);
    border-color: var(--brand-dark-orange);
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 7px 14px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.08);
}
.btn-primary:active {
    background-color: var(--brand-dark-orange) !important;
    border-color: var(--brand-dark-orange) !important;
    transform: translateY(-1px) scale(0.99);
}
.btn-secondary {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--white);
}
.btn-secondary:hover {
    background-color: var(--brand-dark-blue);
    border-color: var(--brand-dark-blue);
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 7px 14px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.08);
}
.btn-light {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--brand-blue);
}
.btn-light:hover {
    background-color: var(--light-grey);
    border-color: var(--light-grey);
    color: var(--brand-dark-blue);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 7px 14px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.08);
}
.btn-outline-primary {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}
.btn-outline-primary:hover {
    background-color: var(--brand-orange);
    color: var(--white);
}
.btn-outline-secondary {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}
.btn-outline-secondary:hover {
    background-color: var(--brand-blue);
    color: var(--white);
}

/* Benefit Cards / Feature Cards */
.benefit-card, .benefit-card-detailed, .contact-detail-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.benefit-card:hover, .benefit-card-detailed:hover, .contact-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.benefit-card i, .benefit-card-detailed .benefit-icon i, .contact-detail-card i {
    transition: transform 0.3s ease;
}
.benefit-card p, .benefit-card-detailed p, .contact-detail-card p {
    font-size: 0.95rem;
    flex-grow: 1;
}

/* How It Works Snippet / General Content Sections */
.how-it-works-snippet img, .integrations-section img, .about-us-section img, .feature-section img {
    max-width: 100%;
    height: auto;
}
.list-unstyled.fa-ul { margin-left: .5rem; padding-left: 0; }
.list-unstyled.fa-ul li {
    padding-left: 2.5em;
    position: relative;
    margin-bottom: 0.5rem;
}
.list-unstyled.fa-ul .fa-li {
    position: absolute;
    left: 0;
    top: -0.1em;
    width: 2em;
    text-align: center;
}
.list-unstyled.fa-ul .fa-li i {
    font-size: 1.2em;
}

/* Forms */
.content-wrapper {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}
.form-control {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}
.form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 0.25rem rgba(var(--brand-blue-rgb), 0.25);
    background-color: var(--white);
}

/* Page Title Section */
.page-title-section {
    background-image: linear-gradient(var(--gradient-direction-page-title), var(--brand-light-blue) 0%, var(--gradient-page-title-light-orange) 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.page-title-section h1 {
    color: var(--brand-dark-blue);
    position: relative; z-index: 2;
}
.page-title-section .lead {
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

/* Social Icons (Global) */
.social-icons-section-global .social-icon-link i {
    font-size: 2rem;
    color: var(--brand-blue);
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
    display: inline-block;
}
.social-icons-section-global .social-icon-link:hover i {
    color: var(--brand-orange);
    transform: scale(1.15) translateY(-2px);
}
.social-icons-section-global .social-icon-link:focus {
    outline: none;
}
.social-icons-section-global .social-icon-link:focus i {
   color: var(--brand-orange);
}

/* Footer */
.site-footer {
    background-color: #2c2c2c;
    color: rgba(255,255,255,0.9);
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: none;
}
.site-footer .footer-social-icons .social-icon-link-footer i {
    font-size: 1.75rem;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.site-footer .footer-social-icons .social-icon-link-footer:hover i {
    color: var(--white);
    transform: scale(1.1);
}
.footer-nav-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.footer-nav-links a.text-reset {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-nav-links a.text-reset:hover {
    color: var(--white) !important;
    text-decoration: none;
}
.gprs-footer-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}
.gprs-footer-text img {
    /* filter: brightness(0) invert(1) opacity(0.85); */
    transition: opacity 0.2s ease;
}
.gprs-footer-text img:hover {
    opacity: 1;
    /* filter: brightness(1) invert(0) opacity(1); */
    transition: all 0.35s ease;

}
.copyright-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.copyright-text a.text-reset {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: underline;
}
.copyright-text a.text-reset:hover {
    color: rgba(255,255,255,0.9) !important;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Inline Icon Helper */
.inline-icon {
    height: 1.8em;
    width: auto;
    vertical-align: middle;
    margin-left: 0.2em;
    margin-right: 0.1em;
    padding-bottom: 0.1em;
}

/* Specific Section Styling */
.integrations-section .crm-logo, .supported-crms-section .crm-logo {
    max-height: 150px;
    max-width: 150px;
    margin: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.integrations-section .crm-logo:hover {
    filter: grayscale(0%);
}
.about-us-section .team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--brand-light-blue);
}

/* Thank You Page */
.thank-you-page-wrapper .content-wrapper {
    animation: fadeInSlideUp 0.7s ease-out forwards;
}
@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.thank-you-page-wrapper .icon-thankyou {
    font-size: 4rem;
    color: var(--brand-blue);
}

/* Responsive Adjustments - General (non-navbar specific for <1400px) */
@media (max-width: 991.98px) {
    .site-footer .text-lg-start,
    .site-footer .text-lg-end {
        text-align: center !important;
    }
    .footer-nav-links {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    .gprs-footer-text {
        margin-top: 1.5rem;
    }
    .how-it-works-snippet img { /* Image in this section */
        margin-top: 2rem; /* More space if it stacks below text */
    }
}

/* === MOBILE STYLES (< 767.98px) === */
@media (max-width: 767.98px) {
    /* --- HERO SECTION (Mobile) --- */
    .hero-section {
        min-height: 70vh;
        background-image: url('../img/hero-fallback.jpg'); /* Static fallback for mobile */
        background-position: center center;
        background-size: cover;
       padding-top: 1rem !important;
    }
    .hero-section .hero-content {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
     .hero-section h1 {
        font-size: calc(1.3rem + 2vw); /* Adjusted for potentially better fit */
        margin-bottom: 1rem;
    }
    .hero-section p.lead {
        font-size: 1.05rem; /* Slightly smaller lead text */
        margin-bottom: 1.5rem;
    }
    .hero-section .btn.cta-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.8rem;
    }
    #heroVideoBackground {
        display: none; /* Hides video element on mobile */
    }

    /* --- WHY CHOOSE US SNIPPET (Mobile) --- */
    .why-snippet-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .why-snippet-section h2.display-5 {
        font-size: calc(1.25rem + 1.8vw);
        margin-bottom: 2rem;
    }
    .why-snippet-section .benefit-card {
        margin-bottom: 1.5rem; /* Space between stacked cards */
        padding: 1.25rem;
    }
    .why-snippet-section .benefit-card:last-child {
        margin-bottom: 0;
    }
    .why-snippet-section .text-center.mt-5 { /* Container for "Learn More" button */
        margin-top: 2.5rem !important; /* Adjusted Bootstrap's mt-5 */
    }


    /* --- HOW IT WORKS SNIPPET (Mobile) --- */
    .how-it-works-snippet {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .how-it-works-snippet h2.display-5 {
        font-size: calc(1.25rem + 1.8vw);
        margin-bottom: 1rem;
    }
    .how-it-works-snippet p.lead {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    .how-it-works-snippet .list-unstyled.fa-ul {
        margin-bottom: 1.5rem;
    }



    /* --- INTEREST FORM SECTION (Mobile) --- */
    .interest-form-section-home {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .interest-form-section-home .content-wrapper {
        padding: 1.5rem;
    }
    .interest-form-section-home h2.h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    .interest-form-section-home p.lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .interest-form-section-home .form-control-lg {
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
        font-size: 0.95rem;
    }
    .interest-form-section-home .row.g-3 { /* Spacing between form field rows */
        margin-bottom: 0.75rem; /* Adjust default Bootstrap mb-3 on rows if needed */
    }
    .interest-form-section-home .row.g-3:last-of-type { /* Last row of inputs before submit */
        margin-bottom: 1.5rem !important; /* More space before submit button */
    }


    /* --- CLOSING STATEMENT / CTA SECTIONS (Mobile) --- */
    .closing-statement-section,
    .cta-section { /* Shared styles already applied */
        padding-top: 3rem !important;    /* Adjusted to provide more space */
        padding-bottom: 3rem !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .closing-statement-section p.display-6 {
        font-size: calc(1.2rem + 1.2vw);
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }


    /* --- FOOTER (Mobile) --- */
    .site-footer {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .site-footer .col-lg-4 { /* When footer columns stack */
        margin-bottom: 2rem; /* Increased margin for better separation */
    }
    .site-footer .col-lg-4:last-child {
        margin-bottom: 0;
    }
    .site-footer .footer-social-icons {
        margin-top: 0.75rem;
    }
    .site-footer .footer-nav-links li {
        margin-bottom: 0.5rem; /* Add some bottom margin to stacked nav links */
    }


    /* --- GENERAL PAGE TITLE SECTION (for inner pages - Mobile) --- */
    .page-title-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .page-title-section h1 {
        font-size: calc(1.3rem + 2vw);
        margin-bottom: 0.75rem;
    }
    .page-title-section .lead {
        font-size: 1rem;
    }

    .why-snippet-section .col-md-4, 
    .benefits-detailed-section .col-md-6.col-lg-4 { 
        display: flex; 
    }
    .why-snippet-section .benefit-card,
    .benefits-detailed-section .benefit-card-detailed {
        width: 100%; 
    }
}
    /* --- TM TAG --- */
    .tm {
    font-size: 0.2em;
    opacity: 0.6;         /* Makes it less prominent */
    vertical-align: super; /* Ensures proper alignment */
    }
         .tm.small {
        font-size: 0.4em;
        opacity: 0.8;
       }