* {
    box-sizing: border-box;
}

:root {
    --tm-blue: #0d47a1;
    --tm-blue-dark: #0a2540;
    --tm-ink: #122744;
    --tm-body: #465468;
    --tm-mute: #7a8aa3;
    --tm-border: #e3e9f3;
    --tm-tint: #f5f8fd;
    --tm-orange: #ff6f00;
    --tm-teal: #00b894;
    --tm-purple: #7b1fa2;
    --tm-magenta: #e91e63;
    --tm-white: #ffffff;
    --tm-shadow: 0 18px 46px rgba(18, 39, 68, 0.08);
}

html {
    scroll-behavior: smooth;
}

body.tm-page {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: var(--tm-white);
    color: var(--tm-ink);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

.tm-home {
    background:
        radial-gradient(circle at 24% 5%, rgba(255, 171, 84, 0.22), transparent 24%),
        linear-gradient(180deg, #f9f3ea 0%, #ffffff 20%, var(--tm-tint) 64%, #f4f7fc 100%);
}

.tm-container {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 24px;
}

.tm-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--tm-border);
}

.tm-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
}

.tm-logo img {
    height: 28px;
    width: auto;
}

.tm-nav,
.tm-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tm-nav a,
.tm-login {
    color: var(--tm-ink);
    font-size: 12px;
    font-weight: 700;
}

.tm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tm-button:hover {
    transform: translateY(-1px);
}

.tm-button--primary {
    background: var(--tm-orange);
    color: var(--tm-blue-dark);
    box-shadow: 0 14px 28px rgba(255, 111, 0, 0.26);
}

.tm-button--secondary {
    background: var(--tm-white);
    border-color: var(--tm-border);
    color: var(--tm-blue);
    box-shadow: 0 8px 18px rgba(18, 39, 68, 0.04);
}

.tm-button--light {
    min-width: 230px;
    background: #fff2df;
    color: var(--tm-blue-dark);
}

.tm-button--white {
    background: var(--tm-white);
    color: var(--tm-blue);
}

.tm-button--blue {
    background: var(--tm-blue);
    color: var(--tm-white);
}

.tm-hero {
    padding: 36px 0 46px;
}

.tm-hero--contact .tm-hero__content h1 {
    max-width: 8ch;
}

.tm-hero--about .tm-hero__content h1 {
    max-width: 10ch;
}

.tm-hero--register {
    padding: 8px 0 2px;
}

.tm-hero--register .tm-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 18px;
    align-items: stretch;
}

.tm-hero--register .tm-hero__content h1 {
    max-width: 7ch;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 0.98;
}

.tm-hero--register .tm-hero__content p {
    max-width: 50ch;
    margin-top: 14px;
}

.tm-hero--register .tm-hero__content {
    align-self: center;
}

.tm-hero--register .tm-actions {
    margin-top: 18px;
}

.tm-hero__grid,
.tm-story,
.tm-travellers,
.tm-split-card,
.tm-cta,
.tm-footer__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    align-items: center;
}

.tm-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 122, 26, 0.1);
    color: #c07b45;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tm-badge--dark {
    background: rgba(255, 255, 255, 0.12);
    color: #c7d8f4;
}

.tm-hero__content h1,
.tm-copy-block h2,
.tm-heading h2,
.tm-split-card h2,
.tm-cta h2 {
    margin: 14px 0 0;
    color: var(--tm-ink);
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.tm-split-card h2,
.tm-copy-block h2,
.tm-heading h2,
.tm-cta h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.02;
}

.tm-hero__content p,
.tm-copy-block p,
.tm-split-card p,
.tm-service-card p,
.tm-footer p {
    margin: 18px 0 0;
    color: var(--tm-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.tm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.tm-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.tm-stat,
.tm-split-card,
.tm-frame,
.tm-service-card,
.tm-consultant-card {
    border: 1px solid var(--tm-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--tm-shadow);
}

.tm-stat {
    padding: 16px 14px;
}

.tm-stat strong {
    display: block;
    color: var(--tm-ink);
    font-size: 14px;
    font-weight: 800;
}

.tm-stat span {
    display: block;
    margin-top: 5px;
    color: var(--tm-mute);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.tm-frame {
    padding: 10px;
    overflow: hidden;
}

.tm-frame img {
    width: 100%;
    height: 100%;
    min-height: 316px;
    object-fit: cover;
    border-radius: 16px;
}

.tm-frame--hero img {
    min-height: 388px;
}

.tm-hero--register .tm-frame--hero img {
    min-height: 180px;
}

.tm-hero--register .tm-frame--hero {
    padding: 8px;
    border-radius: 24px;
}

.tm-section {
    padding: 0 0 58px;
}

.tm-section--compact {
    padding-bottom: 54px;
}

.tm-section--surface {
    background: linear-gradient(180deg, rgba(235, 241, 251, 0.85) 0%, rgba(245, 248, 253, 0.98) 100%);
    padding-top: 24px;
    padding-bottom: 56px;
}

.tm-section--register-intro {
    padding-top: 8px;
    padding-bottom: 14px;
}

.tm-section--register-form {
    padding-top: 0;
    margin-top: -54px;
    position: relative;
    z-index: 2;
}

.tm-section--register-intro .tm-feature-grid {
    gap: 10px;
}

.tm-section--register-intro .tm-feature-card {
    padding: 18px 16px;
    border-radius: 18px;
}

.tm-section--cta {
    padding-bottom: 28px;
}

.tm-split-card {
    padding: 18px 22px;
}

.tm-selector,
.tm-feature-grid,
.tm-steps,
.tm-tile-grid,
.tm-dual-cards,
.tm-story-placeholders,
.tm-impact-grid {
    display: grid;
    gap: 14px;
}

.tm-selector,
.tm-dual-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tm-feature-grid,
.tm-steps,
.tm-impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tm-tile-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tm-story-placeholders {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tm-selector__card,
.tm-feature-card,
.tm-step-card,
.tm-tile,
.tm-workspace-card,
.tm-media-card,
.tm-story-placeholder,
.tm-impact-card,
.tm-faq {
    border: 1px solid var(--tm-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--tm-shadow);
}

.tm-selector__card {
    padding: 28px 30px;
}

.tm-selector__card--primary {
    background: linear-gradient(135deg, var(--tm-blue-dark), var(--tm-blue));
}

.tm-selector__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #8fd8c7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tm-selector__card h2 {
    margin: 0;
    color: var(--tm-ink);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.tm-selector__card p {
    margin: 12px 0 22px;
    color: var(--tm-body);
    font-size: 14px;
    line-height: 1.6;
}

.tm-selector__card--primary h2,
.tm-selector__card--primary p {
    color: var(--tm-white);
}

.tm-selector__card--primary p {
    color: #cfe0f6;
}

.tm-split-card h2 {
    max-width: 11ch;
}

.tm-split-card p {
    max-width: 44ch;
}

.tm-heading {
    max-width: 700px;
    margin-bottom: 22px;
}

.tm-services,
.tm-consultants {
    display: grid;
    gap: 14px;
}

.tm-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tm-consultants {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tm-service-card {
    overflow: hidden;
}

.tm-feature-card,
.tm-step-card,
.tm-impact-card {
    padding: 22px;
}

.tm-feature-card h3,
.tm-step-card h3,
.tm-impact-card strong {
    margin: 0;
    color: var(--tm-ink);
    font-size: 18px;
    font-weight: 700;
}

.tm-feature-card p,
.tm-step-card p {
    margin-top: 10px;
    color: var(--tm-body);
    font-size: 14px;
    line-height: 1.6;
}

.tm-step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(13, 71, 161, 0.1);
    color: var(--tm-blue);
    font-size: 15px;
    font-weight: 800;
}

.tm-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 16px;
    color: var(--tm-ink);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.tm-service-card img {
    width: 100%;
    height: 178px;
    object-fit: cover;
}

.tm-service-card__body,
.tm-consultant-card__body {
    padding: 14px 14px 16px;
}

.tm-service-card h3,
.tm-consultant-card h3 {
    margin: 0;
    color: var(--tm-ink);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}

.tm-service-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
}

.tm-copy-block p {
    max-width: 58ch;
}

.tm-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.tm-list li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 17px;
    color: var(--tm-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.tm-list li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tm-teal);
}

.tm-workspace-card {
    overflow: hidden;
}

.tm-workspace-card__top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--tm-blue-dark);
}

.tm-workspace-card__top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--tm-orange);
}

.tm-workspace-card__top span:nth-child(2) {
    background: #4fd1b0;
}

.tm-workspace-card__top span:nth-child(3) {
    background: #8fb0e0;
}

.tm-workspace-card__top strong {
    margin-left: 6px;
    color: #8fb0e0;
    font-size: 11px;
    font-weight: 700;
}

.tm-workspace-card__body {
    padding: 18px;
}

.tm-workspace-card__body h3 {
    margin: 0 0 14px;
    color: var(--tm-ink);
    font-size: 15px;
    font-weight: 800;
}

.tm-workspace-card__item {
    margin-bottom: 9px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--tm-tint);
    color: var(--tm-ink);
    font-size: 13px;
    font-weight: 600;
}

.tm-workspace-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--tm-border);
}

.tm-workspace-card__footer span {
    color: var(--tm-body);
    font-size: 13px;
    font-weight: 700;
}

.tm-workspace-card__footer strong {
    color: var(--tm-ink);
    font-size: 17px;
    font-weight: 800;
}

.tm-workspace-card__body button {
    width: 100%;
    margin-top: 14px;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: var(--tm-blue);
    color: var(--tm-white);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.tm-media-card {
    overflow: hidden;
}

.tm-media-card img {
    width: 100%;
    height: 224px;
    object-fit: cover;
}

.tm-media-card__body {
    padding: 22px 24px;
}

.tm-media-card__body h3 {
    margin: 10px 0 0;
    color: var(--tm-ink);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
}

.tm-media-card__body p {
    margin: 10px 0 16px;
    color: var(--tm-body);
    font-size: 14px;
    line-height: 1.6;
}

.tm-consultant-card {
    overflow: hidden;
}

.tm-consultant-card__avatar {
    padding: 14px 14px 0;
}

.tm-avatar-placeholder {
    height: 132px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 36%, #bbbbc2 0 21px, transparent 22px),
        linear-gradient(180deg, transparent 0 52px, #bbbbc2 53px 96px, transparent 97px),
        linear-gradient(180deg, #f1f3f7 0%, #eceff4 100%);
    border: 1px solid var(--tm-border);
}

.tm-consultant-card__body strong {
    display: block;
    margin-top: 10px;
    color: var(--tm-ink);
    font-size: 13px;
    font-weight: 800;
}

.tm-consultant-card__body small {
    display: block;
    margin-top: 4px;
    color: var(--tm-mute);
    font-size: 12px;
    font-weight: 600;
}

.tm-story-placeholder {
    padding: 22px;
    border-style: dashed;
    box-shadow: none;
}

.tm-story-placeholder__top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tm-story-placeholder__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--tm-tint);
}

.tm-story-placeholder__top strong,
.tm-story-placeholder__top span {
    display: block;
}

.tm-story-placeholder__top strong {
    color: var(--tm-mute);
    font-size: 14px;
    font-weight: 700;
}

.tm-story-placeholder__top span,
.tm-story-placeholder p {
    color: var(--tm-mute);
    font-size: 12px;
    line-height: 1.6;
}

.tm-story-placeholder p {
    margin-top: 14px;
}

.tm-impact-card {
    text-align: center;
    border-style: dashed;
    box-shadow: none;
}

.tm-impact-card strong {
    display: block;
    color: var(--tm-mute);
    font-size: 32px;
}

.tm-impact-card span {
    display: block;
    margin-top: 6px;
    color: var(--tm-mute);
    font-size: 13px;
    font-weight: 600;
}

.tm-faqs {
    display: grid;
    gap: 12px;
}

.tm-faq {
    padding: 0 18px;
}

.tm-faq summary {
    padding: 18px 0;
    color: var(--tm-ink);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.tm-faq summary::-webkit-details-marker {
    display: none;
}

.tm-faq p {
    margin: 0 0 18px;
    color: var(--tm-body);
    font-size: 14px;
    line-height: 1.6;
}

.tm-static-content,
.tm-contact-card,
.tm-contact-aside-card,
.tm-copy-panel,
.tm-copy-card,
.tm-vision-card {
    border: 1px solid var(--tm-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--tm-shadow);
}

.tm-static-content {
    padding: 24px;
    color: var(--tm-body);
    font-size: 14px;
    line-height: 1.7;
}

.tm-copy-panel {
    padding: 28px 32px;
}

.tm-copy-panel p {
    margin: 0;
    color: var(--tm-ink);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    line-height: 1.7;
}

.tm-copy-card,
.tm-vision-card {
    padding: 28px 30px;
}

.tm-copy-card h2,
.tm-vision-card h2 {
    margin: 14px 0 0;
    color: var(--tm-ink);
    font-size: clamp(24px, 2.3vw, 32px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.tm-copy-card p {
    margin: 14px 0 0;
    color: var(--tm-body);
    font-size: 14px;
    line-height: 1.7;
}

.tm-vision-card--dark {
    background: linear-gradient(135deg, var(--tm-blue-dark), var(--tm-blue));
}

.tm-vision-card--dark h2 {
    color: var(--tm-white);
}

.tm-vision-card--light {
    background: #e8f7f0;
    border-color: #bfe3d6;
}

.tm-static-content h1,
.tm-static-content h2,
.tm-static-content h3 {
    color: var(--tm-ink);
}

.tm-static-content--policy {
    max-width: 980px;
}

.tm-static-content--policy h1,
.tm-static-content--policy h2,
.tm-static-content--policy h3,
.tm-static-content--policy h4 {
    margin-top: 1.4em;
    margin-bottom: 0.55em;
}

.tm-static-content--policy ul,
.tm-static-content--policy ol {
    padding-left: 1.35rem;
}

.tm-static-content--policy p,
.tm-static-content--policy li {
    color: var(--tm-body);
    font-size: 14px;
    line-height: 1.75;
}

.tm-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 18px;
    align-items: start;
}

.tm-register-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 20px;
    align-items: start;
}

.tm-contact-card {
    padding: 28px;
}

.tm-register-card {
    padding: 28px;
    border: 1px solid var(--tm-border);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 253, 0.96) 100%);
    box-shadow: 0 24px 52px rgba(17, 40, 75, 0.08);
}

.tm-contact-card h2,
.tm-contact-aside-card h3,
.tm-register-card h2 {
    margin: 14px 0 0;
    color: var(--tm-ink);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.tm-contact-aside-card h3 {
    font-size: 22px;
}

.tm-alert {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.tm-alert--success {
    background: #e7f7f1;
    color: #0a6e57;
    border: 1px solid #bfe3d6;
}

.tm-form {
    margin-top: 22px;
}

.tm-form--register {
    display: grid;
    gap: 22px;
}

.tm-form-section {
    display: grid;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(227, 233, 243, 0.9);
}

.tm-form-section:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.tm-form-section__head {
    display: grid;
    gap: 8px;
}

.tm-form-section__head h3 {
    margin: 0;
    color: var(--tm-ink);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tm-form-section__head p {
    margin: 0;
    max-width: 680px;
    color: var(--tm-body);
    font-size: 14px;
    line-height: 1.7;
}

.tm-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tm-field {
    display: grid;
    gap: 8px;
}

.tm-field--full,
.tm-field--split {
    grid-column: 1 / -1;
}

.tm-help {
    color: var(--tm-mute);
    font-size: 12px;
    line-height: 1.6;
}

.tm-help--ghost {
    visibility: hidden;
}

.tm-field label {
    color: var(--tm-ink);
    font-size: 13px;
    font-weight: 700;
}

.tm-field label span {
    color: var(--tm-orange);
}

.tm-field input,
.tm-field select,
.tm-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid var(--tm-border);
    border-radius: 12px;
    background: var(--tm-white);
    color: var(--tm-body);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.tm-field textarea {
    min-height: 150px;
    padding: 14px;
    resize: vertical;
}

.tm-field select[multiple] {
    min-height: 188px;
    padding: 10px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 253, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tm-field select[multiple] option {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--tm-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.tm-field select[multiple] option + option {
    margin-top: 4px;
}

.tm-field select[multiple] option:checked {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.16) 0%, rgba(13, 71, 161, 0.16) 100%);
    color: var(--tm-blue-dark);
}

.tm-password-wrap {
    position: relative;
}

.tm-password-wrap input {
    padding-right: 82px;
}

.tm-password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 10px;
    background: rgba(13, 71, 161, 0.08);
    color: var(--tm-blue);
    padding: 9px 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.tm-phone-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
}

.tm-error {
    margin: 0;
    color: #a11b1b;
    font-size: 12px;
    font-weight: 600;
}

.tm-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.tm-form__footer p {
    margin: 0;
    color: var(--tm-body);
    font-size: 12px;
    line-height: 1.6;
}

.tm-form__footer a {
    color: var(--tm-blue);
    font-weight: 700;
}

.tm-documents {
    display: grid;
    gap: 14px;
}

.tm-document-row {
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--tm-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
}

.tm-document-row__title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--tm-ink);
    font-size: 14px;
    font-weight: 700;
}

.tm-document-row__title span {
    color: var(--tm-orange);
}

.tm-document-row__field {
    display: grid;
}

.tm-file-input {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px dashed rgba(13, 71, 161, 0.25);
    border-radius: 12px;
    background: rgba(245, 248, 253, 0.85);
    color: var(--tm-body);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.tm-recaptcha-wrap {
    display: grid;
    gap: 8px;
    margin-top: -2px;
}

.tm-register-sidebar {
    display: grid;
    gap: 18px;
}

.tm-contact-sidebar {
    display: grid;
    gap: 18px;
}

.tm-contact-aside-card {
    padding: 24px;
}

.tm-contact-aside-card p {
    margin: 14px 0 0;
    color: var(--tm-body);
    font-size: 14px;
    line-height: 1.7;
}

.tm-contact-aside-card strong {
    color: var(--tm-ink);
}

.tm-contact-links {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.tm-contact-links a {
    display: block;
    padding: 14px;
    border: 1px solid var(--tm-border);
    border-radius: 12px;
    background: var(--tm-tint);
}

.tm-contact-links a strong,
.tm-contact-links a span {
    display: block;
}

.tm-contact-links a strong {
    color: var(--tm-ink);
    font-size: 13px;
    font-weight: 700;
}

.tm-contact-links a span {
    margin-top: 6px;
    color: var(--tm-body);
    font-size: 12px;
    line-height: 1.55;
}

.tm-cta {
    padding: 26px 28px;
    border: 1px solid var(--tm-border);
    border-radius: 22px;
    background: linear-gradient(135deg, #163b7a 0%, #214b98 52%, #6f2c91 100%);
    box-shadow: 0 18px 40px rgba(23, 53, 107, 0.14);
}

.tm-cta h2,
.tm-cta .tm-badge {
    color: #ffffff;
}

.tm-cta h2 {
    max-width: 16ch;
    font-size: clamp(22px, 2.3vw, 32px);
    line-height: 1.08;
}

.tm-cta .tm-badge {
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.14);
    color: #d7e3ff;
}

.tm-cta .tm-button {
    justify-self: end;
}

.tm-cta > div {
    max-width: 620px;
}

.tm-footer {
    background: #132747;
    padding: 24px 0 28px;
}

.tm-footer__brand img {
    height: 28px;
    width: auto;
}

.tm-footer__brand p {
    max-width: 360px;
    color: #afc3e4;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.7;
}

.tm-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    justify-self: end;
}

.tm-footer__links div {
    display: grid;
    gap: 8px;
}

.tm-footer__links a {
    color: #dce6f6;
    font-size: 11px;
    font-weight: 600;
}

.tm-nav a:focus-visible,
.tm-login:focus-visible,
.tm-button:focus-visible,
.tm-footer__links a:focus-visible,
.tm-tile:focus-visible,
.tm-workspace-card__body button:focus-visible,
.tm-faq summary:focus-visible,
.tm-field input:focus-visible,
.tm-field select:focus-visible,
.tm-field textarea:focus-visible,
.tm-password-toggle:focus-visible,
.tm-file-input:focus-visible,
.tm-contact-links a:focus-visible,
.tm-form__footer a:focus-visible {
    outline: 3px solid var(--tm-orange);
    outline-offset: 2px;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .tm-nav {
        display: none;
    }

    .tm-hero__grid,
    .tm-story,
    .tm-travellers,
    .tm-split-card,
    .tm-cta,
    .tm-footer__inner {
        grid-template-columns: 1fr;
    }

    .tm-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tm-consultants,
    .tm-feature-grid,
    .tm-steps,
    .tm-story-placeholders,
    .tm-impact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tm-selector,
    .tm-dual-cards {
        grid-template-columns: 1fr;
    }

    .tm-register-layout,
    .tm-contact-layout,
    .tm-form__grid,
    .tm-phone-row,
    .tm-document-row {
        grid-template-columns: 1fr;
    }

    .tm-tile-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tm-cta .tm-button,
    .tm-footer__links {
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .tm-header__inner,
    .tm-header__actions {
        flex-wrap: wrap;
    }

    .tm-hero__content h1,
    .tm-copy-block h2,
    .tm-heading h2,
    .tm-split-card h2,
    .tm-cta h2 {
        font-size: 38px;
    }

    .tm-actions,
    .tm-stats,
    .tm-services,
    .tm-consultants,
    .tm-feature-grid,
    .tm-steps,
    .tm-tile-grid,
    .tm-story-placeholders,
    .tm-impact-grid,
    .tm-footer__links {
        grid-template-columns: 1fr;
    }

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

    .tm-form__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .tm-register-card,
    .tm-contact-card,
    .tm-contact-aside-card {
        padding: 22px 18px;
    }

    .tm-cta {
        padding: 22px 18px;
    }

    .tm-cta h2 {
        max-width: none;
        font-size: 28px;
    }

    .tm-button,
    .tm-button--light {
        width: 100%;
    }
}
