/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.5;
}

/* ===== HEADER — WHITE, SEPARATE FROM HERO BANNER ===== */
.qadr-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: #eeeae9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.qadr-header.scrolled {
    background: #eeeae9;
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    font-weight: 500;
    color: #162745;
    text-decoration: none;
    letter-spacing: 3px;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: #162745;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding-bottom: 6px;
    position: relative;
    transition: color 0.3s ease;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.icon-link {
    color: #162745;
    font-size: 17px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.icon-link:hover {
    color: #c5a059;
    transform: translateY(-1px);
}

.login-text-link {
    font-family: 'Lato', sans-serif;
    color: #162745;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 400;
    border: 1px solid rgba(22, 39, 69, 0.35);
    padding: 7px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.login-text-link:hover {
    background: #162745;
    color: #ffffff;
    border-color: #162745;
}

.cart-trigger {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -10px;
    background: #c5a059;
    color: #ffffff;
    font-size: 9px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

button.login-btn {
    padding: 9px 30px;
    background-color: transparent;
    border: 2px solid #162745;
    color: #162745;
    font-weight: 600;
    outline: none;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    white-space: nowrap;
}

button.login-btn:hover {
    background-color: #162745;
    color: #ffff;
    transition: 0.2s;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #162745;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1002;
    transition: left 0.4s ease;
    padding: 100px 30px 30px;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav-overlay.active {
    left: 0;
}

.overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.mobile-nav-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-overlay ul li a {
    font-family: 'Lato', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-nav-overlay ul li a:hover,
.mobile-nav-overlay ul li a.active {
    color: #ff923c;
}

.overlay-footer {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
}

.overlay-footer .mobile-login-btn {
    width: 100%;
    padding: 12px;
    background: #ff923c;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
}

.body-overlay.active {
    display: block;
}

body.menu-open {
    overflow: hidden;
}

/* ===== HERO BANNER — NOW SEPARATE FROM HEADER ===== */
.main-hero-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(157deg, rgb(15 13 11 / 27%) 34%, rgb(30 15 15 / 29%) 56%, rgb(10 10 10 / 0%) 100%), url(../images/hero-background.jpeg);
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
    background-size: cover;
    background-position: center;
}
.change-image-banner{
    background: linear-gradient(90deg, rgb(15 13 11) 34%, rgb(30 15 15 / 0%) 56%, rgba(10, 10, 10, .65) 100%), url(../images/BeyondFit-pricing-hero.jpeg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    min-height: 85vh;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #162745;
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
    font-size: 20px;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background-color: #162745;
    transform: translateY(-5px);
}

.container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}
.container-one {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: #ff923c;
    color: #ffffff;
    padding: 7px 0;
    font-size: 14px;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 15px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    gap: 25px;
}

.language-switcher a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0 5px;
}

.language-switcher a.active {
    text-decoration: underline;
}

.cart-info span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== SITE HEADER (secondary/unused header style - kept as-is) ===== */
.site-header {
    position: sticky;
    top: 0;
    background: #eeeae9;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.25s ease;
}

.header-shrink {
    padding: 7px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 70px !important;
    width: auto;
    transition: all 0.25s ease;
    object-fit: cover;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}
.nav-menu li a {
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #162745 !important;
    transition: 0.2s;
    font-family: 'Dosis', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-style: normal;
    text-transform: uppercase;
}

.nav-menu li a:hover {
    color: #ff923c;
}

.book-btn a {
    background: transparent;
    padding: 8px 20px;
    color: #162745 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #162745;
}

.book-btn a:hover {
    background: #162745;
    color: #ffff !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #ff923c;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-section {
    background: linear-gradient(46deg, rgb(238 234 233) 5%, rgb(238 234 233 / 0%) 55%, rgb(10 10 10 / 0%) 100%), url(../images/hero-background.jpeg);
    position: relative;
    padding: 100px 0 70px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* BACKGROUND SLIDER */
.hero-bg-slider{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-bg{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.4s ease-in-out;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-bg.active{
    opacity:1;
}

.hero-bg:nth-child(1){
    background-image:url('../images/lounge.jpeg');
}

.hero-bg:nth-child(2){
    background-image:url('../images/acute.png');
}

.hero-bg:nth-child(3){
    background-image:url('../images/help-3.png');
}

.hero-bg:nth-child(4){
    background-image:url('../images/clinic-3.png');
}

/* LEFT */
.hero-left{
    width:48%;
    color:#fff;
}

.hero-tag{
    display:block;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    padding-bottom:1em;
}

.hero-left h1 {
    font-family: 'Cinzel', 'Didot', 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 10px;
    color: #fff;
    width: 300px;
}
section.welcome-section {
    background: #141414;
}
.hero-text {
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    line-height: 1.8;
    color: rgba(255, 255, 255, .86);
    max-width: 650px;
    padding-bottom: 1em;
    color: #fff;
}

.hero-points{
    margin-bottom:5.82%;
}

.hero-points p{
    font-size:17px;
    color:#fff;
    margin-bottom:1em;
    font-weight:600;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    color: #fff;
    padding: 9px 0px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: .3s;
    border-bottom: 2px solid #a68864;
}
/* ==========================================================================
   QADR CRITERIA GRID ARCHITECTURE
   ========================================================================== */
.qadr-criteria-section {
    width: 100%;
    background-color: #f9f8f6;
    padding: 60px 60px;
    box-sizing: border-box;
    overflow: hidden;
}

.criteria-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.criteria-header {
    width: 100%;
    margin-bottom: 10px;
}

.criteria-eyebrow {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1c1815;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.criteria-grid {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.criteria-column {
    flex: 1;
    padding: 0 35px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
}

.criteria-column:first-child {
    padding-left: 0;
}

.criteria-column:last-child {
    padding-right: 0;
}

.criteria-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: 85%;
    background-color: #e3decb;
}
.column-number {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #a68864;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: inline-block;
}
.column-title {
    font-family: 'Cinzel', 'Didot', 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: #1c1815;
    line-height: 1.3;
    margin: 0 0 10px 0;
    letter-spacing: -0.2px;
}

.column-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.column-body p {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #55524d;
    line-height: 1.5;
    margin: 0;
}
/* ==========================================================================
   RECENT ASSESSMENTS ARCHITECTURE
   ========================================================================== */
.recent-assessments-section {
    width: 100%;
    background-color: #0b0c0e;
    padding: 40px 60px;
    box-sizing: border-box;
    overflow: hidden;
}

.assessment-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.assessment-header {
    width: 100%;
}

.assessment-eyebrow {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #c4bcbc;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.assessment-grid {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.assessment-column {
    flex: 1;
    padding: 10px 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    position: relative;
}

.assessment-column:first-child {
    padding-left: 0;
}

.assessment-column:last-child {
    padding-right: 0;
}

.assessment-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background-color: rgba(227, 222, 203, 0.15);
}

.assessment-client-title {
    font-family: 'Cinzel', 'Didot', 'Playfair Display', serif;
    font-size: 27px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 10px 0;
    letter-spacing: -0.2px;
}

.constraint-label {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #c5a880;
    margin: 0 0 8px 0;
    letter-spacing: 0.3px;
}

.constraint-type {
    font-family: 'Cinzel', 'Didot', 'Playfair Display', serif;
    font-style: italic;
    font-size: 23px;
    font-weight: 400;
    color: #e5e5e5;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.view-summary-link {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #c4bcbc;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    transition: color 0.3s ease;
}
.view-summary-link:hover {
    color: #c5a880;
}

.arrow-icon {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.view-summary-link:hover .arrow-icon {
    transform: translateX(4px);
}
/* ==========================================================================
   OUR PROCESS ENGINE UI DESIGN
   ========================================================================== */
.qadr-process-section {
    width: 100%;
    background-color: #f9f8f6;
    padding: 60px 60px;
    box-sizing: border-box;
}

.process-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-header {
    width: 100%;
}

.process-eyebrow {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #1c1815;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.process-pipeline {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.process-step.final-stage {
    flex: 0 1 auto;
    max-width: 260px;
}

.step-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 250px;
}

.step-number {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #c5a880;
    margin-bottom: 10px;
    display: inline-block;
}

.step-title {
    font-family: 'Cinzel', 'Didot', 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 500;
    color: #1c1815;
    margin: 0 0 5px 0;
    letter-spacing: -0.3px;
}

.step-description {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #55524d;
    line-height: 1.5;
    margin: 0;
}

.step-connector {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 42px;
    min-width: 40px;
}

.inline-arrow {
    font-family: Arial, sans-serif;
    font-size: 22px;
    color: #bfa88a;
    font-weight: 300;
    user-select: none;
}
/* ==========================================================================
   NOORD DIGITAL STUDIO EXECUTIVE FOOTER STYLES
   ========================================================================== */
.noord-studio-footer {
    width: 100%;
    background-color: #06090f;
    padding: 95px 0 0 0;
    box-sizing: border-box;
    position: relative;
    color: #ffffff;
}

.footer-primary-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px 80px 50px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand-column {
    flex: 1.2;
    max-width: 320px;
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.logo-accent-n {
    font-family: 'Cinzel', 'Didot', serif;
    font-size: 54px;
    color: #c5a880;
    line-height: 1;
    font-weight: 400;
}

.logo-main-text {
    font-family: 'Cinzel', 'Didot', serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #ffffff;
    margin: -5px 0 2px 0;
}

.logo-sub-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #8c939e;
    text-transform: uppercase;
}

.brand-pitch-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: #8c939e;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.brand-star-divider {
    margin-bottom: 25px;
}

.brand-contact-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #8c939e;
}

.meta-icon {
    font-size: 14px;
    opacity: 0.8;
}

.meta-link {
    color: #8c939e;
    text-decoration: none;
    transition: color 0.25s ease;
}

.meta-link:hover {
    color: #c5a880;
}

.footer-links-column {
    flex: 1;
    padding-left: 45px;
    border-left: 1px solid rgba(140, 147, 158, 0.12);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.column-eyebrow-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #c5a880;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.column-eyebrow-heading.gold-text {
    color: #c5a880;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer-nav-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(140, 147, 158, 0.08);
    display: flex;
    align-items: center;
}

.footer-nav-list li:first-child {
    padding-top: 0;
}

.footer-nav-list li a {
    font-family: 'Cinzel', 'Didot', serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav-list li a:hover {
    color: #c5a880;
}

.focus-numbered-list li {
    display: flex;
    gap: 16px;
    align-items: center;
}

.link-prefix-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #c5a880;
    min-width: 18px;
}

.footer-cta-column {
    flex: 1.3;
    padding-left: 45px;
    border-left: 1px solid rgba(140, 147, 158, 0.12);
    display: flex;
    flex-direction: column;
    max-width: 360px;
    box-sizing: border-box;
}

.cta-pitch-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #cbd2dc;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

.footer-bordered-btn {
    border: 1px solid rgba(197, 168, 128, 0.4);
    background-color: transparent;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    color: #c5a880;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 2px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer-bordered-btn:hover {
    background-color: #c5a880;
    color: #06090f !important;
    border-color: #c5a880;
}

.btn-arrow {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.footer-bordered-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==========================================
   LOWER UTILITY SOCKET BAR
   ========================================== */
.footer-sub-socket {
    width: 100%;
    border-top: 1px solid rgba(140, 147, 158, 0.12);
    padding: 30px 0;
    box-sizing: border-box;
}

.socket-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.socket-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #626973;
    margin: 0;
}

.socket-motto {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #8c939e;
    letter-spacing: 2px;
    margin: 0;
}

.socket-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.socket-legal-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #626973;
    text-decoration: none;
    transition: color 0.2s ease;
}

.socket-legal-links a:hover {
    color: #c5a880;
}

.legal-divider {
    color: rgba(140, 147, 158, 0.2);
    font-size: 12px;
}
.strategy-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.strategy-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.strategy-benefits-list li p {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #2b2b2b !important;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}
.custom-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.strategy-lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}