* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #efe8dc;
    color: #111111;
}



a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

/* HEADER */

.site-header {
    top: 0;
    z-index: 1000;
    padding: 18px;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 110px;
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    align-items: start;
    gap: 18px;
    padding: 18px 20px;
    background: #111111;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #ff5a36;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}

.brand-main {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -0.09em;
    color: #f3efe6;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding-top: 8px;
}

.nav a {
    position: relative;
    display: inline-block;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f3efe6;
    border: 1px solid transparent;
    transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.nav a:hover {
    background: #f3efe6;
    color: #111111;
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 #8b7cff;
}

.header-actions {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}



/* MOBILE MENU */

.menu-toggle {
    display: none;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 2px solid #111111;
    background: #8b7cff;
    position: relative;
    cursor: pointer;
    box-shadow: 4px 4px 0 #f3efe6;
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 3px;
    background: #111111;
    transform: translateX(-50%);
    transition: top 0.2s ease, transform 0.2s ease;
}

.menu-toggle span:first-child {
    top: 22px;
}

.menu-toggle span:last-child {
    top: 32px;
}

.menu-toggle.is-active span:first-child {
    top: 27px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
    top: 27px;
    transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-panel {
    position: absolute;
    inset: 18px;
    background: #f3efe6;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #111111;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 26px;
}

.mobile-menu-kicker {
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.mobile-menu-index {
    font-size: 1.1rem;
    font-weight: 900;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.mobile-nav a {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 2px solid #111111;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    transition: transform 0.16s ease;
}

.mobile-nav a:hover {
    transform: translateX(8px);
}

.mobile-nav a span {
    min-width: 30px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mobile-cta {
    width: 100%;
    margin-top: auto;
}

/* GLOBAL PRIMITIVES */

.section {
    padding: 48px 18px 72px;
}

.section-hero {
    padding-top: 36px;
    padding-bottom: 60px;
}

.shell {
    max-width: 1400px;
    margin: 0 auto;
}

.split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.split-hero {
    grid-template-columns: 1.3fr 0.8fr;
    align-items: stretch;
}

.panel-dark {
    padding: 26px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #ff5a36;
}

.panel-dark-large {
    padding: 28px;
}

.sticky-panel {
    position: sticky;
    top: 24px;
}

.kicker {
    margin: 0 0 18px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.72;
}

.kicker-large {
    font-size: 0.78rem;
}

.heading-hero,
.heading-section,
.heading-funnel {
    margin: 0;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.heading-hero {
    font-size: clamp(3rem, 8vw, 7rem);
}

.heading-section {
    font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.heading-funnel {
    max-width: 860px;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
}

.copy-light {
    margin: 22px 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(245, 239, 228, 0.78);
}

.copy-hero {
    max-width: 720px;
    margin-top: 26px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(245, 239, 228, 0.8);
}

.copy-narrow {
    max-width: 460px;
}

.copy-wide {
    max-width: 720px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.card-grid-four {
    grid-template-columns: repeat(4, 1fr);
}

.card-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.step-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 18px;
}

.card {
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.card-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-step {
    min-height: 160px;
    padding: 22px;
}

.card-service {
    min-height: 330px;
    padding: 24px;
}

.card-process {
    min-height: 190px;
    padding: 22px;
}

.callout {
    margin-top: 32px;
}

.card-feature {
    min-height: 300px;
    padding: 24px;
}

.card-metric {
    min-height: 260px;
    padding: 22px;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.card-metric:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #111111;
}

.card-cream {
    background: #f5efe4;
    color: #111111;
}

.card-yellow {
    background: #ffe600;
    color: #111111;
}

.card-violet {
    background: #8b7cff;
    color: #111111;
}

.card-orange {
    background: #ff5a36;
    color: #111111;
}

.card-dark {
    background: #111111;
    color: #f5efe4;
}

.label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.card-title {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.card-title-large {
    font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.card-feature .card-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    letter-spacing: -0.07em;
}

.metric-value {
    display: block;
    margin: 10px 0 0;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.88;
    letter-spacing: -0.09em;
    text-transform: uppercase;
}

.card-copy {
    margin: 22px 0 0;
    max-width: 320px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.78);
}

.card-dark .card-copy {
    color: rgba(245, 239, 228, 0.78);
}

.content-panel {
    padding: 28px;
}

.content-panel h2 {
    margin: 0 0 14px;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.content-panel h2:not(:first-child) {
    margin-top: 34px;
}

.content-panel p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.82);
}

.check-list {
    margin: 0;
    padding-left: 18px;
    font-weight: 800;
    line-height: 1.55;
}

.fullwidth {
    width: 100%;
}

.span-all {
    grid-column: 1 / -1;
}

.centered-link {
    display: block;
    text-align: center;
}

.call-thanks {
    max-width: 860px;
    min-height: 68vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #ff5a36;
}

.radar-analysis {
    display: grid;
    gap: 22px;
}

.radar-analysis-main {
    max-width: none;
}

.radar-score-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.radar-next-actions .check-list {
    margin-top: 22px;
}

.cal-section-heading {
    margin-bottom: 22px;
}

.cal-section-heading .heading-section {
    max-width: 980px;
}

.cal-booking {
    padding: 22px;
}

.cal-booking-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.cal-booking-progress span {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: transparent;
    border: 2px solid #111111;
    color: #111111;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cal-booking-progress span.is-active {
    background: #ffe600;
}

.cal-booking-steps {
    display: grid;
}

.cal-booking-step {
    display: none;
}

.cal-booking-step.is-active {
    display: grid;
}

.cal-booking-form {
    gap: 22px;
}

.cal-booking-panel {
    display: grid;
    align-content: start;
    gap: 16px;
}

.cal-booking-step:not(.is-active) {
    display: none;
}

.cal-booking-panel h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.cal-slot-status,
.cal-booking-message {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    color: rgba(17, 17, 17, 0.74);
}

.cal-days,
.cal-slots {
    display: grid;
    gap: 10px;
}

.cal-days {
    grid-template-columns: repeat(4, 1fr);
}

.cal-slots {
    grid-template-columns: repeat(3, 1fr);
}

.cal-day,
.cal-slot {
    min-height: 58px;
    padding: 12px;
    background: transparent;
    border: 2px solid #111111;
    color: #111111;
    box-shadow: 4px 4px 0 #111111;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.cal-day:hover,
.cal-slot:hover,
.cal-day.is-active,
.cal-slot.is-active {
    background: #ffe600;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #111111;
}

.cal-slot {
    width: 100%;
}

.cal-back-button {
    width: fit-content;
    background: transparent;
    color: #111111;
    border-color: #111111;
}

.cal-back-button:hover {
    background: #111111;
    color: #f5efe4;
    box-shadow: 8px 8px 0 #8b7cff;
}

.cal-booking-form label {
    display: grid;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.cal-booking-form input,
.cal-booking-form textarea {
    width: 100%;
    border: 2px solid #111111;
    background: #efe8dc;
    color: #111111;
    padding: 15px 16px;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 4px 4px 0 #111111;
}

.cal-booking-form textarea {
    resize: vertical;
}

.cal-booking-form.is-submitting label,
.cal-booking-form.is-submitting .cal-back-button,
.cal-booking-form.is-submitting .button-submit {
    opacity: 0.42;
    pointer-events: none;
}

.cal-booking-loader {
    display: none;
    grid-template-columns: repeat(4, 38px) 1fr;
    gap: 10px;
    align-items: center;
    padding: 16px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 6px 6px 0 #ff5a36;
}

.cal-booking-form.is-submitting .cal-booking-loader {
    display: grid;
}

.cal-booking-loader span {
    display: block;
    width: 38px;
    height: 38px;
    background: #ffe600;
    border: 2px solid #f5efe4;
    animation: booking-loader 0.9s infinite ease-in-out;
}

.cal-booking-loader span:nth-child(2) {
    background: #8b7cff;
    animation-delay: 0.08s;
}

.cal-booking-loader span:nth-child(3) {
    background: #ff5a36;
    animation-delay: 0.16s;
}

.cal-booking-loader span:nth-child(4) {
    background: #f5efe4;
    animation-delay: 0.24s;
}

.cal-booking-loader strong {
    font-size: 0.82rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@keyframes booking-loader {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    45% {
        transform: translateY(-8px) rotate(8deg);
    }
}

/* SHARED CTA */

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 22px;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 2px solid #111111;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button-secondary {
    background: transparent;
    color: #f5efe4;
    border-color: #f5efe4;
}

.button-secondary:hover {
    background: #f5efe4;
    color: #111111;
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #8b7cff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border: 2px solid #111111;
    background: #f5efe4;
    box-shadow: 8px 8px 0 #111111;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.faq-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0 #8b7cff;
}

.faq-item.active {
    background: #ff5a36;
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    font-size: clamp(1.15rem, 2.6vw, 1.75rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.faq-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #111111;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq-icon::before {
    width: 20px;
    height: 3px;
}

.faq-icon::after {
    width: 3px;
    height: 20px;
}

.faq-item.active .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0.2);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.22s ease;
}

.faq-answer p {
    overflow: hidden;
    margin: 0;
    padding: 0 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.82);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 24px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.proof-visual-top span {
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.proof-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 620px;
    background: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.proof-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #8b7cff;
}

.proof-visual {
    min-height: 260px;
    padding: 18px;
    display: grid;
    gap: 14px;
    background: #111111;
    color: #f5efe4;
    border-bottom: 2px solid #111111;
}

.proof-visual img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    border: 2px solid #111111;
}

.proof-visual-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    background: #f5efe4;
    color: #111111;
    border: 2px solid #111111;
    box-shadow: 5px 5px 0 #ff5a36;
}

.proof-visual-top strong {
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    line-height: 0.86;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.proof-visual-bars {
    display: grid;
    gap: 10px;
}

.proof-visual-bars i {
    display: block;
    height: 24px;
    background: #8b7cff;
    border: 2px solid #111111;
}

.proof-visual-bars i:nth-child(2) {
    width: 72%;
    background: #ffe600;
}

.proof-visual-bars i:nth-child(3) {
    width: 88%;
    background: #ff5a36;
}

.proof-visual-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.proof-visual-cards b {
    min-height: 82px;
    padding: 14px;
    display: flex;
    align-items: flex-end;
    background: #f5efe4;
    color: #111111;
    border: 2px solid #111111;
    font-size: clamp(1.4rem, 3vw, 2.6rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.proof-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.proof-content h2 {
    margin: 0;
    margin-top: 20px;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.proof-content p {
    margin: 18px 0 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.78);
}

.proof-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
}

.proof-metrics div {
    padding: 12px;
    background: #efe8dc;
    border: 2px solid #111111;
}

.proof-metrics strong,
.proof-metrics span {
    display: block;
}

.proof-metrics strong {
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.proof-metrics span {
    margin-top: 8px;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-direct {
    margin-top: 34px;
    padding: 20px;
    background: #ffe600;
    color: #111111;
    border: 2px solid #111111;
    box-shadow: 6px 6px 0 #f5efe4;
}

.contact-direct .label {
    margin-bottom: 8px;
}

.contact-direct a {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 24px;
    padding: 0 16px;
    border: 2px solid currentColor;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.link-button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0 currentColor;
}

/* FUNNEL FORMS */

.form-panel {
    padding: 26px;
    background: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #111111;
}

.form-stack {
    display: grid;
    gap: 18px;
}

.form-error {
    margin-bottom: 20px;
    padding: 18px;
    background: #ff5a36;
    border: 2px solid #111111;
    box-shadow: 5px 5px 0 #111111;
}

.form-error strong,
.form-error p {
    margin: 0;
}

.form-error strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.form-error p {
    margin-top: 8px;
    font-weight: 700;
}

.form-success {
    background: #8b7cff;
}

.progress {
    margin-bottom: 24px;
}

.progress span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.progress div {
    height: 18px;
    background: #efe8dc;
    border: 2px solid #111111;
    box-shadow: 4px 4px 0 #111111;
}

.progress i {
    display: block;
    width: 12.5%;
    height: 100%;
    background: #8b7cff;
    transition: width 0.18s ease;
}

.step {
    display: none;
}

.step.is-active {
    display: block;
}

.step-index {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.step h2 {
    margin: 0 0 24px;
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-panel label,
.wide-field {
    display: grid;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
    width: 100%;
    border: 2px solid #111111;
    background: #efe8dc;
    color: #111111;
    padding: 15px 16px;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 4px 4px 0 #111111;
}

.form-panel textarea {
    resize: vertical;
}

.wide-field {
    margin-top: 18px;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.check-grid-stack {
    grid-template-columns: 1fr;
    margin-top: 18px;
}

.check-grid label,
.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #efe8dc;
    border: 2px solid #111111;
    box-shadow: 4px 4px 0 #111111;
    cursor: pointer;
}

.check-grid-stack label {
    background: transparent;
}

.check-grid label:has(input:checked) {
    background: #ffe600;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #111111;
}

.check-grid input,
.privacy-check input {
    width: auto;
    margin-top: 3px;
    box-shadow: none;
    accent-color: #8b7cff;
}

.loading-panel {
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #ff5a36;
}

.loading-panel h2 {
    color: #f5efe4;
}

.loading-panel p {
    margin: 0;
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(245, 239, 228, 0.78);
}

.loading-bars {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.loading-bars span {
    display: block;
    height: 24px;
    width: 100%;
    background: #8b7cff;
    border: 2px solid #111111;
    animation: radar-scan 1.1s ease-in-out infinite;
}

.loading-bars span:nth-child(2) {
    width: 76%;
    background: #ffe600;
    animation-delay: 0.12s;
}

.loading-bars span:nth-child(3) {
    width: 88%;
    background: #ff5a36;
    animation-delay: 0.24s;
}

@keyframes radar-scan {
    0%,
    100% {
        transform: scaleX(0.72);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
}

.button-prev {
    background: #f5efe4;
    box-shadow: 5px 5px 0 #111111;
}

.button-submit,
.button-next {
    margin-left: auto;
}

/* FOOTER */

.site-footer {
    padding: 48px 18px 28px;
}

.footer-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.footer-brand,
.footer-panel,
.footer-bottom {
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.footer-brand {
    padding: 26px;
    background: #111111;
    color: #f5efe4;
    box-shadow: 10px 10px 0 #ff5a36;
}

.footer-kicker,
.footer-label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.footer-kicker {
    color: rgba(245, 239, 228, 0.72);
}

.footer-title {
    display: block;
    margin-top: 14px;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.86;
    font-weight: 900;
    letter-spacing: -0.09em;
}

.footer-brand p,
.footer-contact p {
    margin: 22px 0 0;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.65;
}

.footer-brand p {
    color: rgba(245, 239, 228, 0.78);
}

.footer-panel {
    padding: 24px;
    background: #f5efe4;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
}

.footer-nav a {
    padding: 14px 0;
    border-bottom: 2px solid #111111;
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    transition: transform 0.16s ease, color 0.16s ease;
}

.footer-nav a:hover {
    color: #ff5a36;
    transform: translateX(8px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    background: #8b7cff;
}

.footer-contact p {
    color: rgba(17, 17, 17, 0.82);
}

.footer-cta {
    width: 100%;
    margin-top: auto;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    background: #ffe600;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    background: #ffe600;
    color: #111111;
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #111111;
    box-shadow: 5px 5px 0 #f3efe6;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #ff5a36;
    background: #fff06a;
}

/* RESPONSIVE */

@media (min-width: 1020px) {
    .mobile-only {
        display: none;
    }
}

@media (max-width: 1020px) {

    .desktop-only {
        display: none;
    }

    .navbar {
        grid-template-columns: 1fr auto;
        align-items: center;
        min-height: 84px;
        box-shadow: 6px 6px 0 #ff5a36;
    }

    .nav,
    .nav-cta {
        display: none;
    }

    .brand-main {
        font-size: 2.4rem;
    }

    .menu-toggle {
        display: inline-block;
    }
}

@media (max-width: 980px) {

    .mobile-fullwidth {
        width: 100%;
        box-sizing: border-box;
    }

    .split,
    .split-hero {
        grid-template-columns: 1fr;
    }

    .panel-dark {
        box-shadow: 8px 8px 0 #ff5a36;
    }

    .heading-hero {
        font-size: clamp(2.4rem, 7vw, 4.4rem);
    }

    .copy-hero {
        font-size: 1rem;
    }

    .step-grid {
        grid-template-rows: auto;
    }

    .card-step {
        min-height: 140px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-grid-three,
    .radar-score-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .card-metric {
        min-height: 220px;
    }

    .heading-section {
        font-size: clamp(2.2rem, 12vw, 4rem);
    }

    .sticky-panel {
        position: static;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer p {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-item.active .faq-answer p {
        padding-bottom: 20px;
    }

    .field-grid,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .proof-metrics,
    .proof-visual-cards {
        grid-template-columns: 1fr;
    }

    .form-panel {
        box-shadow: 8px 8px 0 #111111;
    }

    .form-actions {
        flex-direction: column;
    }

    .cal-booking-grid,
    .cal-booking-progress,
    .cal-days,
    .cal-slots {
        grid-template-columns: 1fr;
    }

    .cal-booking-loader {
        grid-template-columns: repeat(4, 1fr);
    }

    .cal-booking-loader strong {
        grid-column: 1 / -1;
    }

    .button-prev,
    .button-next,
    .button-submit {
        width: 100%;
        margin-left: 0;
    }

    .footer-shell {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-panel,
    .footer-bottom {
        box-shadow: 8px 8px 0 #111111;
    }

    .footer-brand {
        box-shadow: 8px 8px 0 #ff5a36;
    }

    .footer-bottom {
        flex-direction: column;
    }

}
