/* Heat Pump Microsite Styles - Combined and Organized */

/* ==========================================================================
   CSS Reset and Base Styles
   ========================================================================== */

/**,
*::before,
*::after {
    box-sizing: border-box;
}

/* ==========================================================================
   CSS Variables (Custom Properties)
   ========================================================================== */

:root {
    --paradigm-blue: #1691d0;
    --paradigm-green: #8ac650;
    --paradigm-yellow: #face33;
    --paradigm-pale-yellow: #fcfbcc;
    --paradigm-gray: #4e4e4e;
    --success: #22a373;
    --danger: #c62828;
    --clr-primary: #ee6352;
    --clr-dark: #333;
    --clr-neutral: #ddd;
    --clr-border: #ddd;
    --clr-light: #fff;
    --clr-pale: #fefefe;
    --background: #fff;
    --clr-fifty: #9c9c9c;
    --color-fifty: #9c9c9c;
}

/* ==========================================================================
   Typography and Font Imports
   ========================================================================== */


@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/*
 
.raleway-<uniquifier> {
  font-family: "Raleway", sans-serif;
  
}

.noto-sans-<uniquifier> {
  font-family: "Noto Sans", sans-serif; 
}

.calistoga-regular {
  font-family: "Calistoga", serif;
  font-weight: 400;
  font-style: normal;
}


*/

#LPcontent {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
}

#LPcontent ul, #LPcontent p, #LPcontent form {
    font-size: 1rem;
}

#LPcontent h1 {
    font-size: 2.5rem;
    line-height: 1.1;
}

@media (max-width: 600px) {
    #LPcontent h1 {
        font-size: 2rem;
    }
    
    
}

/* ==========================================================================
   Base Element Styles
   ========================================================================== */

#LPcontent {
    margin: 0;
}

#LPcontent img {
    max-width: 100%;
}

/* ==========================================================================
   Header and Navigation Styles
   ========================================================================== */

#LPcontent header {
    background: var(--background);
    text-align: center;
    position: relative;
    z-index: 900;
    width: 100%;
    padding: 0.5em 0;
}

#LPcontent header.steps {
    background: var(--paradigm-gray);
    z-index: 900;
}

#LPcontent .logo {
    margin: 0;
}

#LPcontent .logo-paradigm,
#LPcontent .logo-mass-save-hpin {
    border: none;
    display: inline-block;
}

#LPcontent .logo-paradigm img {
    height: 32px;
}

#LPcontent .logo-mass-save-hpin img {
    height: 30px;
}

#LPcontent .logo-mass-save-hpin {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 1em;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Navigation */
#LPcontent nav {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background: var(--background);
    width: 100%;
    display: none;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 400ms ease-in-out;
}

#LPcontent nav.steps {
    background: var(--paradigm-gray);
}

#LPcontent nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#LPcontent nav li {
    margin-bottom: 1em;
    margin-left: 1em;
}

#LPcontent nav a {
    color: var(--paradigm-blue);
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 250ms ease-in-out 150ms;
}

#LPcontent nav.steps a {
    color: #fff;
}

#LPcontent nav.steps a:hover {
    color: var(--paradigm-green);
    transition: opacity 250ms ease-in-out 250ms;
}

/* Navigation Toggle */
#LPcontent .nav-toggle {
    display: none;
}

#LPcontent .nav-toggle:checked ~ nav {
    display: block;
    transform: scale(1, 1);
}

#LPcontent .nav-toggle:checked ~ nav a {
    opacity: 1;
}

#LPcontent .nav-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 1em;
    padding: 0 10px;
    border: none;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Hamburger Menu */
#LPcontent .nav-toggle-label span {
    display: block;
    background: var(--paradigm-blue);
    height: 2px;
    width: 32px;
    border-radius: 2px;
    position: relative;
    transition: opacity 0.1s ease;
}

#LPcontent .nav-toggle-label span::before,
#LPcontent .nav-toggle-label span::after {
    content: "";
    display: block;
    background: var(--paradigm-blue);
    height: 2px;
    width: 32px;
    border-radius: 2px;
    position: absolute;
    transition: transform 0.3s ease;
}

#LPcontent .nav-toggle-label span::before {
    bottom: 9px;
}

#LPcontent .nav-toggle-label span::after {
    top: 9px;
}

/* Hamburger Animation */
#LPcontent .nav-toggle:checked ~ #LPcontent .nav-toggle-label span {
    background: white;
}

#LPcontent .nav-toggle:checked ~ #LPcontent .nav-toggle-label span::before {
    transform: rotate(45deg) translate(-1px, 12px) scale(0.95);
}

#LPcontent .nav-toggle:checked ~ #LPcontent .nav-toggle-label span::after {
    transform: rotate(-45deg) translate(1px, -13px) scale(0.95);
}

/* Dark Header Hamburger */
#LPcontent header.steps .nav-toggle-label span,
#LPcontent header.steps .nav-toggle-label span::before,
#LPcontent header.steps .nav-toggle-label span::after {
    background: white;
}

#LPcontent header.steps #nav-toggle:checked ~ .nav-toggle-label span {
    background: var(--paradigm-gray);
}

/* ==========================================================================
   Page Layout Sections
   ========================================================================== */

/* Main Page Intro */
#LPcontent #page-intro {
    background: var(--paradigm-blue);
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: min(calc(8vw + 2.5rem), 8rem);
}

#LPcontent #page-intro h1 {
    color: #fff;
    margin-top: 0;
}

#LPcontent #page-intro p {
    font-size: 1.2rem;
    max-width: 60ch;
    margin: 0 auto;
    line-height: 140%;
}

@media (max-width: 600px) {
    #LPcontent #page-intro p {
        max-width: 30ch;
        padding-bottom: .5rem;
    }
}

/* Step Pages Intro */
#LPcontent .page-intro-steps {
    background: var(--paradigm-blue);
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1em;
    text-align: left;
    position: relative;
}

#LPcontent .page-intro-steps h1 {
    color: #fff;
}

#LPcontent .page-intro-steps p {
    font-size: 1.2rem;
    max-width: 60ch;
    margin: 0 auto;
    line-height: 140%;
}

#LPcontent .step-banner-head {
    text-align: left;
}

#LPcontent .step-banner-head span {
    display: block;
    font-size: 0.5em;
    font-weight: normal;
}

/* Flex Layout for FAQ Page */
#LPcontent .flex {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}


#LPcontent .faq {
    margin: 0 auto;
    line-height: 140%;
    padding: 1em 2em;
    font-size: 1.05rem;
}

#LPcontent .flex-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

#LPcontent .card {
    background: var(--paradigm-green);
    border-radius: .5em;
    border: thin solid black;
    padding: 1em;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    flex: 1 1 300px; 


}

@media screen and (min-width: 750px) {
    #LPcontent .faq {
        max-width: 80ch;
    }
}
#LPcontent .faq p.question
{ color: var(--paradigm-blue);
font-weight: bold;
font-size: 1.25rem;}

#LPcontent .faq p.question:before {
    content: 'Q. ';
}

#LPcontent .faq p.answer:before {
    content: 'A. ';
    color: var(--paradigm-green);
    font-weight: bold;
}

#LPcontent .faq a:link, #LPcontent .faq a:visited {
    color: var(--paradigm-blue);
    font-weight: 600;
}

#LPcontent .faq .card h3 {
    color: white;
    font-size: 1em;
}

#LPcontent .faq .card p {
    color: black;
    font-size: 0.9rem;
    line-height: 1.1rem;
}

#LPcontent .faq .card h3 {
    padding-top: 0;
    margin-top: 0
}

#LPcontent .faq .card a {
    position: absolute;
    bottom: 1em;
}

#LPcontent .faq .card a:hover {
    color: white;
}

/* ==========================================================================
   Graphics and Images
   ========================================================================== */

#LPcontent #graphic-bar-graph {
    position: absolute;
    width: 35%;
    max-width: 300px;
    padding-bottom: 0;
    bottom: 0;
    right: 1rem;
}

#LPcontent #graphic-bar-graph img {
    vertical-align: top;
}

#LPcontent #graphic-heat-pump {
    position: absolute;
    top: 0;
    left: 2.5rem;
    width: 35%;
    max-width: 200px;
    transform: translateY(-50%);
    z-index: 2;
}

#LPcontent #graphic-heat-pump img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   CTA and Attaboy Sections
   ========================================================================== */

#LPcontent .cta-text, .attaboy {
    background: var(--paradigm-green);
    padding: 1em 2em 3em;
    text-align: center;
    position: relative;
}

#LPcontent .cta-text {
    border: none;
}

#LPcontent .cta-text p {
    font-size: 1.2rem;
    max-width: 45ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 140%;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 600px) {
    #LPcontent .cta-text p {
        max-width: 30ch;
    }
}

#LPcontent .cta-text p:first-of-type {
    padding-top: clamp(5rem, 4vw + 2rem, 3.5rem);
    margin-top: 0;
}

#LPcontent .cta-text p:last-of-type {
    padding-bottom: 1em;
}

#LPcontent .cta-text ul {
    text-align: center;
    list-style: none;
    color: #ffffff;
    max-width: 90%;
    margin: 0 auto 1.5em;
    padding: 0 0;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4em;
}

/* Attaboy Styles */
#LPcontent .attaboy {
    height: 100vh;
    background: var(--paradigm-green);
}

#LPcontent .attaboy h1 {
    font-family: Calistoga;
    font-size: 15vmin;
    color: #fff;
    font-weight: 400;
    font-style: normal;
    line-height: 100%
}

#LPcontent .attaboy p {
    font-size: 1.2rem;
    line-height: 150%;
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 2em;
}

#LPcontent .attaboy.blue {
    background: var(--paradigm-blue);
}

#LPcontent .attaboy.blue h2 {
    color: white;
}

#LPcontent .white {
    background: white;
    max-width: 80%;
    margin: 0 auto;
}

#LPcontent .white h1 {
    color: var(--paradigm-blue);
}

#LPcontent .white h2 {
    color: var(--paradigm-green);
}

/* ==========================================================================
   Description Lists
   ========================================================================== */

#LPcontent .description ul {
    text-align: center;
    list-style: none;
    color: var(--paradigm-gray);
    max-width: 85%;
    margin: 0 auto;
    padding: 1.5em 0;
}

#LPcontent .description ul li::before {
    content:'--';
    color: var(--paradigm-green);
    display: block;
}

#LPcontent .description ul li:last-child::before, .description ul li:first-child::before {
    content:'';
    display: inline;
}

#LPcontent .description ul li:last-child {
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4em;
    color: var(--paradigm-blue);
    margin-top: 1.5em;
}

#LPcontent .italic {
    font-style: italic;
}

/* ==========================================================================
   Content Styling (HR, FAQ Elements)
   ========================================================================== */

#LPcontent hr {
    position: relative;
    border: none;
    height: 1px;
    background-color: var(--paradigm-blue);
    margin: 2em 0;
    overflow: visible;
}

#LPcontent hr::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-image: url('/wp-content/uploads/lp-images/colorful-heat-pump.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    border: 1px solid var(--paradigm-blue);
    border-radius: 50%;
    padding: 8px;
}

/* ==========================================================================
   Buttons and CTA Links
   ========================================================================== */

#LPcontent .cta-links {
    display: flex;
    justify-content: space-evenly;
}

#LPcontent a.btn {
    text-decoration: none;
}

#LPcontent .cta-links .btn {
    padding: 0.6em 1.2em;
    border-radius: 2em;
    font-size: 1.2rem;
    border: 2px solid #ffffff;
    outline: none;
    text-transform: uppercase;
    font-weight: 500;
}

#LPcontent .cta-links a { 
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#LPcontent .cta-links a.btn.primary {
    background: var(--success);
}

#LPcontent .cta-links a.btn.primary:hover {
    background: white;
    color: var(--success);
    border: 2px solid var(--success);
}

#LPcontent .cta-links a.btn.secondary {
    background: none;
    color: white;
}

#LPcontent .cta-links a.btn.secondary:hover {
    background: white;
    color: var(--paradigm-green);
}

#LPcontent .cta-links.large .btn {
    font-size: 1.4rem;
}

@media (max-width: 600px) {
   #LPcontent a.btn.primary {
       display:block;
    }
}

/* Button Styles for Forms */
#LPcontent .cta-links button {
    padding: 0.6em 1.2em;
    border-radius: 2em;
    font-size: 1rem;
    border: 2px solid #ffffff;
    outline: none;
    text-transform: uppercase;
    font-weight: 500;
}

#LPcontent .cta-links button.single {
    background: white;
    color: var(--success);
    border: 2px solid var(--success);
}

#LPcontent .cta-links button.single:hover {
    background: var(--success);
    color: white;
    border: 2px solid var(--success);
}

#LPcontent .btn.single {
    background: #fff;
    border: 2px solid var(--success);
    color: var(--success);
}

#LPcontent .btn.single:hover {
    background: var(--success);
    border-color: #fff;
    color: #fff
}

#LPcontent .btn.single::after {
    content: "❯";
    margin-left: 0.5em;
    transition: transform 0.2s ease;
    color: var(--paradigm-blue);
}

#LPcontent .btn.single:hover::after {
    transform: translateX(3px);
    color: var(--paradigm-pale-yellow);
}

#LPcontent .btn::after, button::after {
    content: "❯";
    margin-left: 0.5em;
    transition: transform 0.2s ease;
}

#LPcontent button::after {
    color: var(--paradigm-yellow);
}

#LPcontent button:hover::after {
    color: var(--paradigm-blue);
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

#LPcontent input,
#LPcontent select,
#LPcontent button,
#LPcontent textarea,
#LPcontent legend,
#LPcontent label,
#LPcontent::placeholder {
    font: inherit;
}

#LPcontent .form-container {
    background: var(--clr-pale);
    padding: 1rem 1rem;
}

#LPcontent form {
    display: grid;
    gap: 1rem;
    line-height: 1.5rem;
}

#LPcontent .form-group {
    display: grid;
    gap: 0.2rem;
}

#LPcontent input {
    outline: none;
    border: thin solid var(--clr-border);
    padding: 1em 1.5em;
    border-radius: 24px;
}

#LPcontent ::placeholder {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #999;
}

#LPcontent fieldset, #LPcontent legend {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

#LPcontent input[type="text"] {
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

#LPcontent .shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

#LPcontent .fine-print {
    font-size: .75rem;
}

#LPcontent .form-group:has(.fine-print) {
    grid-column: 1,-1;
    display: flex;
    align-items: flex-start;
}

#LPcontent button[type="submit"] {
    justify-self: start;
    padding: 0.6em 1.2em;
    border-radius: 2em;
    font-size: 1rem;
    border: 2px solid white;
    filter: drop-shadow(0 0 10 #666);
    outline: none;
    text-transform: uppercase;
    font-weight: 500;
    background-color: var(--success);
    color: white;
}

#LPcontent button[type="submit"]:hover {
    background: #fff;
    color: var(--success);
    border: 2px solid var(--success);
}

#LPcontent button[type="submit"] a {
    text-decoration: none;
    color: white;
}

#LPcontent button[type="submit"]:hover a {
    text-decoration: none;
    color: var(--success);
}

/* ==========================================================================
   Jotform Integration
   ========================================================================== */

#LPcontent .jotform-embed {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

#LPcontent .nope {
    display: none;
}

#LPcontent .tiny {
    color: var(--color-fifty);
    margin-top: 1rem;
}

#LPcontent .tiny p {
    font-size: 0.6rem;
    padding: 0 0;
    margin: 0 0;
    text-indent: 2em;
    line-height: 1.5em;
}

#LPcontent .tiny p:first-child {
    text-indent: 0;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

#LPcontent footer {
    font-size: .8rem;
    display: flex;
    padding: 1em;
    justify-content: space-evenly;
}

#LPcontent footer a {
    color: var(--paradigm-blue);
    text-decoration: none;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 800px) {
    #LPcontent #logo-paradigm img,
    #LPcontent #logo-mass-save-hpin img {
        height: 50px;
    }
    
    #LPcontent {
        max-width: 80%;
        margin: 0 auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

/*Layout overrides */
main#brx-content:has(#LPcontent) {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
}

#LPcontent {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}