/* =========================================
   RESET & VARIABLES
   ========================================= */
:root {
    /* Primary colors */
    --PrimaryColor: #473729;
    /* secondary colors */
    --SecondaryColor: #DE4C2C;
    --BlackColor: #000000;
    --WhiteColor: #ffffff;
    /* Text colors */
    --textColor: #1e293b;
    --textLightColor: #64748b;


}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'PP Neue Machina';
    src: url('../fonts/PPNeueMachina-Light.eot');
    src: url('../fonts/PPNeueMachina-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PPNeueMachina-Light.woff') format('woff'),
        url('../fonts/PPNeueMachina-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Machina';
    src: url('../fonts/PPNeueMachina-Regular.eot');
    src: url('../fonts/PPNeueMachina-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PPNeueMachina-Regular.woff') format('woff'),
        url('../fonts/PPNeueMachina-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Machina';
    src: url('../fonts/PPNeueMachina-Ultrabold.eot');
    src: url('../fonts/PPNeueMachina-Ultrabold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PPNeueMachina-Ultrabold.woff') format('woff'),
        url('../fonts/PPNeueMachina-Ultrabold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--textColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}



.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: var(--PrimaryColor);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #515151;
    font-weight: 400;

}




.bg-gray {
    background: #EDEDED;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center .max-wid-50 {
    margin: 0 auto;
}

.same-heading.white-text :is(h2) {
    color: var(--WhiteColor);
}

.same-heading.white-text :is(p) {
    color: #ffffffc2;
}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.section-bottom-btn.text-center {
    justify-content: center;
}

p {
    font-size: 0.9rem;
    line-height: 1.8;
}


/* =========================================
   UTILITIES
   ========================================= */


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.3rem;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
    font-family: 'PP Neue Machina';
    font-weight: 400;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

/* Shine Effect */
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: all 0.5s;
    z-index: 2;
    pointer-events: none;
}

.btn:hover::after {
    left: 130%;
    transition: all 0.5s;
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}


.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--SecondaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--SecondaryColor) !important;
}

.btn-outline-primary {
    background: var(--WhiteColor);
    color: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}


.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background: var(--SecondaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--SecondaryColor) !important;
}



.btn-secondary {
    background: var(--SecondaryColor);
    color: var(--WhiteColor);
    border-color: var(--SecondaryColor);
}


.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'PP Neue Machina';
    font-weight: 400;
}



/* Header */
.header {
    background:transparent;
   padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.header .headerInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 4.5rem;
}

body.hasFixedHeader {
    padding-top: 4.5rem;
    /* header height */
}

.header.fixedHeader {
    background: var(--WhiteColor);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    top: 0;
    z-index: 100;
    position: fixed;
    left: 0; right: 0;
    padding: 0.8rem 0;
    animation: slideDown 0.4s ease forwards;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .logo img {
    max-height: 4.5rem;
} 

/* Nav desktop */
.header .mainNav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header .navList {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .navList a:not(.btn) {
    text-decoration: none;
    color: var(--BlackColor);
    font-size: 1rem;
    font-family: 'PP Neue Machina';
    font-weight: 400;
}

.header .navList a:not(.btn):hover {
    color: var(--PrimaryColor);
}

/* Button */


/* Toggle */
.header .menuToggle,
.header .closeMenu {

    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-radius: 50%;
    border: none;
    width: 2.6rem;
    height: 2.6rem;

    display: none;
}
.header .menuToggle svg,
.header .closeMenu svg{
  width: 1.3rem;
  height: 1.3rem;

}

/* Mobile header inside menu */
.header .mobileHeader {
    display: none;
}


/* Hero Section */
.heroSection {
    padding: 15rem 0 10rem;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    position: relative;margin-top: -7.1rem;background: url(../images/layer-bg.png)no-repeat center bottom/cover;
}



.heroSection .heroContent {
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.heroSection .heroTitle {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--BlackColor);
    margin-bottom: 1.5rem;
}

.heroSection .accentText {
    color: var(--PrimaryColor);
    font-weight: 700;
}

.heroSection .heroText {
    font-size: 0.9rem;
    color: var(--BlackColor);
    line-height: 1.8;
    width: 100%;
    max-width: 80%;
    margin: auto;
}

.heroSection .section-bottom-btn {
    margin-top: 3rem;

}


.stewardSection {
    position: relative;

}

.stewardSection .shape-img {
    margin-top: -20rem;
}

.stewardSection .container {
    position: relative;
    z-index: 1;
}

/* Text */
.stewardSection .sectionText {
    margin-top: 1.2rem;
    max-width: 32rem;
}

/* Feature list */
.stewardSection .featureList {
    margin-top: 2rem;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
}

.stewardSection .featureList li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-family: 'PP Neue Machina';
    font-weight: 400;
    color: var(--PrimaryColor);
}

.stewardSection .featureList svg {
    width: 1rem;
    height: 1rem;color:var(--SecondaryColor)
}

/* Quote */
.stewardSection .quoteText {
    font-size: 1rem;
    color: #222222;
    font-family: 'PP Neue Machina';
    font-weight: 400;
    line-height: 1.6;
    width: 100%;
    max-width: 14rem;
}

.stewardSection .quoteLink {
    display: inline-block;

    color: var(--PrimaryColor);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'PP Neue Machina';
    font-weight: 400;
}

.stewardSection .quoteLink:hover {
    color: var(--SecondaryColor);
}


/* Card */
.coreSystems .systemCard {
    background: linear-gradient(to bottom, #47372933, #47372900);
    padding: 1.5rem;
    border-radius: 0;
    height: 100%;
}

.coreSystems .iconBox {
    width: 3.4rem;
    height: 3.4rem;
    background: var(--PrimaryColor);
    border-radius: 1rem;
    color: var(--WhiteColor);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.coreSystems .iconBox svg {
    width: 1.4rem;
    height: 1.4rem;
}

.coreSystems .systemCard h5 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-family: 'PP Neue Machina';
    font-weight: 400;
    color: var(--SecondaryColor);
    width: 100%;
    max-width: 50%;
}

.coreSystems .systemCard p {
    font-size: 0.9rem;
    line-height: 1.7;
    width: 100%;
    max-width: 90%;
    color: #3F3C3C;
    margin-bottom: 1rem;
}


.check-icon-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0rem 0.5rem 1.7rem;
    color: var(--PrimaryColor);
    font-family: 'PP Neue Machina';
    font-weight: 400;
    position: relative;
}

.check-icon-list li svg {
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    left: 0;
    top: 12px;color: var(--SecondaryColor);

}


.trustSection {
    background: var(--PrimaryColor);

}

.trustSection .container {
    position: relative;
    z-index: 1;
}

.trustSection .shape-img {
    margin-top: -26rem;
}

/* Cards */
.trustSection .same-heading {
    margin-bottom: 7rem;
}

.trustSection .trustCard h5 {
    font-size: 1.1rem;
    color: var(--WhiteColor);
    margin-bottom: 1rem;
}

.trustSection .trustCard p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #C7C7C7;
    max-width: 16rem;
}

/* Bottom note */
.trustSection .trustNote {
       margin: 8rem 0 2rem;
    font-size: 0.85rem;
    color: var(--WhiteColor);
}



/* Card */
.boardSubTitle {
    font-size: 1rem;
    color: #313131;
    font-family: 'PP Neue Machina';
    font-weight: 400;
}

.boardCard .boardImage {
    background: linear-gradient(to bottom, #47372900, #47372980);
    padding-top: 3rem;     margin-bottom: 1rem;
}



.boardCard .boardImage img {
        width: 100%;
    display: block;
    min-height: 240px;
    max-height: 240px;
    object-fit: cover;        object-position: top center;
}

.boardSection .boardCard .boardImage img{ 
    min-height: 310px;
    max-height: 310px; }




/* Name */
.boardCard  h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--PrimaryColor);
}

/* Text */
.boardCard  p {
    font-size: 0.9rem;
    color: #3F3C3C;
    line-height: 1.6;
    width: 100%;
    /* max-width: 80%; */
}

/* Social icon */
.boardCard .socialLink {
    display: inline-block;
    color: var(--PrimaryColor);
}

.boardCard .socialLink svg {
    width: 1.1rem;
    height: 1.1rem; color: var(--SecondaryColor);
}

.boardCard.cardJoin {
    background: linear-gradient(to bottom, #47372900, #47372980);
    padding: 2.5rem 1rem;
    min-height: 286px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;

}

.boardCard.cardJoin .joinIcon {
    width: 2.8rem;
    height: 2.8rem;
    background: var(--WhiteColor);
    color: var(--SecondaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
}

.boardCard.cardJoin h5 {
    font-size: 1rem;color: var(--SecondaryColor);
}

.boardCard .cardRole {
    color: #9A9696;
    font-size: 0.9rem;
    font-family: 'PP Neue Machina';
    font-weight: 400;
}

.advisorySection .boardImage {
    background: linear-gradient(to bottom, #47372900, #47372980);
    padding-top: 3rem;
}


/* Pricing */
.pricingSection .pricingCard {
    background: #f2f3f3;
    padding: 2.5rem 2rem;
    border-radius: 0.25rem;
    height: 100%;
}

.pricingSection .planName {
    font-size: 1.4rem;
    color: var(--PrimaryColor);
    margin-bottom: 0.6rem;
}

.pricingSection .planPrice {
    font-size: 2.6rem;
    line-height: normal;
    font-weight: 500;
    color: var(--SecondaryColor);
    font-family: 'PP Neue Machina';
    margin-bottom: 0.6rem;
}

.pricingSection .planText {
    font-size: 0.9rem;
    color: var(--textLightColor);
    margin-bottom: 1.2rem;
    min-height: 4rem;
}

.pricingSection .divider {
    width: 100%;
    height: 0.0625rem;
    background: #e0e3e3;
    margin: 1.5rem 0;
}

.pricingSection .check-icon-list {
    margin-top: 1.2rem;
}

.pricingSection .check-icon-list li {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #666666;
}

/* View more */
.pricingSection .viewMore {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin: auto;
    align-items: center;
    gap: 0.3rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--SecondaryColor);
    text-decoration: none;
}

/* Partner logos */
.partnersSection .logoCard {
    background: var(--WhiteColor);
    border: 0.0625rem solid #CDCDCD;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 0.25rem;
    height: 100%;
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnersSection .logoCard img {
    max-width: 100%;
    max-height: 4rem;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s ease;
}

/* Hover effect */
.partnersSection .logoCard:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Utah section */

.utahSection .highlightText {

    color: var(--PrimaryColor);
    margin: 1rem 0 1.5rem;
    width: 100%;
    max-width: 60%;

}

/* Feature boxes */
.utahSection .featureBox {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 0.0625rem solid var(--PrimaryColor);
    padding: 1.2rem 1.2rem;
    margin-bottom: 1rem;
    background: var(--WhiteColor);
}

.utahSection .featureIcon {
    width: 3rem;
    height: 3rem;
    background: var(--PrimaryColor);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--WhiteColor);
}

.utahSection .featureIcon svg {
    width: 1.2rem;
    height: 1.2rem;

}

.utahSection .featureBox h6 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: var(--SecondaryColor);
}

.utahSection .featureBox p {
    font-size: 0.8rem;
    color: #3F3C3C;
    margin: 0;
}

.utahSection .boardSubTitle {
    font-size: 0.8rem;
    color: #878787;
}

/* Association Section Cards */
.assocCard {
    background: var(--WhiteColor);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.assocCardHeader {
    padding: 1.2rem 1.5rem;
}

.assocCardHeader h4 {
    color: var(--WhiteColor);
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
}

.assocCardHeader--primary {
    background: var(--PrimaryColor);
}

.assocCardHeader--secondary {
    background: var(--SecondaryColor);
}

.assocCardBody {
    padding: 1.5rem;
}

.assocList {
    margin-bottom: 1.5rem;
}

.assocList li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    /* border-bottom: 1px solid #f0f0f0; */
    font-size: 1rem;
    color: var(--textColor);
}

.assocList li:last-child {
    border-bottom: none;
}

.assocIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    /* height: 2.2rem; */
    /* border-radius: 50%; */
    /* background: rgba(71, 55, 41, 0.1); */
    color: var(--PrimaryColor);
    flex-shrink: 0;
}

.assocIcon svg {
    width: 1rem;
    height: 1rem;
}

.assocIcon--secondary {
   
    color: var(--SecondaryColor);
}


.sectionCta {
    background: var(--PrimaryColor);
    padding: 8rem 0 10rem;
}

.sectionCta .same-heading h2 {
    color: var(--WhiteColor);
}

.sectionCta .same-heading p {
  color: var(--WhiteColor);
}


.footer {
    background: var(--WhiteColor);
}

/* Top */
.footer .footerTop {
    padding: 4rem 0;
}

/* Logo */
.footer .footerLogo {
       max-height: 4.5rem;
    margin-bottom: 1rem;
}

/* Text */
.footer .footerText {
    font-size: 0.9rem;
    color: #747474;
    max-width: 30rem;
}

/* Titles */
.footer .footerTitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--PrimaryColor);
}

.footer .footerLinks li {
    padding: 0.3rem 0;
}

.footer .footerLinks a {
    text-decoration: none;
    color: #747474;
    font-size: 0.9rem;
    font-family: 'PP Neue Machina';
}

.footer .footerLinks a:hover {
    color: var(--SecondaryColor);
}

.footer .footerInfo .footerText {
    font-size: 0.85rem;
    line-height: 1.7;
}


/* Bottom bar */
.footer .footerBottom {
    background: var(--PrimaryColor);
    padding: 1rem 0;
}

.footer .footerBottomInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer .footerBottomLinks {
    display: flex;
    gap: 1.5rem;
}

.footer .footerBottomLinks a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'PP Neue Machina';
}

.footer .footerBottomLinks a:hover {
    color: var(--SecondaryColor);
}


.inner-banner {
    padding: clamp(5rem, 7vw, 5rem) 0;
        background: var(--PrimaryColor);
}

.inner-banner h1{    color: var(--WhiteColor);    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;}

.static-pages-outer .same-heading h2{    font-size: 2rem;}
.static-pages-outer .same-heading h3{    font-size: 1.4rem;}
.legal-highlight {
  background: #de4c2c0d;
  padding: 1.2rem;
  border-left: 4px solid var(--SecondaryColor);
  margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 1rem;
    color: #3B3B3B;
    line-height: 1.6;
}



/* Wrapper */
.dw-cookie-wrapper {
   position: fixed;
    box-sizing: border-box;
    z-index: 2147483647;
    background-color: #fff;
    opacity: 1;
    display: block;
    transform: translateY(0px);
    bottom: 0px;
    right: 0px;
    max-width: 320px;
    width: calc(100% - 20px);    
    box-shadow: 0 -0.3125rem 1.25rem rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform, top, left, right, bottom, max-width, width;
    margin: 1rem;
    border-radius: 10px;
    padding: 2rem;
}

/* Inner layout */
.dw-cookie-card {
    max-width: 75rem; /* 1200px */
    margin: auto;
    display: flex; 
    align-items: center;
   flex-direction: column;
    gap: 1rem; 
}

/* Text */
.dw-cookie-text h4 {
  font-size: 1.2rem;
    color: var(--BlackColor);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dw-cookie-text p {
      color: #555555;
    font-size: 0.9rem; line-height:1.6 ;
    margin-bottom: 0.5rem;
}

.dw-cookie-text a {
    color: var(--PrimaryColor);
    font-weight: 500;
    text-decoration: none;
}

.dw-cookie-wrapper .dw-cookie-actions .btn{    font-size: 0.9rem;}
/* Buttons */
.dw-cookie-actions {
display: flex;
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
}


