/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700&family=Lato:wght@300;400;700&display=swap');

/* --- Root & Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Global Layout Container --- */
.container {
    max-width: 1464px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
    position: relative;
}

.hero-form-box {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
}

.hero-form-box h3 {
    font-family: 'Dosis', Helvetica, Arial, Lucida, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 10px;
}

/* --- Premium Navigation Header --- */
.qadr-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 0;
    background: transparent;
    transition: all 0.4s ease;
}

.qadr-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.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: #ffffff;
    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: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding-bottom: 6px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.icon-link {
    color: #ffffff;
    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: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 7px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.login-text-link:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.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 15px;
    border-radius: 6px;
    background-color: #ff923c !important;
    border: none;
    color: #fff;
    font-weight: 600;
    outline: none;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    white-space: nowrap;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    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 */
.main-hero-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, rgb(15 13 11) 34%, rgb(30 15 15 / 0%) 56%, rgba(10, 10, 10, .65) 100%), url(../images/hero-background.jpeg);
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.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;
}

.hero-left {
    width: 60%;
    color: #fff;
}

.hero-tag {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 10px;
    color: #ff923c !important;
    font-weight: 600;
}

.hero-left h1 {
    font-family: 'Dosis', Helvetica, Arial, Lucida, sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 10px;
}

.hero-left h1 span {
    display: block;
    color: #ff923c;
    font-weight: 700;
}

.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: 10px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #ff923c;
    color: #fff;
    padding: 9px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: .3s;
}

.hero-btn:hover {
    background: #c95b1d;
    opacity: 0.9;
}

.watch-btn {
    background: transparent !important;
    border: 1px solid #ff923c;
}

.cta-flex {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Trust Badge */
.hero-trust-badge-text-only {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.rating-stars-row {
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0px 30px 0px;
}

.rating-stars-row .star {
    color: #ff923c;
    font-size: 20px;
}

.rating-stars-row .rating-number {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #e5e5e5;
    margin-left: 8px;
    letter-spacing: 0.3px;
}

.hero-trust-badge-text-only .trust-text {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #e5e5e5;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* Strategy Card */
.strategy-call-card {
    background-color: #fbf9f6;
    max-width: 380px;
    width: 100%;
    padding: 25px 30px;
    border-radius: 7px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.strategy-card-header h2 {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.strategy-card-header .highlight-orange {
    color: #ff923c;
    display: block;
}

.strategy-card-header .intro-subtext {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    margin: 20px 0 15px 0;
}

.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;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.custom-check-icon {
    width: 18px;
    height: 18px;
    border: 2px solid #ff923c;
    border-radius: 50%;
    color: #ff923c;
    font-size: 10px;
    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;
}

.input-field-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-field-wrapper input {
    width: 100%;
    padding: 11px 11px 11px 50px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field-wrapper input:focus {
    border-color: #c95b1d;
    box-shadow: 0 0 6px rgba(201, 91, 29, 0.15);
}

.field-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.field-icon svg {
    width: 100%;
    height: 100%;
}

.btn-submit-strategy {
    width: 100%;
    padding: 9px 20px;
    background-color: #ff923c;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-submit-strategy:hover {
    background-color: #ae4a14;
}

.strategy-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #555555;
    font-weight: 600;
}

.footer-badge-icon {
    color: #c95b1d;
    font-size: 14px;
}

.strategy-card-footer .divider {
    color: #aaaaaa;
    font-weight: bold;
    font-size: 16px;
}

/* Challenges Section */
.professionals-challenges-section {
    background-color: #faf8f5;
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
}

.container-fluid-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.challenges-top-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.challenges-heading-block {
    flex: 0 0 320px;
}

.challenges-heading-block .text-dark {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.challenges-heading-block .text-orange {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ff923c;
    line-height: 1.4;
    margin: 0;
}

.challenges-icons-grid {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: flex-start;
}

.challenge-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    border-left: 2px solid #ff923c;
    min-height: 95px;
}

.challenge-item:first-child {
    border-left: none;
}

.challenge-item .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-item span {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    line-height: 1.3;
    max-width: 110px;
}

/* Callout Box */
.challenges-callout-box {
    background-image: url(../images/callout-background.jpeg);
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.callout-left h3 {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0;
    text-align: center;
    letter-spacing: 1px;
}

.callout-divider {
    width: 1px;
    height: 220px;
    background-color: #c95b1d;
    margin: 0 25px 0px 0px;
    flex-shrink: 0;
}

.callout-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    width: 50%;
}

.callout-left {
    width: 50%;
}

.callouthead-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.callouthead-flex h4 {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0;
    letter-spacing: 1px;
}

.callout-text {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.callout-right p {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0;
    width: 69%;
    letter-spacing: 0.7px;
}

/* Beyond Approach Section */
section.beyound-approach {
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
    background: black;
}

.approach-heading p {
    color: #ef6314;
    letter-spacing: 1px;
    text-align: center;
    font-size: 28px;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    width: 100%;
}

/* Beyond Pillars Section */
.beyond-pillars-section {
    background-color: #060708;
    width: 100%;
    padding: 90px 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.pillars-master-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 65px;
}

.pillars-header-wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillars-orange-badge {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #c95b1d;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pillars-main-heading {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pillars-main-heading .highlight-orange {
    color: #c95b1d;
    font-weight: 600;
}

.pillars-header-accent-line {
    width: 45px;
    height: 1.5px;
    background-color: #c95b1d;
    margin-top: 5px;
}

.pillars-content-grid {
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: space-between;
}

.pillar-single-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 30px;
    box-sizing: border-box;
}

.pillar-icon-box {
    width: 50px;
    height: 50px;
    color: #c95b1d;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon-box svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.1;
}

.pillar-card-title {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 1.5px;
    margin: 0 0 15px 0;
    min-height: 44px;
    text-transform: uppercase;
}

.pillar-card-divider {
    width: 25px;
    height: 1.5px;
    background-color: #c95b1d;
    margin-bottom: 20px;
}

.pillar-card-description {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #ffff;
    line-height: 1.6;
    margin: 0;
    max-width: 260px;
}

.pillar-vertical-border {
    width: 1px;
    background-color: #1c1d21;
    align-self: center;
    height: 180px;
    flex-shrink: 0;
}

/* Testimonials Slider */
.professionals-testimonials-section {
    background-color: #faf8f5;
    padding: 70px 40px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
}

.container-testimonials {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonials-header {
    text-align: center;
}

.testimonials-header h3 {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
}

.testimonials-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scroll-behavior: smooth;
    position: relative;
    padding: 10px 0;
}

.testimonials-wrapper:active {
    cursor: grabbing;
}

.testimonials-wrapper::-webkit-scrollbar {
    height: 6px;
}

.testimonials-wrapper::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.testimonials-wrapper::-webkit-scrollbar-thumb {
    background: #ff923c;
    border-radius: 10px;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    width: max-content;
}

.testimonial-card {
    flex-shrink: 0;
    width: 350px;
    background: #ffffff;
    border: 1px solid #f0eae1;
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    gap: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-avatar-wrap {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
}

.card-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid #ff923c;
}

.card-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.quote-text {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #2b2b2b;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

.client-role {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ff923c;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.testimonials-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.trust-stat {
    display: flex;
    align-items: center;
}

.stars-row {
    gap: 3px;
}

.stars-row .star {
    color: #ff923c;
    font-size: 18px;
    line-height: 1;
}

.stat-label {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #444444;
}

.stars-row .stat-label {
    margin-left: 8px;
}

.bar-divider {
    width: 1px;
    height: 20px;
    background-color: #ff923c;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Split Banner */
.beyond-split-banner-section {
    width: 100%;
    background-image: url(../images/herohigh-level_background.jpeg);
    box-sizing: border-box;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}

.split-banner-container {
    display: flex;
    width: 100%;
    min-height: 420px;
    margin: 0 auto;
}

.split-content-side {
    flex: 1.1;
    display: flex;
    align-items: center;
    padding: 60px 40px 60px 60px;
    box-sizing: border-box;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ff923c;
    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: #c95b1d;
    transform: translateY(-5px);
}

/* Coach About Section */
.coach-about-section {
    background-color: #faf8f5;
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.coach-about-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
    box-sizing: border-box;
}

.coach-image-column {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.coach-image-column img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

.coach-content-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.coach-content-column .sub-badge-title {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ff923c;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.coach-content-column .main-profile-heading {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.profile-biography-text p {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.55;
    font-weight: 500;
    margin: 0 0 18px 0;
    max-width: 501px;
}

.coach-features-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
    width: 100%;
}

.micro-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.micro-icon {
    color: #c95b1d;
    flex-shrink: 0;
}

.micro-icon svg {
    width: 100%;
    height: 100%;
}

.micro-feature-item span {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1.5;
}

.feature-divider-line {
    width: 1px;
    height: 32px;
    background-color: #e5dfd8;
    flex-shrink: 0;
}

/* WhatsApp Button */
.wa-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.wa-popup {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 350px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
    z-index: 9999;
    display: none;
}

.wa-popup.show {
    display: block;
    animation: waFade .35s ease;
}

@keyframes waFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-header {
    background: #120000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-title {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.wa-close {
    font-size: 32px;
    cursor: pointer;
}

.wa-body {
    padding: 30px;
    background: #f5f5f5;
}

.wa-message {
    background: #fff;
    padding: 24px;
    border-radius: 28px;
    line-height: 1.8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    margin-bottom: 25px;
    font-size: 20px;
}

.wa-chat-btn {
    display: block;
    width: 100%;
    background: #120000;
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
}

/* Footer Section */
.beyond-footer-cta-section {
    background-color: #0c0c0d;
    padding: 85px 40px 30px 40px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.beyond-cta-block-wrap {
    max-width: 800px;
    margin: 0 auto 35px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beyond-cta-block-wrap .cta-primary-title {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.beyond-cta-block-wrap .cta-secondary-subtext {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 20px 0;
    max-width: 462px;
}

.cta-action-btn-row {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.cta-premium-orange-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #ff923c;
    color: #fff;
    padding: 9px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: .3s;
}

.cta-premium-orange-button:hover {
    background-color: #b04e16;
    transform: translateY(-1px);
}

.btn-arrow-icon {
    font-size: 16px;
    line-height: 1;
}

.cta-trust-badges-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.cta-trust-badges-row .lock-icon {
    color: #c95b1d;
    font-size: 12px;
    margin-right: 2px;
}

.badge-dot-divider {
    color: #c95b1d;
    opacity: 0.6;
}

.footer-divider-horizontal {
    border: 0;
    height: 1px;
    background-color: #1c1c1f;
    max-width: 1160px;
    margin: 0 auto 55px auto;
    width: 100%;
}

.beyond-main-footer-grid {
    max-width: 1160px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    width: 100%;
}

.footer-grid-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.brand-main-logo {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1;
}

.brand-main-logo .logo-plus-accent {
    color: #c95b1d;
    font-size: 18px;
    margin: 0 2px;
    display: inline-block;
    vertical-align: middle;
}

.brand-sub-logo {
    font-family: 'Lato', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #7a7a7d;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.brand-pitch-description {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    max-width: 320px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-col-heading {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #7a7a7d;
    letter-spacing: 1px;
    margin: 0 0 22px 0;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links-list a {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #a3a3a6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: #c95b1d;
}

.contact-text-item {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #a3a3a6;
    margin: 0 0 7px 0;
    font-weight: 500;
}

.contact-text-item a {
    color: #a3a3a6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text-item a:hover {
    color: #c95b1d;
}

.footer-social-media-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 15px;
}

.social-icon-link {
    color: #7a7a7d;
    transition: color 0.2s ease, transform 0.15s ease;
    display: inline-block;
}

.social-icon-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-copyright-bottom-bar {
    max-width: 1160px;
    margin: 0 auto;
    border-top: 1px solid #1c1c1f;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.copyright-left-text {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #ff923c;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.copyright-right-legal-links {
    display: flex;
    gap: 25px;
}

.copyright-right-legal-links a {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #555557;
    text-decoration: none;
    transition: color 0.2s ease;
}

.copyright-right-legal-links a:hover {
    color: #a3a3a6;
}
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 0px;
    background-color: #a0a0a0;
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
    font-size: 18px;
}

.back-to-top:hover {
    background-color: #ff923c;
}
