/* ============================================================
   WEBPROFITS ACADEMY — style.css
   Single source of truth. Covers all pages:
   index.html, agency.html, book.html, thanks.html
   ============================================================ */

/* ----------------------------------------------------------
   1. FONTS
   ---------------------------------------------------------- */
@font-face {
    font-family: 'Gellix';
    src:
        url('../fonts/Gellix-Bold.woff2') format('woff2'),
        url('../fonts/Gellix-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
}
@font-face {
    font-family: 'Gellix';
    src:
        url('../fonts/Gellix-Light.woff2') format('woff2'),
        url('../fonts/Gellix-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: optional;
}
@font-face {
    font-family: 'Gellix';
    src:
        url('../fonts/Gellix-Medium.woff2') format('woff2'),
        url('../fonts/Gellix-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: optional;
}
@font-face {
    font-family: 'Gellix';
    src:
        url('../fonts/Gellix-SemiBold.woff2') format('woff2'),
        url('../fonts/Gellix-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: optional;
}
@font-face {
    font-family: 'Gellix';
    src:
        url('../fonts/Gellix-Regular.woff2') format('woff2'),
        url('../fonts/Gellix-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
}

/* ----------------------------------------------------------
   2. CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
    --colors--black-webprofits: #070808;
    --colors--black-webprofits-2: #010010;
    --colors--black-purple: #121120;
    --colors--black-purple-2: #1e1d2b;
    --colors--grey: #a2a2a2;
    --colors--grey2: #383b3d;
    --colors--grey3: #505152;
    --colors--grey4: #e0dedc;
    --colors--grey5: #d9d9d9;
    --colors--grey6: #666a6a;
    --colors--grey7: #d1d1d1;
    --colors--red-webprofits: #f54949;
    --colors--white: white;
    --colors--white2: #fbf8f5;
    --colors--white3: #f1f1f1;
    --colors--cream: #fefbf7;
    --colors--cream-2: #f2efeb;
    --transition-main: cubic-bezier(0.75, 0.25, 0.13, 0.92);
}

/* ----------------------------------------------------------
   3. RESET
   ---------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

/* ----------------------------------------------------------
   4. BASE ELEMENTS
   ---------------------------------------------------------- */
body {
    color: var(--colors--black-webprofits-2);
    font-family: Gellix, Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: clamp(2.5rem, 2.2rem + 2vw, 4rem);
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    max-width: 960px;
    margin: 0 auto 2.5rem;
    line-height: 1.1;
}
h2 {
    font-size: clamp(2.0625rem, 1.875rem + 1vw, 3rem);
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
}
h3 {
    font-size: 1.875rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    line-height: 1;
    color: var(--colors--white);
    margin: 0;
}
h4 {
    font-size: clamp(0.7812rem, 0.75rem + 0.25vw, 0.9375rem);
    margin: 0 0 1.2rem 0;
    font-weight: 600;
    line-height: 1.3;
}
h5 {
    font-size: 1.625rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    font-style: normal;
    line-height: 1.2;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p {
    margin: 0 0 1.5rem;
}
p:last-child {
    margin-bottom: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}

/* ----------------------------------------------------------
   5. LAYOUT & CONTENT WRAPPERS
   ---------------------------------------------------------- */
.content {
    width: 80%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 5rem 0 0;
}
.content.header-c {
    padding: 1.5rem 0;
}
.content.main-c {
    padding-top: 2.5rem;
}
.content.scale-c {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
/* First scale-c section has reduced top padding */
.content.scale-c:first-of-type {
    padding-top: 5rem;
    padding-bottom: 0;
}
.content.faq-c {
    padding-bottom: 5rem;
}
.content.contact-c {
    padding-bottom: 5rem;
}
.content.footer-c {
    padding: 5rem 0;
}
.center-block {
    text-align: center;
    margin: 0 auto 3rem;
}
main {
    text-align: center;
}
main p {
    margin: 0 0 2.9rem 0;
}

/* ----------------------------------------------------------
   6. HEADER
   ---------------------------------------------------------- */
.header-wr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
.nav-list li a {
    font-size: 1rem;
    transition: color 0.3s var(--transition-main);
}
.nav-list li a:hover {
    color: var(--colors--red-webprofits);
}
#thanks-page .logo img {
    height: 3rem;
    width: auto;
}

/* ----------------------------------------------------------
   7. UTILITY CLASSES
   ---------------------------------------------------------- */
.top-red {
    font-size: 1rem;
    color: var(--colors--red-webprofits);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin: 0 0 2rem 0;
}
.universal-box {
    background: var(--colors--cream);
    border: 1px solid rgba(7, 8, 8, 0.1);
    border-radius: 1.25rem;
    padding: 2.5rem;
}
.pill {
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: fit-content;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    margin: 0 auto;
}
.pill.header-pill {
    padding: 0.75rem 1.25rem;
    margin: 0 auto 2.125rem;
    gap: 0.5rem;
    font-weight: 400;
}
.small-pill {
    display: inline-block;
    background: var(--colors--white);
    border: 1px solid rgba(7, 8, 8, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1;
    margin-bottom:1rem;
}
.emoji-hand {
    font-size: 2rem;
    line-height: 1;
    position: relative;
}
.emoji-hand::after {
    content: '';
    display: block;
    width: 1px;
    height: 1.5rem;
    background-color: var(--colors--grey5);
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
}
.hide {
    display: none;
}
/* Workflow paragraphs (replaces inline style on <p> in module sections) */
.workflow-p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--colors--grey3);
}
/* brands-wr-boxes with top margin (replaces inline style="margin-top: 1.25rem") */
.brands-wr-boxes + .brands-wr-boxes,
.brands-wr-boxes.mt {
    margin-top: 1.25rem;
}

/* ----------------------------------------------------------
   8. CTA BUTTONS
   ---------------------------------------------------------- */
.cta-wr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.cta {
    display: inline-block;
    background-color: var(--colors--red-webprofits);
    color: var(--colors--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 1.5px solid var(--colors--red-webprofits);
    border-radius: 2.5rem;
    padding: 1rem 2.1875rem;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
}
.cta.cta-ghost {
    background: transparent;
    color: var(--colors--black-webprofits-2);
    border-color: var(--colors--black-webprofits-2);
}
.cta::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 0.65rem;
    background: url(../images/cta-arrow-white.svg) no-repeat center / contain;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cta.cta-ghost::after {
    background: url(../images/cta-arrow-black.svg) no-repeat center / contain;
}
.cta:hover {
    background-color: var(--colors--black-webprofits-2);
    color: var(--colors--white);
    border-color: var(--colors--white);
}
.cta:hover::after {
    transform: rotate(-45deg);
}
.cta.cta-ghost:hover {
    background-color: var(--colors--black-webprofits-2);
    color: var(--colors--white);
    border-color: var(--colors--black-webprofits-2);
}
.cta.cta-ghost:hover::after {
    filter: invert(1);
}
.under-cta {
    font-size: 0.9rem;
    text-align: center;
    margin: 1rem 0 0 0;
}
.mid-cta-simple {
    text-align: center;
    padding: 3rem 0 0;
}

/* ----------------------------------------------------------
   9. HERO / MAIN SECTION
   ---------------------------------------------------------- */
.hero-bullets {
    font-weight: 600;
    margin: 3.2rem 0;
    letter-spacing: 0.02em;
}
.hero-bullets span {
    margin: 0 1.2rem;
    color: var(--colors--grey3);
}
.check-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
}
.check-list li {
    background: url(../images/check-icon.svg) no-repeat left top 4px;
    padding: 0 0 0 1.8rem;
    text-align: left;
    font-weight: 600;
    line-height: 1.3;
}
.check-list li img {
    margin: 0.8rem 0 0 0;
}
/* Hero sub-elements (training page) */
.hero-sub {
    font-size: 1.15rem;
    max-width: 880px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: var(--colors--grey3);
}
.hero-reassure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.hero-reassure span {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 0.4rem;
}
.hero-reassure img {
    width: 16px;
    height: 16px;
    margin-top: 3px;
}
.hero-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2.5rem;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: left;
}
.hero-checks li {
    background: url(../images/check-icon-5.svg) no-repeat left 3px;
    padding-left: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ----------------------------------------------------------
   10. PARTNERS
   ---------------------------------------------------------- */
.partners-block {
    margin-top: 5rem;
    text-align: center;
}
.partners-block p {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--colors--grey);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.partners-wr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem 4rem;
    flex-wrap: wrap;
}

/* ----------------------------------------------------------
   11. SMARTBAR
   ---------------------------------------------------------- */
.smartbar {
    background: var(--colors--red-webprofits);
    text-align: center;
    padding: 0.6rem 1rem;
}
.smartbar a {
    color: var(--colors--white);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.smartbar-link {
    text-decoration: underline;
}
.steak-king-logo {
    height: 42px;
    width: auto;
}

/* ----------------------------------------------------------
   12. PROOF / SWIPER SLIDER
   ---------------------------------------------------------- */
.proof-slider {
    max-width: 100%;
    width: 100%;
    overflow: visible;
}
.proof-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.swiper-slide {
    width: 100%;
    height: auto !important;
    background: var(--colors--black-purple);
    border-radius: 1.25rem;
    padding: 2rem;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 4rem;
}
.proof-top {
    border-bottom: 1px solid #ffffff25;
    padding-bottom: 1.25rem;
    margin-bottom: 3rem;
}
.proof-middle p {
    color: var(--colors--grey);
}
.prof-btm {
    justify-self: flex-end;
}
.prof-btm p {
    font-size: 4rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}
.prof-btm span {
    display: inline-block;
    background: var(--colors--black-webprofits);
    border-radius: 40px;
    border: 1px solid #ffffff30;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--colors--white);
}
.proof-navigation {
    position: relative;
    margin: 5rem 0 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}
.swiper-navigation-icon {
    display: none;
}
.swiper-btn {
    width: 40px !important;
    height: 40px !important;
    background: var(--colors--white);
    border: 1px solid var(--colors--white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    position: static !important;
    margin: 0 !important;
    transition: all 0.3s var(--transition-main);
}
.swiper-btn:hover {
    background: var(--colors--grey5);
}
.swiper-pagination {
    position: static !important;
    width: auto !important;
    transform: none !important;
}
.swiper-pagination-bullet {
    background: var(--colors--white) !important;
    margin: 0 5px !important;
    transition: all 0.3s var(--transition-main);
}
.swiper-pagination-bullet-active {
    background: var(--colors--white) !important;
}

/* ----------------------------------------------------------
   13. BRANDS SECTION
   ---------------------------------------------------------- */
#brands .center-block {
    max-width: 55rem;
}
.brands-wr-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.brands-wr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem 7rem;
    margin: 8rem 0;
}
.brands-wr img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 50px;
    object-fit: contain;
}
.brands-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 2.5rem;
}
.brands-top {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 0 1.25rem 0;
    margin: 0 0 1.25rem 0;
    border-bottom: 1px solid rgba(7, 8, 8, 0.15);
}
.brands-top img {
    max-height: 1.75rem;
    width: auto;
}
.brands-btm p:first-of-type {
    font-size: clamp(3.125rem, 2.95rem + 1.4vw, 4rem);
    line-height: 1;
    font-family: 'georgia';
}
.brand-boxes-btm {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.625rem;
}
.universal-box.brand-box-btm {
    padding: 1.375rem 1.25rem;
    text-align: center;
}
.brand-box-btm p:first-of-type {
    font-size: clamp(2rem, 1.8rem + 1.6vw, 3rem);
    color: var(--colors--red-webprofits);
    font-family: georgia;
    line-height: 1;
    letter-spacing: -1px;
    margin: 0 0 0.625rem 0;
}

/* ----------------------------------------------------------
   14. STATS STRIP
   ---------------------------------------------------------- */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 890px;
    width: 100%;
    margin: 0 auto;
}
.stat-box {
    text-align: center;
    padding: 1.5rem 1rem;
}
.stat-box .stat-value {
    font-size: clamp(2.2rem, 2.9rem + 1.6vw, 4rem);
    font-family: 'georgia';
    color: var(--colors--red-webprofits);
    line-height: 1;
    margin: 0 0 1rem;
}
.stat-box .stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin: 0;
}

/* ----------------------------------------------------------
   15. WHO / AWARDS SECTION
   ---------------------------------------------------------- */
.group-wr {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.875rem 2.125rem;
}
.group-wr img {
    width: auto;
    max-width: 80px;
    object-fit: contain;
    max-height: 50px;
    height: auto;
}
#who .center-block {
    margin-bottom: 3rem;
}

/* ----------------------------------------------------------
   16. EDGE / OUR EDGE SECTION
   ---------------------------------------------------------- */
#edge .center-block {
    max-width: 40rem;
}
.edge-box {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
}
.edge-box div {
    padding: 0 0 2rem 0;
    border-bottom: 1px solid rgba(7, 8, 8, 0.1);
}
.edge-box .small-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 600;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
}
.edge-box h5 {
    margin: 0;
}

/* ----------------------------------------------------------
   17. COMPARE TABLE
   ---------------------------------------------------------- */
#compare .center-block {
    max-width: 600px;
}
.compare-scroll-wrap {
    overflow-x: visible;
}
.compare-scroll-hint {
    display: none;
    text-align: center;
    font-size: 0.875rem;
    color: var(--colors--grey);
    margin: 1rem 0 0 0;
    font-style: italic;
}
.compare-mobile {
    display: none;
}
.compare-mobile .compare-card {
    border: 1px solid var(--colors--grey4);
    border-radius: 0.75rem;
    margin: 0 0 1.25rem 0;
    overflow: hidden;
}
.compare-mobile .compare-card-wp {
    border: 2px solid var(--colors--black-webprofits);
}
.compare-mobile .compare-card-header {
    padding: 1.5rem;
    text-align: center;
    background: var(--colors--cream);
}
.compare-mobile .compare-card-wp .compare-card-header {
    background: var(--colors--cream-2);
}
.compare-mobile .compare-card-header img {
    max-height: 1.5rem;
    margin: 0 0 0.75rem 0;
}
.compare-mobile .compare-card-price {
    font-size: 0.875rem;
    color: var(--colors--grey2);
}
.compare-mobile .compare-card-price span {
    font-size: 1.75rem;
    font-family: 'georgia', sans-serif;
}
.compare-mobile .compare-card-body {
    padding: 0;
}
.compare-mobile .compare-card-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--colors--grey4);
    gap: 1rem;
}
.compare-mobile .compare-card-row:nth-child(odd) {
    background: var(--colors--cream);
}
.compare-mobile .compare-card-wp .compare-card-row:nth-child(odd) {
    background: var(--colors--cream-2);
}
.compare-mobile .compare-card-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--colors--grey6);
    flex-shrink: 0;
    width: 40%;
}
.compare-mobile .compare-card-row p:last-child {
    font-size: 0.9375rem;
    color: var(--colors--black-webprofits-2);
    text-align: right;
}
.large-only {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.large-only tbody tr:nth-of-type(odd) {
    background: var(--colors--cream);
}
.large-only tbody tr td {
    border-top: 1px solid rgba(7, 8, 8, 0.15);
    border-right: 1px solid rgba(7, 8, 8, 0.15);
    font-size: 0.9375rem;
    padding: 1.25rem;
}
.large-only tbody tr td:nth-of-type(2) {
    border-right: 1px solid var(--colors--black-webprofits);
    border-left: 1px solid var(--colors--black-webprofits);
}
.large-only tbody tr:nth-of-type(even) td:nth-of-type(2) {
    background: #f2efeb;
}
.large-only tbody tr:first-of-type td {
    border-top-left-radius: 0.9375rem;
    border-top-right-radius: 0.9375rem;
    vertical-align: top;
}
.large-only tbody tr:first-of-type td img {
    vertical-align: top;
    margin: 0 0 1.25rem 0;
}
.large-only tbody tr:first-of-type td p {
    font-size: 0.875rem;
    color: var(--colors--grey2);
    margin: 0;
}
.large-only tbody tr:first-of-type td p span {
    font-size: 2rem;
    font-family: 'georgia';
    color: var(--colors--black-webprofits);
}
.large-only tbody tr:first-of-type td:nth-of-type(2) {
    border-top: 1px solid var(--colors--black-webprofits);
    background: #f2efeb;
}
.large-only tbody tr:first-of-type td:nth-of-type(2) img {
    margin: 0 0 0.3125rem 0;
    width: 135px;
}
.large-only tbody tr:first-of-type td:first-of-type {
    border: none;
    background: var(--colors--white);
}
.large-only tbody tr td:first-of-type {
    border-left: 1px solid rgba(7, 8, 8, 0.15);
    font-weight: 600;
}
.large-only tbody tr:last-of-type {
    background: var(--colors--white);
}
.large-only tbody tr:last-of-type td {
    border-right: none;
    border-left: none;
    padding: 0.625rem;
}
.large-only tbody tr:last-of-type td:nth-of-type(2) {
    background: var(--colors--cream);
    border-right: 1px solid var(--colors--black-webprofits);
    border-left: 1px solid var(--colors--black-webprofits);
    border-bottom: 1px solid var(--colors--black-webprofits);
    border-bottom-left-radius: 0.9375rem;
    border-bottom-right-radius: 0.9375rem;
}
.under-table {
    font-size: 0.875rem;
    color: var(--colors--grey2);
    text-align: center;
    margin: 2rem 0 0;
}

/* ----------------------------------------------------------
   18. TESTIMONIALS / ABOUT SECTION
   ---------------------------------------------------------- */
#about .center-block {
    max-width: 760px;
}
.about-wr {
    background: var(--colors--cream);
    padding: 2.5rem;
    border-radius: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
    margin: 0;
}
.about-box {
    background: var(--colors--white);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.9375rem;
    padding: 1.5rem;
}
.about-box h6 {
    font-size: 1.25rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 1.5rem 0;
}
.about-top p {
    color: var(--colors--grey-2);
}
.about-btm p:first-of-type {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.1875rem 0;
}
.about-btm p:last-of-type {
    font-size: 0.875rem;
    color: var(--colors--grey3);
}

/* ----------------------------------------------------------
   19. BUILT FOR YOU SECTION
   ---------------------------------------------------------- */
#built .center-block {
    max-width: 600px;
}
.built-wr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.built-box h5 {
    margin: 0 0 2.5rem 0;
}
.built-box ul li {
    padding: 0 0 1.25rem 1.875rem;
    margin: 0 0 1.25rem 0;
    border-bottom: 1px solid rgba(7, 8, 8, 0.15);
}
.built-box:first-of-type ul li {
    background: url(../images/check-icon-green.svg) no-repeat left top 5px;
}
.built-box:first-of-type ul li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.built-box:last-of-type ul li {
    background: url(../images/check-icon-red.svg) no-repeat left top 5px;
}

/* ----------------------------------------------------------
   20. PROBLEM SECTION
   ---------------------------------------------------------- */
#problem .center-block {
    max-width: 55rem;
}

#results .center-block {
    max-width: 55rem;
}

#stack .center-block {
    max-width: 45rem;
}

#workflow .center-block {
    max-width: 45rem;
}

#usecases .center-block {
    max-width: 45rem;
}

#shift .center-block {
    max-width: 45rem;
}

#competitive .center-block {
    max-width: 45rem;
}

#inside .center-block {
    max-width: 45rem;
}

#problem h5 {
    margin: 2rem 0 1rem;
}
.problem-wr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 0 2.375rem 0;
}
.problem-wr:last-child {
    margin: 0;
}
#problem .problem-box {
    padding: 2.5rem;
}
#problem .problem-box img {
    width: 48px;
    height: 48px;
}
#problem .problem-box h5 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
#problem .problem-box p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--colors--grey3);
}

/* ----------------------------------------------------------
   21. SCALE / WHAT'S INSIDE SECTION
   ---------------------------------------------------------- */
#scale .center-block {
    max-width: 600px;
}
.scale-wr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.scale-box .top-red {
    font-family: 'georgia';
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
}
.scale-box ul li {
    background: url(../images/check-icon-5.svg) no-repeat left top 5px;
    padding: 0 0 1.25rem 1.875rem;
    margin: 0 0 1.25rem 0;
    border-bottom: 1px solid rgba(7, 8, 8, 0.15);
}
.scale-box ul li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* ----------------------------------------------------------
   22. LOCK / PRICING SECTION
   ---------------------------------------------------------- */
.section-lock {
    background: var(--colors--white);
}
.lock-top {
    background: var(--colors--cream-2);
    color: var(--colors--black-webprofits-2);
    padding: 1rem;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}
.lock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--colors--grey4);
    border-top: none;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}
.lock-left {
    padding: 2.5rem;
    border-right: 1px solid var(--colors--grey4);
}
.lock-heading {
    font-size: clamp(1.625rem, 1.375rem + 1vw, 2rem);
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    color: var(--colors--black-webprofits-2);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}
.lock-desc {
    color: var(--colors--grey6);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}
.lock-price-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--colors--grey4);
    border-radius: 0.5rem;
    margin: 0 0 1.5rem 0;
    overflow: hidden;
}
.lock-price-label {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--colors--black-webprofits-2);
    white-space: nowrap;
}
.lock-price-value {
    padding: 0.875rem 1.25rem;
    font-size: 1.75rem;
    font-family: 'georgia', sans-serif;
    color: var(--colors--black-webprofits-2);
    border-left: 1px solid var(--colors--grey4);
    white-space: nowrap;
}
.lock-price-value span {
    font-size: 1.125rem;
}
.lock-highlights {
    margin: 0 0 1.5rem 0;
}
.lock-highlights li {
    background: url(../images/check-icon-red-2.svg) no-repeat left top 4px;
    padding: 0 0 0.75rem 1.75rem;
    color: var(--colors--grey3);
    font-size: 1rem;
}
.lock-highlights li:last-of-type {
    padding-bottom: 0;
}
.lock-left .cta {
    width: 100%;
    margin: 0 0 0.75rem 0;
}
.lock-subtext {
    text-align: center;
    color: var(--colors--grey);
    font-size: 0.875rem;
    margin: 0 0 1.5rem 0;
}
.lock-trust {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}
.lock-trust div {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--colors--grey6);
}
.lock-trust span {
    font-weight: 600;
}
.lock-trust img {
    width: 1rem;
    height: 1rem;
    opacity: 0.4;
}
.lock-right {
    padding: 2.5rem 2.5rem 3rem;
}
.lock-right-heading {
    font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem);
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    color: var(--colors--black-webprofits-2);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}
.list-black-check {
    margin: 0;
}
.list-black-check li {
    background: url(../images/check-icon-5.svg) no-repeat left top 4px;
    padding: 0 0 0.875rem 1.75rem;
    margin: 0 0 0.875rem 0;
    border-bottom: 1px solid var(--colors--grey4);
    color: var(--colors--grey3);
    font-size: 1rem;
}
.list-black-check li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.list-red-check {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-weight: 600;
    margin: 1.875rem 0 0 0;
}
.list-red-check li {
    background: url(../images/check-icon-red-2.svg) no-repeat left top 5px;
    padding: 0 0 0 1.875rem;
}
/* Training page pricing cards */
.lock-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 920px;
    margin: 0 auto;
}
.lock-card {
    border: 1px solid var(--colors--grey4);
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.lock-card.featured {
    border: 2px solid var(--colors--red-webprofits);
}
.lock-card-inner {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.lock-badge {
    background: var(--colors--red-webprofits);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.6rem 1rem;
    text-align: center;
}
.lock-card .price-tier {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--colors--grey6);
    margin-bottom: 0.75rem;
}
.lock-card .price-amount {
    font-size: 3rem;
    font-family: 'georgia', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.lock-card .price-amount span {
    font-size: 1.1rem;
    color: var(--colors--grey);
}
.lock-card .price-term {
    font-size: 0.75rem;
    color: var(--colors--grey);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--colors--grey4);
}
.lock-card .price-highlight {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--colors--black-webprofits-2);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--colors--grey4);
}
.lock-card .list-black-check {
    flex: 1;
}
.lock-card .cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

/* ----------------------------------------------------------
   23. DARK SECTION (training page)
   ---------------------------------------------------------- */
.section-dark {
    background: var(--colors--black-webprofits-2);
    color: var(--colors--white);
}
.section-dark h2 {
    color: var(--colors--white);
}
.section-dark p {
    color: rgba(255, 255, 255, 0.6);
}
.section-dark .cta.cta-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--colors--white);
}
.section-dark .cta.cta-ghost::after {
    filter: invert(1);
}
.section-dark .cta.cta-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}
.section-dark .universal-box.pill {
    border-color: rgba(255, 255, 255, 0.15);
    background: transparent;
}
.section-dark .universal-box.pill p {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}
.dark-wr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ----------------------------------------------------------
   24. MODULE TABS (training page)
   ---------------------------------------------------------- */
/* "What's Inside the Claude Code Training" section - match the generous
   top spacing the section has on /claude (preceding section sits flush). */
/* #inside > .content {
    padding-top: 60px;
} */
/* Desktop: each .module-group (head + panel) uses display:contents so the
   three heads form a tab row and the panels share the row below. Mobile turns
   this into a stacked accordion (see media query at the end of this section). */
.module-outer {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
}
.module-group {
    display: contents;
}
.module-head {
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 1.25rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--colors--cream);
    border: 1px solid var(--colors--grey4);
    border-bottom: none;
    cursor: pointer;
    color: var(--colors--grey);
    font-family: inherit;
    transition: all 0.2s;
    border-radius: 0.5rem 0.5rem 0 0;
    margin-right: -1px;
    text-align: center;
}
.module-group:last-child .module-head {
    margin-right: 0;
}
.module-head.active {
    background: white;
    color: var(--colors--red-webprofits);
    z-index: 1;
}
.module-head-chevron {
    display: none;
}
.module-tab-count {
    display: block;
    font-size: 0.85rem;
    color: var(--colors--grey);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    margin-top: 0.2rem;
}
.module-panel {
    grid-row: 2;
    grid-column: 1 / -1;
    border: 1px solid var(--colors--grey4);
    border-radius: 0 0 0.75rem 0.75rem;
    padding: 2.5rem 3rem;
    background: white;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    display: none;
}
.module-panel.active {
    display: grid;
}
.module-item {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1.25rem;
    padding: 0 0 2rem 0;
    margin: 0 0 2rem 0;
    border-bottom: 1px solid var(--colors--grey4);
    align-items: start;
}
.module-item:last-child,
.module-item:nth-last-child(2) {
    border-bottom: none;
    padding: 0;
    margin: 0;
}
.module-num {
    font-size: 2rem;
    font-family: 'georgia', serif;
    color: var(--colors--red-webprofits);
    line-height: 1;
    padding-top: 0.1rem;
}
.module-item h5 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    line-height: 1.3;
}
.module-item ul {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--colors--grey3);
    margin: 0;
    padding-left: 1.25rem;
    list-style: disc;
}
.module-item ul li {
    margin-bottom: 0.35rem;
    padding-left: 0.25rem;
}
.module-item ul li:last-child {
    margin-bottom: 0;
}
.module-item ul li::marker {
    color: var(--colors--red-webprofits);
}

p.marginTop {
    margin-top: 1.25rem;
}
/* Mobile: stacked accordion - Setup, then Workflow, then Scale, each expands in place */
@media (max-width: 768px) {
    .module-outer {
        display: block;
    }
    .module-group {
        display: block;
        margin-bottom: 0.5rem;
    }
    .module-head {
        grid-row: auto;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        text-align: left;
        border: 1px solid var(--colors--grey4);
        border-radius: 0.5rem;
        margin-right: 0;
        font-size: 1.25rem;
    }
    .module-head.active {
        border-radius: 0.5rem 0.5rem 0 0;
        background: white;
    }
    .module-head-label {
        flex: 1;
    }
    .module-head .module-tab-count {
        margin-top: 0;
        white-space: nowrap;
    }
    .module-head-chevron {
        display: block;
        flex-shrink: 0;
        transition: transform 0.2s;
    }
    .module-head.active .module-head-chevron {
        transform: rotate(180deg);
    }
    .module-panel {
        grid-row: auto;
        grid-column: auto;
        border-top: none;
        border-radius: 0 0 0.5rem 0.5rem;
        padding: 1.5rem 1.25rem;
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------------------------
   25. WORKFLOW WALKTHROUGH (training page)
   ---------------------------------------------------------- */
.workflow-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 0 2.5rem;
    margin: 0 0 2.5rem;
    border-bottom: 1px solid var(--colors--grey4);
}
.workflow-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.workflow-step-num {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--colors--red-webprofits);
    margin-bottom: 0.75rem;
}
.workflow-img {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid var(--colors--grey4);
    background: var(--colors--cream);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.workflow-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}
.shift-grid {
    grid-template-columns: 1fr 1fr;
}

/* ----------------------------------------------------------
   26. FAQ SECTION
   ---------------------------------------------------------- */
.faq_section_row {
    text-align: left;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.faq_question {
    font-size: clamp(1.375rem, 1.275rem + 0.8vw, 1.875rem);
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    position: relative;
    padding: 0 1.875rem 1.875rem 0;
    margin: 0;
}
.faq_question p {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}
.faq_question::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--colors--black-webprofits);
    position: absolute;
    right: 9px;
    top: 15px;
    transition: all 0.5s ease;
}
.faq_question::before {
    content: '';
    display: block;
    width: 2px;
    height: 20px;
    background: var(--colors--black-webprofits);
    position: absolute;
    right: 18px;
    top: 5px;
    transition: all 0.5s ease;
}
.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq_answer > div {
    padding: 0 40px 40px 0;
}
.faq_answer p {
    color: var(--colors--grey3);
    margin: 0 0 15px 0;
}
.faq_answer p:last-child {
    margin: 0;
}
.faq_answer a {
    color: inherit;
}
.faq_answer a:hover {
    text-decoration: none;
}
.faq_answer ol li {
    margin: 0 0 10px 0;
}
.faq_answer ul li:last-of-type {
    margin: 0;
}
.faq_row {
    cursor: pointer;
    border-bottom: 1px solid var(--colors--grey2);
    transition: all 0.5s ease;
    margin: 0 0 40px 0;
}
.faq_row:last-of-type {
    margin: 0;
}
.faq_row:hover {
    border-bottom-color: var(--colors--red-webprofits);
}
.faq_title {
    transition: all 0.5s ease;
}
.faq_row:hover .faq_title {
    color: var(--colors--red-webprofits);
}
.faq_row.faq_active {
    border-bottom-color: var(--colors--red-webprofits);
}
.faq_row.faq_active .faq_title {
    color: var(--colors--red-webprofits);
}
.faq_row.faq_active .faq_question::before {
    transform: rotate(90deg);
}

/* ----------------------------------------------------------
   27. CONTACT / FORM SECTION
   ---------------------------------------------------------- */
#contact .center-block {
    max-width: 660px;
    margin-bottom: 2rem;
}
.section-contact {
    background: var(--colors--cream);
}
.section-contact p {
    color: #9c9c9c;
    text-align: center;
}
.founding-member-pricing {
    font-size: 0.875rem;
    margin: 0.625rem 0 0;
}
.form-holder {
    background: var(--colors--white);
    border-radius: 1.25rem;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}
.form-title {
    background: var(--colors--black-webprofits-2);
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
    padding: 1.25rem;
    text-align: center;
}
form {
    padding: 1.5rem 2rem;
}
form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
form ul li {
    width: 100%;
    margin: 0 0 1rem 0;
}
form ul li.buttons {
    margin: 0;
}
.name-fields {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
}
.input-wr {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
}
.form-holder .form-heading a {
    color: inherit;
}
.form-holder label {
    font-size: 1rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--colors--grey3);
    display: inline-block;
    margin: 0 0 0.5rem 0;
}
.hero-top {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom: 1px solid #ffffff50;
    padding: 24px;
    text-align: center;
    color: var(--colors--white);
}
.hero-top h3 {
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--colors--white);
    margin: 0;
}
.hero-center {
    padding: 24px 32px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
input,
select,
textarea {
    margin: 0;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(7, 8, 8, 0.1);
    height: 48px;
    box-sizing: border-box;
    width: 100% !important;
    padding-left: 20px;
    font-size: 16px;
    font-family: Gellix, Arial, sans-serif;
    color: var(--colors--grey3);
    font-weight: 400;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
input:focus,
select:focus {
    outline: 0 none;
    border-color: var(--colors--grey6);
}
select {
    color: var(--colors--grey);
    background: url(../images/arrow-down-2.svg) no-repeat center right 24px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea {
    height: 110px;
    width: 100% !important;
    padding: 16px 19px;
    line-height: 26px;
    resize: none !important;
}
::-moz-placeholder {
    color: #505152;
}
:-ms-input-placeholder {
    color: #505152;
}
:-moz-placeholder {
    color: #505152;
}
.cta.cta-submit {
    width: 100%;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
}
.cta.cta-submit:hover {
    background: var(--colors--black-webprofits-2);
}
.was-validated select:invalid,
.was-validated input:invalid,
.was-validated textarea:invalid {
    border-color: red;
}

/* ----------------------------------------------------------
   28. HUBSPOT / WUFOO FORM HELPERS
   ---------------------------------------------------------- */
.hs-form {
    display: flex;
    flex-direction: column;
}
.hs-form-field {
    margin-bottom: 15px;
}
.input {
    margin-right: 0 !important;
    width: 100% !important;
}
fieldset {
    max-width: 100% !important;
    display: flex;
    gap: 0 20px;
    margin: 0;
}
.form-columns-1 {
    display: block !important;
}
.inputs-list {
    list-style: none;
    padding: 0;
}
.inputs-list label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
}
[type='checkbox'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    max-width: 21px !important;
    width: 100%;
    height: 20px;
    border: solid 1px var(--colors--grey-2);
    position: relative;
}
[type='checkbox']:checked::before {
    content: '';
    width: 15px;
    height: 14px;
    background-color: var(--colors--red-webprofits);
    position: absolute;
    top: 2px;
    left: 2px;
}
.hs-richtext {
    font-size: 0.9rem;
}
.legal-consent-container {
    margin: 0 0 15px 0;
}
ul.hs-error-msgs {
    display: none !important;
}
.field.hs_recaptcha {
    order: 100;
    margin-bottom: 0;
    margin-top: 25px;
}
.hs_recaptcha {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: stretch;
}
.hs-button {
    display: block;
    width: 100% !important;
    height: 56px;
    box-sizing: border-box;
    font-size: 1.125rem;
    color: #fff;
    font-weight: 600;
    text-transform: none !important;
    justify-content: center;
    align-items: center;
    background-color: var(--colors--red-webprofits);
    border-radius: 30px;
    padding: 0 40px !important;
    cursor: pointer;
    transition: all 0.5s ease;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.hs-button::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 0.65rem;
    background: url(../images/cta-arrow-white.svg) no-repeat center / contain;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hs-button:hover {
    background: var(--colors--white);
    color: var(--colors--black-webprofits-2);
}

/* ----------------------------------------------------------
   29. FOOTER
   ---------------------------------------------------------- */
.footer {
    background: var(--colors--black-webprofits);
    color: var(--colors--grey6);
    font-size: 1rem;
}
.footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid #666a6a50;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}
.footer-top-left p {
    font-size: 1.25rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0.8rem 0 0;
}
.footer-top-right {
    text-align: right;
}
.footer-top-right p {
    margin: 0 0 0.8rem 0;
}
.footer-top-right a {
    color: inherit;
    text-decoration: none;
    font-size: 2rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer-top-right a::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 23px;
    margin-right: 0.5rem;
    background: url('../images/icon-phone.svg') no-repeat center/contain;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer-top-right a:hover {
    color: var(--colors--white);
}
.footer-top-right a:hover::before {
    filter: invert(1);
}
.footer-btm {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.footer-btm p {
    margin: 0;
}
.footer-btm a {
    color: var(--colors--grey6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer-btm a:hover {
    color: var(--colors--white);
}

/* ----------------------------------------------------------
   30. THANKS / BOOK PAGE
   ---------------------------------------------------------- */
#thanks-page {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    background: #ffffff;
}
#thanks-page .content.main-c {
    padding: 2rem 0 5rem;
}
#thanks-page main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}
#thanks-page h1 {
    max-width: 880px;
    margin: 0 auto 1.5rem;
}
#thanks-page h3 {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--colors--black-webprofits-2);
}
#thanks-page main p {
    max-width: 720px;
    margin: 0 auto;
}
#thanks-page .calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    background: #ffffff;
    margin-top: 2rem;
}
#book-page main p {
    max-width: 720px;
    margin: 0 auto;
}
#book-page .main-c {
    padding-bottom: 0;
}

/* ----------------------------------------------------------
   31. MISC COMPONENTS
   ---------------------------------------------------------- */
.member-inner {
    position: relative;
}
.member-inner::before {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background-color: var(--colors--grey5);
    position: absolute;
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%) translateX(-50%);
}
.member-inner p:first-of-type {
    font-size: 3rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
}
.member-inner p:last-of-type {
    font-size: 0.9rem;
}
.speaker-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin: 15px 0 0;
}
.speaker-info img {
    width: 50px;
}
.speaker-info p {
    margin: 0;
}
.speaker-info span {
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

/* ----------------------------------------------------------
   32. RESPONSIVE — 1440px
   ---------------------------------------------------------- */
@media screen and (max-width: 1440px) {
    .content {
        padding: 3.75rem 0 0;
    }
    .content.header-c {
        padding: 1.5rem 1.25rem;
        max-width: 1800px;
        width: 100%;
    }
    .center-block {
        margin: 0 auto 2.5rem;
    }
    .top-red {
        margin: 0 0 1.25rem 0;
    }
    .content.faq-c {
        padding-bottom: 3.75rem;
    }
    .content.contact-c {
        padding-bottom: 3.75rem;
    }
    .partners-block {
        margin-top: 5rem;
    }
    .proof-navigation {
        margin: 3rem 0 0 0;
    }
    .brands-wr {
        gap: 1.5rem 4rem;
        margin: 3rem 0;
    }
    .faq_section_row {
        margin: 0 auto;
    }
    .who-block {
        margin: 0 auto 3rem;
    }
}

/* ----------------------------------------------------------
   33. RESPONSIVE — 1366px
   ---------------------------------------------------------- */
@media screen and (max-width: 1366px) {
    .universal-box {
        border-radius: 0.75rem;
        padding: 1.25rem;
    }
    .nav-list {
        gap: 2rem;
    }
    .main-c {
        padding-top: 2rem;
    }
    .universal-box.brand-box-btm {
        padding: 1.25rem 0.625rem;
    }
    .check-list {
        margin: 1.5rem 0;
    }
    main p {
        margin: 0 0 1.5rem 0;
    }
    .list-white {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin: 2rem 0 0 0;
    }
    #problem .problem-box {
        padding: 1.25rem;
    }
}

/* ----------------------------------------------------------
   34. RESPONSIVE — 1180px
   ---------------------------------------------------------- */
@media screen and (max-width: 1180px) {
    .prof-btm p {
        font-size: 3rem;
    }
}

/* ----------------------------------------------------------
   35. RESPONSIVE — 1024px
   ---------------------------------------------------------- */
@media screen and (max-width: 1024px) {
    .header-wr {
        grid-template-columns: 1fr auto;
    }
    .nav-list {
        display: none;
    }
    .brand-boxes-btm {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-wr {
        padding: 1.25rem;
    }
}

/* ----------------------------------------------------------
   36. RESPONSIVE — 960px
   ---------------------------------------------------------- */
@media screen and (max-width: 960px) {
    .problem-wr {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .scale-wr {
        grid-template-columns: 1fr;
    }
    .brands-wr-boxes {
        grid-template-columns: 1fr;
    }
    .about-wr {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .stacktable,
    .stacktable.small-only,
    .stacktable.large-only {
        display: none !important;
    }
    #compare .content.content-c {
        overflow: hidden;
    }
    .compare-scroll-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1.25rem;
        padding: 0 1.25rem;
    }
    .compare-scroll-wrap .large-only {
        min-width: 680px;
        border-collapse: separate;
        border-spacing: 0;
    }
    .compare-scroll-wrap .large-only tbody tr td {
        font-size: 0.8125rem;
        padding: 0.75rem 0.875rem;
        white-space: nowrap;
    }
    .compare-scroll-wrap .large-only tbody tr td:first-of-type {
        position: sticky;
        left: 0;
        background: var(--colors--white);
        z-index: 2;
        min-width: 120px;
        white-space: normal;
        font-size: 0.75rem;
    }
    .compare-scroll-wrap .large-only tbody tr:nth-of-type(odd) td:first-of-type {
        background: var(--colors--cream);
    }
    .compare-scroll-wrap .large-only tbody tr:first-of-type td:first-of-type {
        background: var(--colors--white);
        border-radius: 0;
    }
    .compare-scroll-wrap .large-only tbody tr:last-of-type td:first-of-type {
        background: var(--colors--white);
    }
    .compare-scroll-wrap .large-only tbody tr:first-of-type td {
        padding: 1rem 0.875rem;
        vertical-align: top;
    }
    .compare-scroll-wrap .large-only tbody tr:first-of-type td img {
        margin: 0 0 0.5rem 0;
        max-height: 28px;
        width: auto;
    }
    .compare-scroll-wrap .large-only tbody tr:first-of-type td:nth-of-type(2) img {
        max-height: 22px;
    }
    .compare-scroll-wrap .large-only tbody tr:first-of-type td p {
        font-size: 0.75rem;
    }
    .compare-scroll-wrap .large-only tbody tr:first-of-type td p span {
        font-size: 1.375rem;
    }
    .compare-scroll-hint {
        display: block;
    }
    .tier-body {
        max-width: 100%;
        width: auto;
        padding: 0.5rem;
    }
}

/* ----------------------------------------------------------
   37. RESPONSIVE — 932px
   ---------------------------------------------------------- */
@media screen and (max-width: 932px) {
    br {
        display: none;
    }
    #book-page main p {
        margin: 0 auto 2rem;
    }
    .nav-list {
        gap: 1.5rem;
    }
    .partners-wr {
        gap: 1rem 3rem;
    }
    .partners-block {
        margin-top: 3rem;
    }
    .footer-top {
        flex-flow: column;
        text-align: center;
        padding-bottom: 2rem;
    }
    .footer-top-right {
        text-align: center;
    }
    .cta {
        padding: 1rem;
    }
    .lock-card-inner {
        padding: 1rem;
    }
}

/* ----------------------------------------------------------
   38. RESPONSIVE — 768px
   ---------------------------------------------------------- */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .content {
        width: 90%;
        padding: 3rem 0 0;
    }
    .content.header-c {
        padding: 1rem;
    }
    h1 {
        margin: 0 auto 1.5rem;
    }
    h2 {
        margin: 0 0 1rem 0;
    }
    h5 {
        font-size: 1.375rem;
        margin: 0 0 1rem 0;
    }
    .center-block {
        margin: 0 auto 2rem;
    }
    .header-wr {
        grid-template-columns: 1fr auto;
    }
    .header-wr .cta {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
    }
    .check-list {
        gap: 1.25rem;
    }
    .check-list:not(.hero-bullets) li {
        font-size: 0.875rem;
    }
    .cta-wr {
        flex-direction: column;
        align-items: stretch;
    }
    .cta {
        white-space: normal;
    }
    .partners-wr {
        gap: 1rem 2.3rem;
    }
    .partners-block {
        margin-top: 2.5rem;
    }
    .brands-wr {
        gap: 1.25rem 2.5rem;
        margin: 2rem 0;
    }
    .brand-boxes-btm {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    .brand-box-btm p:first-of-type {
        margin: 0 0 0.25rem 0;
    }
    .universal-box.brand-box-btm p:last-child {
        font-size: 0.8125rem;
    }
    .group-wr {
        gap: 0.875rem 1.5rem;
    }
    .about-wr {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
    .built-wr {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .built-box h5 {
        margin: 0 0 1.25rem 0;
    }
    .lock-grid {
        grid-template-columns: 1fr;
    }
    .lock-left {
        padding: 2rem;
        border-right: none;
        border-bottom: 1px solid var(--colors--grey4);
    }
    .lock-right {
        padding: 2rem;
    }
    .lock-trust {
        flex-wrap: wrap;
        gap: 0.625rem;
    }
    .compare-mobile .compare-card-row {
        padding: 0.75rem 1rem;
    }
    .faq_row {
        margin: 0 0 30px 0;
    }
    .faq_answer > div {
        padding: 0 1.875rem 1.25rem 0;
    }
    .content.faq-c {
        padding-bottom: 3rem;
    }
    .content.contact-c {
        padding-bottom: 3rem;
    }
    form {
        padding: 1.25rem;
    }
    .footer-top {
        flex-flow: column;
        text-align: center;
        padding-bottom: 2rem;
    }
    .footer-top-right {
        text-align: center;
    }
    .footer-btm {
        flex-flow: column;
        text-align: center;
        gap: 0.5rem;
    }
    .content.footer-c {
        padding: 2.5rem 0;
    }
    /* Training page */
    .hero-checks,
    .lock-grid-2,
    .workflow-step,
    .module-panel {
        grid-template-columns: 1fr;
    }
    .workflow-step {
        gap: 1rem;
    }
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .module-item {
        grid-template-columns: 2.5rem 1fr;
    }
    .module-item:nth-last-child(2) {
        border-bottom: 1px solid var(--colors--grey4);
    }
    .hero-reassure {
        flex-direction: column;
        gap: 0.5rem;
    }
    .module-tabs {
        flex-direction: column;
    }
    .module-tab {
        border-radius: 0;
    }
    .module-tab:first-child {
        border-radius: 0.5rem 0.5rem 0 0;
    }
    .module-tab:last-child {
        border-radius: 0;
    }
    .module-panel-wrap {
        padding: 1.5rem;
    }
    .module-item {
        grid-template-columns: 1fr;
    }
    .dark-wr {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ----------------------------------------------------------
   39. RESPONSIVE — 479px
   ---------------------------------------------------------- */
@media screen and (max-width: 479px) {
    .content,
    .content.scale-c:first-of-type {
        width: 92%;
        padding: 3rem 0 0;
    }
    h3 {
        font-size: 1.625rem;
    }
    #thanks-page .content.main-c {
        padding: 1.25rem 0 2.5rem;
    }
    .cta-wr {
        flex-direction: column;
        align-items: stretch;
    }
    .cta {
        font-size: 0.9375rem;
        padding: 1rem 1.5rem;
    }
    .cta::after {
        display: none;
    }
    .top-red {
        font-size: 0.875rem;
        letter-spacing: 2px;
        margin: 0 0 0.9375rem 0;
    }
    .main-c {
        padding-top: 1rem;
    }
    .content.main-c {
        padding-top: 1rem;
        padding-bottom: 1.875rem;
    }
    .hero-bullets {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .header-wr {
        grid-template-columns: auto;
        justify-content: center;
    }
    .header-wr .cta {
        display: none;
    }
    .pill.header-pill {
        padding: 0.75rem 1rem;
        flex-direction: row;
    }
    .pill.header-pill p {
        font-size: 0.9rem;
    }
    .pill.header-pill img {
        max-width: 50px;
    }
    .brand-boxes-btm {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
    .universal-box.brand-box-btm {
        padding: 1rem 0.625rem;
    }
    .universal-box.brand-box-btm p:last-child {
        font-size: 0.75rem;
    }
    .brands-wr {
        gap: 1rem 1.5rem;
    }
    .brands-wr img {
        max-height: 25px;
    }
    .pill {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }
    .problem-wr {
        margin: 0 0 1.25rem 0;
    }
    .section-problem .pill {
        flex-direction: row;
        text-align: left;
    }
    .pill.member-box {
        gap: 1rem;
    }
    .pill.brands-box h3 {
        padding: 0 0 0.8rem 0;
    }
    .pill.brands-box h3::after {
        width: 100%;
        height: 1px;
        right: 0;
        top: unset;
        transform: none;
        bottom: 0;
    }
    .edge-box div {
        padding: 0 0 1.25rem 0;
    }
    .group-wr {
        gap: 0.875rem 1.25rem;
    }
    .lock-top {
        font-size: 0.6875rem;
        letter-spacing: 1px;
        padding: 0.75rem;
    }
    .lock-left {
        padding: 1.5rem 1rem;
    }
    .lock-left .cta {
        padding: 1rem 0.75rem;
    }
    .lock-right {
        padding: 1.5rem;
    }
    .lock-trust {
        flex-direction: column;
        gap: 0.5rem;
    }
    .lock-price-label,
    .lock-price-value {
        padding: 0.875rem 0.5rem;
    }
    .compare-mobile .compare-card-row {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.625rem 1rem;
    }
    .compare-mobile .compare-card-label {
        width: 100%;
        font-size: 0.75rem;
    }
    .compare-mobile .compare-card-row p:last-child {
        text-align: left;
        font-size: 0.875rem;
    }
    .compare-mobile .compare-card-header {
        padding: 1.25rem;
    }
    .list-red-check {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9375rem;
    }
    .member-inner::before {
        width: 100%;
        height: 1px;
        top: 0;
        left: 0;
        transform: none;
    }
    .proof-navigation {
        justify-content: space-between;
        gap: 2rem;
        margin: 2rem 0 0 0;
    }
    .proof-top {
        margin-bottom: 1.25rem;
    }
    .swiper-slide {
        gap: 2rem;
    }
    .check-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .faq_question {
        padding: 0 1.875rem 1.25rem 0;
    }
    .faq_answer > div {
        padding: 0 1.25rem 1.25rem 0;
    }
    .hero-center {
        padding: 20px;
    }
    form {
        padding: 0.9375rem;
    }
    .cta.cta-submit {
        font-size: 1.0625rem;
        padding: 1rem 0.625rem;
    }
    .name-fields {
        flex-direction: column;
        gap: 0;
    }
    .input-wr {
        flex-direction: column;
        gap: 0;
    }
    .partners-wr {
        gap: 0.75rem 1.5rem;
    }
    .footer-top-right a {
        font-size: 1.5rem;
    }
    .emoji-hand::after {
        margin-right: 10px;
    }
    .mid-cta-simple {
        padding-top: 2rem;
    }
    /* Training page */
    .problem-wr,
    .brands-wr-boxes,
    .stats-strip,
    .module-panel,
    .shift-grid {
        grid-template-columns: 1fr !important;
    }
}
