.t2-theme {
    --t2-bg: #f6f8fc;
    --t2-surface: #ffffff;
    --t2-border: #dbe3f0;
    --t2-ink: #14213d;
    --t2-muted: #51607d;
    --t2-deep: #101f45;
    --t2-accent: #2554d8;
    --t2-accent-2: #2b6cff;
    --t2-ring: rgba(37, 84, 216, 0.18);
    background: var(--t2-bg);
    color: var(--t2-ink);
    font-family: "Manrope", sans-serif;
}

.t2-theme * {
    box-sizing: border-box;
}

.t2-theme a {
    color: inherit;
    text-decoration: none;
}

.t2-theme h1,
.t2-theme h2,
.t2-theme h3,
.t2-theme h4 {
    font-family: "Urbanist", sans-serif;
    letter-spacing: -0.01em;
    color: var(--t2-ink);
    margin: 0;
}

.t2-theme p {
    margin: 0;
    color: var(--t2-muted);
}

.preloader-area-wrap .spinner {
    flex-direction: column;
    gap: 10px;
}

.preloader-area-wrap .t2-loader {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(20, 33, 61, 0.16);
    border-top-color: #2554d8;
    animation: t2-loader-spin 0.8s linear infinite;
}

.preloader-area-wrap .t2-loader__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(100%);
    white-space: nowrap;
    border: 0;
}

@keyframes t2-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

.t2-theme .t2-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(246, 248, 252, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(20, 33, 61, 0.06);
}

.t2-theme .t2-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 20px;
}

.t2-theme .t2-header__logo img {
    max-height: 42px;
    width: auto;
}

.t2-theme .t2-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.t2-theme .t2-nav a {
    font-size: 14px;
    font-weight: 700;
    color: #273758;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.t2-theme .t2-nav a:hover {
    color: var(--t2-accent);
}

.t2-theme .t2-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t2-theme .t2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.t2-theme .t2-btn-primary {
    background: linear-gradient(135deg, var(--t2-accent) 0%, var(--t2-accent-2) 100%);
    color: #fff;
    box-shadow: 0 14px 24px rgba(37, 84, 216, 0.24);
}

.t2-theme .t2-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(37, 84, 216, 0.32);
    color: #fff;
}

.t2-theme .t2-btn-secondary {
    border-color: var(--t2-border);
    background: #fff;
    color: var(--t2-ink);
}

.t2-theme .t2-btn-secondary:hover {
    border-color: var(--t2-accent);
    color: var(--t2-accent);
}

.t2-theme .t2-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--t2-border);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.t2-theme .t2-menu-btn span {
    width: 18px;
    height: 2px;
    border-radius: 8px;
    background: var(--t2-ink);
}

.t2-theme .t2-footer {
    background: #eaf0fb;
    border-top: 1px solid #d3dfef;
    padding: 58px 0 24px;
}

.t2-theme .t2-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
}

.t2-theme .t2-footer__logo img {
    max-height: 44px;
    width: auto;
}

.t2-theme .t2-footer p {
    margin-top: 12px;
    line-height: 1.65;
}

.t2-theme .t2-footer__meta {
    margin-top: 10px;
    color: #3a4e76;
    font-size: 13px;
    line-height: 1.5;
}

.t2-theme .t2-footer h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.t2-theme .t2-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.t2-theme .t2-footer ul a:hover {
    color: var(--t2-accent);
}

.t2-theme .t2-footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #d1dded;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #41567f;
    font-size: 13px;
}

.t2-theme .t2-footer__bottom div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t2-theme .mobile-menu-overlay.t2-mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 44, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1400;
}

.t2-theme .mobile-menu-overlay.t2-mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.t2-theme .t2-mobile-nav::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(90vw, 360px);
    height: 100%;
    background: #ffffff;
    box-shadow: -14px 0 40px rgba(18, 32, 68, 0.16);
}

.t2-theme .t2-mobile-nav__head,
.t2-theme .t2-mobile-nav__body {
    position: relative;
    margin-left: auto;
    width: min(90vw, 360px);
}

.t2-theme .t2-mobile-nav__head {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #e4ebf6;
}

.t2-theme .t2-mobile-nav__head img {
    max-height: 34px;
    width: auto;
}

.t2-theme .t2-mobile-nav__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #d9e3f3;
    background: #fff;
    font-size: 24px;
    line-height: 1;
    color: #27406f;
}

.t2-theme .t2-mobile-nav__body {
    padding: 12px 16px 18px;
    height: calc(100vh - 74px);
    overflow: auto;
}

.t2-theme .t2-mobile-nav__body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t2-theme .t2-mobile-nav__body > ul > li {
    border-bottom: 1px solid #e7eef8;
}

.t2-theme .t2-mobile-nav__body a {
    display: block;
    padding: 12px 0;
    color: #233760;
    font-size: 14px;
    font-weight: 700;
}

.t2-theme .t2-mobile-nav__body .sub-menu {
    display: none;
    padding-bottom: 10px;
}

.t2-theme .t2-mobile-nav__body .sub-menu a {
    font-size: 13px;
    font-weight: 600;
    color: #4b618b;
    padding: 8px 0 8px 14px;
}

.t2-theme .t2-mobile-nav__cta {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.t2-theme .t2-mobile-nav__cta .t2-btn {
    width: 100%;
}

.t2-theme .t2-scroll-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(145deg, #1d4ed8, #0ea5e9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 16px 28px rgba(29, 78, 216, 0.32);
}

.t2-theme .t2-scroll-top:hover {
    color: #fff;
}

.t2-inner .t2-page-hero {
    padding: 38px 0 28px;
}

.t2-inner .t2-page-hero__inner {
    border: 1px solid var(--t2-border);
    border-radius: 20px;
    background: linear-gradient(120deg, #12224b 0%, #244c98 100%);
    padding: 38px 28px;
}

.t2-inner .t2-page-hero__title {
    color: #fff;
    text-align: center;
    font-size: clamp(30px, 4.2vw, 46px);
    line-height: 1.05;
}

.t2-inner .t2-page-hero__lead {
    text-align: center;
    color: rgba(236, 243, 255, 0.92);
    margin-top: 10px;
    font-size: 16px;
}

.t2-inner .section-space--inner--120,
.t2-inner .section-space--inner--top--120,
.t2-inner .section-space--inner--bottom--120 {
    padding-top: 68px;
    padding-bottom: 68px;
}

.t2-inner .section-space--inner--80 {
    padding-top: 46px;
    padding-bottom: 46px;
}

.t2-inner .t2-services-pack__hero {
    border: 1px solid var(--t2-border);
    border-radius: 20px;
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
    padding: 34px 30px;
    margin-bottom: 28px;
}

.t2-inner .t2-services-pack__hero .t2-eyebrow {
    background: #e8efff;
    border-color: #d3e0fb;
    color: #2b4a82;
}

.t2-inner .t2-services-pack__hero h1 {
    color: var(--t2-ink);
    margin-top: 12px;
    font-size: clamp(32px, 4.6vw, 52px);
    line-height: 1.03;
}

.t2-inner .t2-services-pack__hero p {
    color: #43587f;
    max-width: 860px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.75;
}

.t2-inner .t2-services-pack__chips {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.t2-inner .t2-services-pack__chips span {
    min-height: 34px;
    border-radius: 999px;
    border: 1px solid #d6e2fa;
    color: #365487;
    background: #f3f7ff;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.t2-inner .t2-services-pack__grid-wrap {
    margin-bottom: 24px;
}

.t2-inner .t2-services-tabs {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.45fr);
    gap: 18px;
}

.t2-inner .t2-services-tabs__nav {
    display: grid;
    gap: 10px;
}

.t2-inner .t2-services-tabs__nav-item {
    border: 1px solid var(--t2-border);
    background: #fff;
    border-radius: 14px;
    min-height: 80px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.t2-inner .t2-services-tabs__nav-item:hover {
    border-color: #b8cdf4;
    transform: translateY(-1px);
}

.t2-inner .t2-services-tabs__nav-item.is-active {
    border-color: #9fbaec;
    box-shadow: 0 10px 24px rgba(30, 56, 107, 0.08);
    background: #f8fbff;
}

.t2-inner .t2-services-tabs__nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #d4e0f8;
    background: #edf4ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--t2-accent);
    flex-shrink: 0;
}

.t2-inner .t2-services-tabs__nav-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.t2-inner .t2-services-tabs__nav-copy {
    display: grid;
    gap: 4px;
}

.t2-inner .t2-services-tabs__nav-copy strong {
    font-size: 17px;
    line-height: 1.2;
    color: #1b2f54;
}

.t2-inner .t2-services-tabs__nav-copy small {
    font-size: 13px;
    color: #5d739b;
}

.t2-inner .t2-services-tabs__panels {
    display: grid;
    gap: 10px;
}

.t2-inner .t2-services-tabs__panel {
    border: 1px solid var(--t2-border);
    border-radius: 16px;
    background: #fff;
}

.t2-inner .t2-services-tabs__panel .t2-services-tabs__mobile-trigger {
    display: none;
}

.t2-inner .t2-services-tabs__panel-body {
    padding: 22px;
}

.t2-inner .t2-services-tabs__panel:not(.is-active) {
    display: none;
}

.t2-inner .t2-services-tabs__panel h3 {
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1.06;
    margin-bottom: 0;
}

.t2-inner .t2-services-tabs__panel p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.t2-inner .t2-services-tabs__panel ul {
    margin: 0 0 14px;
    padding-left: 18px;
}

.t2-inner .t2-services-tabs__panel li {
    color: #334a72;
    line-height: 1.55;
    margin-bottom: 7px;
}

.t2-inner .t2-services-tabs__panel li:last-child {
    margin-bottom: 0;
}

.t2-inner .t2-services-tabs__panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.t2-inner .t2-services-tabs__panel .t2-icon-wrap {
    width: auto;
    height: auto;
    margin-bottom: 0;
    flex-shrink: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.t2-inner .t2-services-tabs__panel .t2-icon-wrap svg {
    width: clamp(28px, 3.5vw, 38px);
    height: clamp(28px, 3.5vw, 38px);
    fill: none;
    stroke: currentColor;
    color: var(--t2-accent);
    stroke-width: 1.7;
}

.t2-inner .t2-services-pack__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.t2-inner .t2-services-pack__card {
    border: 1px solid var(--t2-border);
    border-radius: 16px;
    background: #fff;
    padding: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.t2-inner .t2-services-pack__card:hover {
    transform: translateY(-3px);
    border-color: #c9d9f8;
    box-shadow: 0 16px 34px rgba(24, 44, 85, 0.12);
}

.t2-inner .t2-services-pack__card h3 {
    font-size: 21px;
    line-height: 1.22;
    margin-bottom: 8px;
}

.t2-inner .t2-services-pack__card p {
    font-size: 15px;
    line-height: 1.65;
}

.t2-inner .t2-services-pack__card .t2-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
}

.t2-inner .t2-services-pack__card .t2-icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    color: var(--t2-accent);
}

.t2-inner .t2-services-sidebar .t2-icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    color: var(--t2-accent);
}

.t2-inner .t2-services-pack__meta {
    margin-top: 10px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--t2-accent);
}

.t2-inner .t2-services-pack__capabilities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.t2-inner .t2-services-pack__capabilities article {
    border: 1px solid var(--t2-border);
    border-radius: 16px;
    background: #fff;
    padding: 20px;
}

.t2-inner .t2-services-pack__capabilities h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.t2-inner .t2-services-pack__capabilities p {
    font-size: 15px;
    line-height: 1.65;
}

.t2-inner .t2-services-pack__cta {
    border: 1px solid var(--t2-border);
    border-radius: 20px;
    background: linear-gradient(145deg, #0f2148 0%, #264f9e 100%);
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.t2-inner .t2-services-pack__cta .t2-eyebrow {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.t2-inner .t2-services-pack__cta h3,
.t2-inner .t2-services-pack__cta p {
    color: #fff;
}

.t2-inner .t2-services-pack__cta h3 {
    margin-top: 10px;
    font-size: clamp(28px, 3.9vw, 40px);
    line-height: 1.06;
}

.t2-inner .t2-services-pack__cta p {
    margin-top: 10px;
    max-width: 640px;
}

.t2-inner .t2-service-detail__content {
    display: grid;
    gap: 16px;
}

.t2-inner .t2-service-detail__media {
    min-height: 320px;
    border-radius: 20px;
    border: 1px solid var(--t2-border);
    background-size: cover;
    background-position: center;
}

.t2-inner .t2-service-detail__intro,
.t2-inner .t2-service-detail__panel,
.t2-inner .t2-service-detail__cta {
    border: 1px solid var(--t2-border);
    border-radius: 16px;
    background: #fff;
    padding: 22px;
}

.t2-inner .t2-service-detail__intro .t2-eyebrow {
    margin-bottom: 12px;
}

.t2-inner .t2-service-detail__intro h1 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    margin-bottom: 10px;
}

.t2-inner .t2-service-detail__intro p {
    font-size: 16px;
    line-height: 1.7;
}

.t2-inner .t2-service-detail__panel h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.t2-inner .t2-service-detail__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.t2-inner .t2-service-detail__pillars div {
    border: 1px solid var(--t2-border);
    border-radius: 12px;
    background: #f7f9fe;
    padding: 12px;
    color: #31476e;
    font-size: 14px;
    line-height: 1.55;
}

.t2-inner .t2-service-detail__panel ul {
    margin: 0;
    padding-left: 18px;
}

.t2-inner .t2-service-detail__panel li {
    color: #3b4f74;
    margin-bottom: 8px;
    line-height: 1.55;
}

.t2-inner .t2-service-detail__panel li:last-child {
    margin-bottom: 0;
}

.t2-inner .t2-service-detail__cta h3 {
    font-size: clamp(26px, 3.4vw, 36px);
    line-height: 1.1;
    margin-bottom: 8px;
}

.t2-inner .t2-service-detail__cta p {
    margin-bottom: 12px;
}

.t2-inner .t2-services-sidebar {
    display: grid;
    gap: 16px;
}

.t2-inner .t2-services-sidebar__widget {
    border: 1px solid var(--t2-border);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
}

.t2-inner .t2-services-sidebar__widget h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

.t2-inner .t2-services-sidebar__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.t2-inner .t2-services-sidebar__menu li a {
    border: 1px solid var(--t2-border);
    border-radius: 12px;
    background: #f8fbff;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: #2b3f67;
    font-weight: 700;
}

.t2-inner .t2-services-sidebar__menu li a em {
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #5d75a5;
}

.t2-inner .t2-services-sidebar__menu li.active a,
.t2-inner .t2-services-sidebar__menu li a:hover {
    border-color: #b9cdf0;
    background: #eef4ff;
}

.t2-inner .t2-services-sidebar__contacts {
    display: grid;
    gap: 10px;
}

.t2-inner .t2-services-sidebar__contact-item {
    border: 1px solid var(--t2-border);
    border-radius: 12px;
    background: #f8fbff;
    padding: 10px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    align-items: center;
}

.t2-inner .t2-services-sidebar__contact-item .t2-icon-wrap {
    margin-bottom: 0;
}

.t2-inner .t2-services-sidebar__contact-item h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.t2-inner .t2-services-sidebar__contact-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.t2-inner .t2-services-sidebar__cta {
    margin-top: 12px;
    width: 100%;
}

.t2-inner .card,
.t2-inner .single-service-item,
.t2-inner .cb-service-page__panel,
.t2-inner .cb-contact-form {
    border-radius: 16px;
}

.t2-inner input:not([type="checkbox"]):not([type="radio"]),
.t2-inner select,
.t2-inner textarea,
.t2-login input:not([type="checkbox"]):not([type="radio"]),
.t2-login select,
.t2-login textarea {
    min-height: 46px;
    border: 1px solid var(--t2-border);
    border-radius: 10px;
    background: #fff;
    color: var(--t2-ink);
    box-shadow: none;
}

.t2-inner input:focus,
.t2-inner select:focus,
.t2-inner textarea:focus,
.t2-login input:focus,
.t2-login select:focus,
.t2-login textarea:focus {
    border-color: #9eb5e8;
    box-shadow: 0 0 0 3px var(--t2-ring);
}

body.t2-theme.t2-inner .ht-btn--default,
body.t2-theme.t2-inner .btn-outline,
body.t2-theme.t2-inner .ht-btn--transparent,
body.t2-theme.t2-login .ht-btn--default,
body.t2-theme.t2-login .btn-outline,
body.t2-theme.t2-login .ht-btn--transparent,
body.t2-theme.t2-inner .btn.btn-primary,
body.t2-theme.t2-inner .btn.btn-secondary,
body.t2-theme.t2-login .btn.btn-primary,
body.t2-theme.t2-login .btn.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.t2-theme.t2-inner .ht-btn--default,
body.t2-theme.t2-login .ht-btn--default,
body.t2-theme.t2-inner .btn.btn-primary,
body.t2-theme.t2-login .btn.btn-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--t2-accent) 0%, var(--t2-accent-2) 100%);
    box-shadow: 0 14px 24px rgba(37, 84, 216, 0.24);
}

body.t2-theme.t2-inner .ht-btn--default:hover,
body.t2-theme.t2-login .ht-btn--default:hover,
body.t2-theme.t2-inner .btn.btn-primary:hover,
body.t2-theme.t2-login .btn.btn-primary:hover {
    color: #fff;
}

body.t2-theme.t2-inner .btn-outline,
body.t2-theme.t2-login .btn-outline,
body.t2-theme.t2-inner .ht-btn--transparent,
body.t2-theme.t2-login .ht-btn--transparent,
body.t2-theme.t2-inner .btn.btn-secondary,
body.t2-theme.t2-login .btn.btn-secondary {
    border: 1px solid var(--t2-border);
    color: var(--t2-ink);
    background: #fff;
}

.t2-login main .table {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .t2-theme .t2-nav {
        display: none;
    }

    .t2-theme .t2-menu-btn {
        display: inline-flex;
    }

    .t2-theme .t2-footer__grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .t2-inner .t2-services-pack__grid,
    .t2-inner .t2-services-pack__capabilities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t2-inner .t2-service-detail__pillars {
        grid-template-columns: 1fr;
    }

    .t2-inner .t2-services-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .t2-theme .t2-header__inner {
        min-height: 74px;
    }

    .t2-theme .t2-header__logo img {
        max-height: 36px;
    }

    .t2-theme .t2-header__actions .t2-btn-primary {
        display: none;
    }

    .t2-theme .t2-footer {
        padding-top: 46px;
    }

    .t2-theme .t2-footer__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .t2-theme .t2-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .t2-inner .t2-page-hero {
        padding: 24px 0 18px;
    }

    .t2-inner .t2-page-hero__inner {
        padding: 24px 14px;
    }

    .t2-inner .t2-services-pack__hero {
        padding: 24px 14px;
    }

    .t2-inner .t2-services-pack__grid,
    .t2-inner .t2-services-pack__capabilities,
    .t2-inner .t2-service-detail__pillars {
        grid-template-columns: 1fr;
    }

    .t2-inner .t2-services-tabs__nav {
        display: none;
    }

    .t2-inner .t2-services-tabs__panel {
        overflow: hidden;
        display: block;
    }

    .t2-inner .t2-services-tabs__panel .t2-services-tabs__mobile-trigger {
        border: 0;
        border-bottom: 1px solid var(--t2-border);
        background: #fff;
        width: 100%;
        min-height: 56px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        color: #203457;
        font-weight: 700;
        font-size: 16px;
    }

    .t2-inner .t2-services-tabs__mobile-trigger em {
        font-style: normal;
        font-size: 26px;
        color: #5670a2;
        line-height: 1;
    }

    .t2-inner .t2-services-tabs__panel:not(.is-active) .t2-services-tabs__panel-body {
        display: none;
    }

    .t2-inner .t2-services-tabs__panel-body {
        padding: 16px 14px;
    }

    .t2-inner .t2-services-pack__cta {
        padding: 20px 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .t2-inner .t2-services-pack__cta .t2-btn {
        width: 100%;
    }

    .t2-inner .t2-service-detail__media {
        min-height: 220px;
    }

    .t2-inner .t2-service-detail__intro,
    .t2-inner .t2-service-detail__panel,
    .t2-inner .t2-service-detail__cta {
        padding: 16px 14px;
    }
}

.t2-home {
    --t2-bg: #f6f8fc;
    --t2-surface: #ffffff;
    --t2-border: #dbe3f0;
    --t2-ink: #14213d;
    --t2-muted: #51607d;
    --t2-deep: #101f45;
    --t2-accent: #2554d8;
    --t2-accent-2: #2b6cff;
    --t2-ring: rgba(37, 84, 216, 0.18);
    background: var(--t2-bg);
    color: var(--t2-ink);
    font-family: "Manrope", sans-serif;
}

.t2-home * {
    box-sizing: border-box;
}

.t2-home a {
    color: inherit;
    text-decoration: none;
}

.t2-home h1,
.t2-home h2,
.t2-home h3,
.t2-home h4 {
    font-family: "Urbanist", sans-serif;
    letter-spacing: -0.01em;
    color: var(--t2-ink);
    margin: 0;
}

.t2-home p {
    margin: 0;
    color: var(--t2-muted);
}

.t2-home .t2-section {
    padding: 68px 0;
}

.t2-home .hero-slider-area {
    background: transparent;
}

.t2-home .t2-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(246, 248, 252, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(20, 33, 61, 0.06);
}

.t2-home .t2-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 20px;
}

.t2-home .t2-header__logo img {
    max-height: 42px;
    width: auto;
}

.t2-home .t2-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.t2-home .t2-nav a {
    font-size: 14px;
    font-weight: 700;
    color: #273758;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.t2-home .t2-nav a:hover {
    color: var(--t2-accent);
}

.t2-home .t2-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t2-home .t2-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--t2-border);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.t2-home .t2-menu-btn span {
    width: 18px;
    height: 2px;
    border-radius: 8px;
    background: var(--t2-ink);
}

.t2-home .t2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.t2-home .t2-btn-primary {
    background: linear-gradient(135deg, var(--t2-accent) 0%, var(--t2-accent-2) 100%);
    color: #fff;
    box-shadow: 0 14px 24px rgba(37, 84, 216, 0.24);
}

.t2-home .t2-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(37, 84, 216, 0.32);
    color: #fff;
}

.t2-home .t2-btn-secondary {
    border-color: var(--t2-border);
    background: #fff;
    color: var(--t2-ink);
}

.t2-home .t2-btn-secondary:hover {
    border-color: var(--t2-accent);
    color: var(--t2-accent);
}

.t2-home .t2-btn-link {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t2-accent);
}

.t2-home .t2-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    color: #2a447a;
    background: #e9efff;
    border: 1px solid #d6e2ff;
}

.t2-home .t2-hero {
    padding: 42px 0 10px;
}

.t2-home .t2-hero__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
}

.t2-home .t2-hero__content,
.t2-home .t2-hero__panel {
    border-radius: 22px;
    border: 1px solid var(--t2-border);
    box-shadow: 0 18px 42px rgba(16, 31, 69, 0.08);
}

.t2-home .t2-hero__content {
    background: var(--t2-surface);
    padding: 34px 32px;
}

.t2-home .t2-hero__content h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.04;
    margin: 14px 0 16px;
}

.t2-home .t2-hero__content p {
    font-size: 17px;
    line-height: 1.7;
}

.t2-home .t2-hero__actions {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.t2-home .t2-hero__kpis {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.t2-home .t2-hero__kpis div {
    background: #f4f7ff;
    border: 1px solid var(--t2-border);
    border-radius: 12px;
    padding: 13px 12px;
}

.t2-home .t2-hero__kpis strong {
    display: block;
    font-size: 25px;
    line-height: 1.1;
    color: var(--t2-ink);
}

.t2-home .t2-hero__kpis span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.45;
}

.t2-home .t2-hero__panel {
    background: linear-gradient(165deg, #0f2146 0%, #1a3770 100%);
    border-color: rgba(255, 255, 255, 0.08);
    padding: 30px 24px;
}

.t2-home .t2-hero__panel h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.t2-home .t2-hero__panel p {
    color: #d3ddf8;
    margin-bottom: 14px;
}

.t2-home .t2-hero__form {
    display: grid;
    gap: 10px;
}

.t2-home .t2-hero__form input,
.t2-home .t2-hero__form select {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
}

.t2-home .t2-hero__form input:focus,
.t2-home .t2-hero__form select:focus {
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.t2-home .t2-hero__form option {
    color: var(--t2-ink);
}

.t2-home .t2-hero__notes {
    margin: 16px 0 0;
    padding-left: 18px;
    color: #dce5ff;
    font-size: 14px;
    line-height: 1.55;
}

.t2-home .t2-proof-quote {
    padding: 24px 0 14px;
}

.t2-home .t2-proof-quote blockquote {
    margin: 0;
    border-left: 4px solid var(--t2-accent);
    padding: 8px 0 8px 18px;
    max-width: 920px;
    color: #2b3c61;
    font-size: clamp(24px, 3.1vw, 34px);
    line-height: 1.3;
    font-family: "Urbanist", sans-serif;
}

.t2-home .t2-section-head {
    margin-bottom: 22px;
}

.t2-home .t2-section-head h2 {
    margin-top: 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.t2-home .t2-section-head p {
    margin-top: 10px;
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
}

.t2-home .t2-section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.t2-home .t2-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--t2-accent);
    background: #edf3ff;
    border: 1px solid #d6e2ff;
}

.t2-home .t2-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.t2-home .t2-solution-grid,
.t2-home .t2-core-grid,
.t2-home .t2-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.t2-home .t2-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.t2-home .t2-solution-card,
.t2-home .t2-core-card,
.t2-home .t2-proof-card,
.t2-home .t2-advantage-card,
.t2-home .t2-service-card {
    background: var(--t2-surface);
    border: 1px solid var(--t2-border);
    border-radius: 16px;
    padding: 22px;
}

.t2-home .t2-solution-card h3,
.t2-home .t2-core-card h3,
.t2-home .t2-proof-card h3,
.t2-home .t2-advantage-card h3,
.t2-home .t2-service-card h3 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.25;
}

.t2-home .t2-solution-card p,
.t2-home .t2-core-card p,
.t2-home .t2-proof-card p,
.t2-home .t2-advantage-card p,
.t2-home .t2-service-card p {
    font-size: 15px;
    line-height: 1.65;
}

.t2-home .t2-service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.t2-home .t2-service-card:hover {
    transform: translateY(-3px);
    border-color: #c9d9f8;
    box-shadow: 0 16px 34px rgba(24, 44, 85, 0.12);
}

.t2-home .t2-service-card__meta {
    margin-top: 10px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--t2-accent);
}

.t2-home .t2-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.t2-home .t2-proof-card strong {
    display: block;
    margin-top: 12px;
    color: #30436b;
    font-size: 13px;
    font-weight: 700;
}

.t2-home .t2-quote-cta {
    padding-top: 44px;
    padding-bottom: 74px;
}

.t2-home .t2-quote-cta__box {
    background: linear-gradient(145deg, #0f2148 0%, #264f9e 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.t2-home .t2-quote-cta__box .t2-eyebrow {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.t2-home .t2-quote-cta__box h2,
.t2-home .t2-quote-cta__box p {
    color: #fff;
}

.t2-home .t2-quote-cta__box h2 {
    margin-top: 12px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
}

.t2-home .t2-quote-cta__box p {
    margin-top: 10px;
    opacity: 0.92;
    max-width: 620px;
}

.t2-home .t2-footer {
    background: #eaf0fb;
    border-top: 1px solid #d3dfef;
    padding: 58px 0 24px;
}

.t2-home .t2-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
}

.t2-home .t2-footer__logo img {
    max-height: 44px;
    width: auto;
}

.t2-home .t2-footer p {
    margin-top: 12px;
    line-height: 1.65;
}

.t2-home .t2-footer__meta {
    margin-top: 10px;
    color: #3a4e76;
    font-size: 13px;
    line-height: 1.5;
}

.t2-home .t2-footer h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.t2-home .t2-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.t2-home .t2-footer ul a:hover {
    color: var(--t2-accent);
}

.t2-home .t2-footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #d1dded;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #41567f;
    font-size: 13px;
}

.t2-home .t2-footer__bottom div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t2-home .mobile-menu-overlay.t2-mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 44, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1400;
}

.t2-home .mobile-menu-overlay.t2-mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.t2-home .t2-mobile-nav::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(90vw, 360px);
    height: 100%;
    background: #ffffff;
    box-shadow: -14px 0 40px rgba(18, 32, 68, 0.16);
}

.t2-home .t2-mobile-nav__head,
.t2-home .t2-mobile-nav__body {
    position: relative;
    margin-left: auto;
    width: min(90vw, 360px);
    background: transparent;
}

.t2-home .t2-mobile-nav__head {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #e4ebf6;
}

.t2-home .t2-mobile-nav__head img {
    max-height: 34px;
    width: auto;
}

.t2-home .t2-mobile-nav__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #d9e3f3;
    background: #fff;
    font-size: 24px;
    line-height: 1;
    color: #27406f;
}

.t2-home .t2-mobile-nav__body {
    padding: 12px 16px 18px;
    height: calc(100vh - 74px);
    overflow: auto;
}

.t2-home .t2-mobile-nav__body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t2-home .t2-mobile-nav__body > ul > li {
    border-bottom: 1px solid #e7eef8;
}

.t2-home .t2-mobile-nav__body a {
    display: block;
    padding: 12px 0;
    color: #233760;
    font-size: 14px;
    font-weight: 700;
}

.t2-home .t2-mobile-nav__body .sub-menu {
    display: none;
    padding-bottom: 10px;
}

.t2-home .t2-mobile-nav__body .sub-menu a {
    font-size: 13px;
    font-weight: 600;
    color: #4b618b;
    padding: 8px 0 8px 14px;
}

.t2-home .t2-mobile-nav__cta {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.t2-home .t2-mobile-nav__cta .t2-btn {
    width: 100%;
}

@media (max-width: 1199px) {
    .t2-home .t2-nav {
        display: none;
    }

    .t2-home .t2-menu-btn {
        display: inline-flex;
    }

    .t2-home .t2-hero__grid,
    .t2-home .t2-service-grid,
    .t2-home .t2-core-grid,
    .t2-home .t2-proof-grid,
    .t2-home .t2-advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t2-home .t2-footer__grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .t2-home .t2-section {
        padding: 50px 0;
    }

    .t2-home .t2-header__inner {
        min-height: 74px;
    }

    .t2-home .t2-header__logo img {
        max-height: 36px;
    }

    .t2-home .t2-header__actions .t2-btn-primary {
        display: none;
    }

    .t2-home .t2-hero {
        padding: 24px 0 0;
    }

    .t2-home .t2-hero__grid,
    .t2-home .t2-service-grid,
    .t2-home .t2-solution-grid,
    .t2-home .t2-core-grid,
    .t2-home .t2-proof-grid,
    .t2-home .t2-advantage-grid {
        grid-template-columns: 1fr;
    }

    .t2-home .t2-hero__content,
    .t2-home .t2-hero__panel {
        padding: 20px 16px;
    }

    .t2-home .t2-hero__actions {
        flex-direction: column;
    }

    .t2-home .t2-hero__actions .t2-btn {
        width: 100%;
    }

    .t2-home .t2-hero__kpis {
        grid-template-columns: 1fr;
    }

    .t2-home .t2-proof-quote {
        padding-top: 18px;
    }

    .t2-home .t2-section-head--split {
        flex-direction: column;
        align-items: flex-start;
    }

    .t2-home .t2-quote-cta {
        padding-top: 20px;
        padding-bottom: 52px;
    }

    .t2-home .t2-quote-cta__box {
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .t2-home .t2-quote-cta__box .t2-btn {
        width: 100%;
    }

    .t2-home .t2-footer {
        padding-top: 46px;
    }

    .t2-home .t2-footer__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .t2-home .t2-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Wave 3: calc + contact */
body.t2-theme.t2-inner .t2-calc-page,
body.t2-theme.t2-inner .t2-contact-page {
    background: #f7f9fd;
}

body.t2-theme.t2-inner .t2-calc-page__hero,
body.t2-theme.t2-inner .t2-contact-page__hero {
    max-width: 820px;
    margin: 0 auto 26px;
    text-align: center;
}

body.t2-theme.t2-inner .t2-calc-page__hero h1,
body.t2-theme.t2-inner .t2-contact-page__hero h1 {
    font-size: clamp(32px, 4.2vw, 48px);
    line-height: 1.08;
    margin: 14px 0 14px;
}

body.t2-theme.t2-inner .t2-calc-page__hero p,
body.t2-theme.t2-inner .t2-contact-page__hero p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--t2-muted);
}

body.t2-theme.t2-inner .t2-calc-shell {
    max-width: 1080px;
    margin: 0 auto;
}

body.t2-theme.t2-inner .t2-calc-card {
    border-radius: 24px;
    border: 1px solid #dbe4f5;
    box-shadow: 0 20px 46px rgba(16, 31, 69, 0.1);
    overflow: hidden;
}

body.t2-theme.t2-inner .t2-calc-card__head {
    background: linear-gradient(145deg, #0f2146 0%, #1a3770 100%);
    padding: 26px 30px;
}

body.t2-theme.t2-inner .t2-calc-card__head .title,
body.t2-theme.t2-inner .t2-calc-card__head h2 {
    color: #fff;
    margin: 0;
}

body.t2-theme.t2-inner .t2-calc-card__head p {
    margin-top: 8px;
    color: #cedaf6;
}

body.t2-theme.t2-inner .t2-calc-card__body {
    background: #fff;
    padding: 26px 30px 30px;
}

body.t2-theme.t2-inner .t2-calc-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #4c607f;
}

body.t2-theme.t2-inner .t2-calc-form .form-control,
body.t2-theme.t2-inner .t2-calc-form select,
body.t2-theme.t2-inner .t2-calc-form .input-group-text {
    min-height: 52px;
    border-radius: 12px;
    border-color: #d4deef;
}

body.t2-theme.t2-inner .t2-calc-form .input-group-text {
    background: #eff4ff;
    color: #35558f;
    font-weight: 700;
}

body.t2-theme.t2-inner .t2-calc-form .form-control:focus,
body.t2-theme.t2-inner .t2-contact-page__form input:focus,
body.t2-theme.t2-inner .t2-contact-page__form textarea:focus {
    border-color: #9db6eb;
    box-shadow: 0 0 0 3px rgba(37, 84, 216, 0.12);
}

body.t2-theme.t2-inner .t2-calc-form .shipping_dhl {
    list-style: none;
}

body.t2-theme.t2-inner .t2-calc-form ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

body.t2-theme.t2-inner .t2-calc-form .radio {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid #d4deef;
    border-radius: 12px;
    background: #f9fbff;
}

body.t2-theme.t2-inner .t2-calc-form__actions {
    margin-top: 16px;
}

body.t2-theme.t2-inner .t2-contact-page__info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

body.t2-theme.t2-inner .t2-contact-page__info-card {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    padding: 20px;
}

body.t2-theme.t2-inner .t2-contact-page__info-card h4 {
    font-size: 20px;
    margin: 14px 0 6px;
}

body.t2-theme.t2-inner .t2-contact-page__info-card .t2-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 2px;
    color: var(--t2-accent);
    background: transparent;
    border: 0;
    border-radius: 0;
}

body.t2-theme.t2-inner .t2-contact-page__info-card .t2-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: inherit;
    stroke: currentColor;
    fill: none;
}

body.t2-theme.t2-inner .t2-contact-page__info-card .t2-icon-wrap svg * {
    stroke: currentColor;
    fill: none;
}

body.t2-theme.t2-inner .t2-contact-page__info-card p,
body.t2-theme.t2-inner .t2-contact-page__info-card a {
    color: var(--t2-muted);
    font-size: 16px;
    line-height: 1.6;
}

body.t2-theme.t2-inner .t2-contact-page__form-shell {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 20px 46px rgba(16, 31, 69, 0.08);
}

body.t2-theme.t2-inner .t2-contact-page__form-head {
    max-width: 760px;
    margin-bottom: 16px;
}

body.t2-theme.t2-inner .t2-contact-page__form-head h2 {
    margin-bottom: 8px;
}

body.t2-theme.t2-inner .t2-contact-page__form-card {
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

body.t2-theme.t2-inner .t2-contact-page__form input,
body.t2-theme.t2-inner .t2-contact-page__form textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid #d4deef;
    border-radius: 12px;
    background: #f9fbff;
    padding: 0 14px;
    font-size: 15px;
    color: var(--t2-ink);
}

body.t2-theme.t2-inner .t2-contact-page__form textarea {
    min-height: 180px;
    padding: 14px;
    resize: vertical;
}

body.t2-theme.t2-inner .t2-contact-page__actions {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.t2-theme.t2-inner .t2-contact-page__map-section {
    padding: 24px 0 120px;
    background: #f7f9fd;
}

body.t2-theme.t2-inner .t2-contact-page__location-card {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 16px 32px rgba(16, 31, 69, 0.08);
}

@media (max-width: 991px) {
    body.t2-theme.t2-inner .t2-contact-page__info-grid {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-contact-page__form-shell {
        padding: 20px;
    }

    body.t2-theme.t2-inner .t2-calc-card__head,
    body.t2-theme.t2-inner .t2-calc-card__body {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    body.t2-theme.t2-inner .t2-calc-page__hero p,
    body.t2-theme.t2-inner .t2-contact-page__hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    body.t2-theme.t2-inner .t2-calc-form .form-control,
    body.t2-theme.t2-inner .t2-calc-form select,
    body.t2-theme.t2-inner .t2-calc-form .input-group-text,
    body.t2-theme.t2-inner .t2-contact-page__form input {
        min-height: 50px;
    }

    body.t2-theme.t2-inner .t2-contact-page__actions .t2-btn {
        width: 100%;
    }
}

/* Contact v3 full redesign */
body.t2-theme.t2-inner .t2-contact-v3 {
    background: radial-gradient(1200px 400px at 15% 0%, #eaf1ff 0%, #f7f9fd 55%, #f7f9fd 100%);
}

body.t2-theme.t2-inner .t2-contact-v3__hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    margin-bottom: 20px;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-content,
body.t2-theme.t2-inner .t2-contact-v3__hero-panel {
    border-radius: 24px;
    border: 1px solid #d6e1f5;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-content {
    background: #fff;
    padding: 28px 30px;
    box-shadow: 0 24px 44px rgba(16, 31, 69, 0.08);
}

body.t2-theme.t2-inner .t2-contact-v3__hero-content h1 {
    font-size: clamp(36px, 5.2vw, 56px);
    line-height: 1.04;
    margin: 14px 0;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-content p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--t2-muted);
}

body.t2-theme.t2-inner .t2-contact-v3__hero-points {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-points li {
    position: relative;
    padding-left: 22px;
    color: #334c77;
    font-size: 15px;
    line-height: 1.55;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2554d8 0%, #16b8f3 100%);
}

body.t2-theme.t2-inner .t2-contact-v3__hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-panel {
    background: linear-gradient(165deg, #0f2146 0%, #1a3770 100%);
    padding: 24px;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-panel h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 26px;
    line-height: 1.15;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-panel p {
    margin: 0 0 14px;
    color: #cfdbf5;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-panel dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-panel dt {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8fa8d9;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-panel dd {
    margin: 4px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    word-break: break-word;
}

body.t2-theme.t2-inner .t2-contact-v3__hero-panel dd a {
    color: #fff;
}

body.t2-theme.t2-inner .t2-contact-v3__actions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

body.t2-theme.t2-inner .t2-contact-v3__action-card {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

body.t2-theme.t2-inner .t2-contact-v3__action-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--t2-accent);
    margin-bottom: 8px;
}

body.t2-theme.t2-inner .t2-contact-v3__action-icon svg,
body.t2-theme.t2-inner .t2-contact-v3__action-icon svg * {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

body.t2-theme.t2-inner .t2-contact-v3__action-card h4 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
}

body.t2-theme.t2-inner .t2-contact-v3__action-card p {
    margin: 0;
    color: #4f6488;
    line-height: 1.6;
}

body.t2-theme.t2-inner .t2-contact-v3__action-card a {
    margin-top: auto;
    padding-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #2554d8;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}

body.t2-theme.t2-inner .t2-contact-v3__form-section {
    margin-bottom: 20px;
}

body.t2-theme.t2-inner .t2-contact-v3__form-head {
    max-width: 840px;
    margin-bottom: 12px;
}

body.t2-theme.t2-inner .t2-contact-v3__form-head h2 {
    margin: 12px 0 8px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

body.t2-theme.t2-inner .t2-contact-v3__form-shell {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 20px 46px rgba(16, 31, 69, 0.08);
}

body.t2-theme.t2-inner .t2-contact-v3__form .form-message {
    margin-bottom: 12px;
}

body.t2-theme.t2-inner .t2-contact-v3__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.t2-theme.t2-inner .t2-contact-v3__field {
    display: grid;
    gap: 8px;
}

body.t2-theme.t2-inner .t2-contact-v3__field--message {
    grid-column: 1 / -1;
}

body.t2-theme.t2-inner .t2-contact-v3__field label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4d6283;
}

body.t2-theme.t2-inner .t2-contact-v3__field input,
body.t2-theme.t2-inner .t2-contact-v3__field textarea {
    width: 100%;
    border: 1px solid #d4deef;
    border-radius: 12px;
    background: #f9fbff;
    color: var(--t2-ink);
    padding: 0 14px;
    min-height: 52px;
    font-size: 15px;
}

body.t2-theme.t2-inner .t2-contact-v3__field textarea {
    min-height: 180px;
    padding: 12px 14px;
    resize: vertical;
}

body.t2-theme.t2-inner .t2-contact-v3__field input:focus,
body.t2-theme.t2-inner .t2-contact-v3__field textarea:focus {
    border-color: #9db6eb;
    box-shadow: 0 0 0 3px rgba(37, 84, 216, 0.12);
}

body.t2-theme.t2-inner .t2-contact-v3__form-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.t2-theme.t2-inner .t2-contact-v3__map-section {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 16px;
}

body.t2-theme.t2-inner .t2-contact-v3__map-frame,
body.t2-theme.t2-inner .t2-contact-v3__operations-card {
    border-radius: 20px;
    border: 1px solid #dbe4f5;
    background: #fff;
    overflow: hidden;
}

body.t2-theme.t2-inner .t2-contact-v3__map-frame iframe {
    display: block;
}

body.t2-theme.t2-inner .t2-contact-v3__operations-card {
    padding: 24px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
}

body.t2-theme.t2-inner .t2-contact-v3__operations-card h3 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.06;
}

body.t2-theme.t2-inner .t2-contact-v3__operations-card p {
    margin: 0 0 12px;
    color: #546a8d;
}

body.t2-theme.t2-inner .t2-contact-v3__operations-card ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 10px;
}

body.t2-theme.t2-inner .t2-contact-v3__operations-card li span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8196bb;
    margin-bottom: 2px;
}

body.t2-theme.t2-inner .t2-contact-v3__operations-card li strong,
body.t2-theme.t2-inner .t2-contact-v3__operations-card li a {
    color: #1f3358;
    font-size: 18px;
    line-height: 1.45;
    word-break: break-word;
}

@media (max-width: 1199px) {
    body.t2-theme.t2-inner .t2-contact-v3__hero,
    body.t2-theme.t2-inner .t2-contact-v3__map-section {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-contact-v3__hero-panel {
        order: -1;
    }
}

@media (max-width: 991px) {
    body.t2-theme.t2-inner .t2-contact-v3__actions-grid {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-contact-v3__form-shell {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    body.t2-theme.t2-inner .t2-contact-v3__hero-content {
        padding: 20px;
    }

    body.t2-theme.t2-inner .t2-contact-v3__hero-content h1 {
        font-size: clamp(30px, 10vw, 40px);
        line-height: 1.08;
    }

    body.t2-theme.t2-inner .t2-contact-v3__hero-content p {
        font-size: 15px;
    }

    body.t2-theme.t2-inner .t2-contact-v3__hero-panel {
        padding: 18px;
    }

    body.t2-theme.t2-inner .t2-contact-v3__hero-panel h3 {
        font-size: 22px;
    }

    body.t2-theme.t2-inner .t2-contact-v3__form-grid {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-contact-v3__form-actions .t2-btn {
        width: 100%;
    }

    body.t2-theme.t2-inner .t2-contact-v3__action-card h4 {
        font-size: 22px;
    }

    body.t2-theme.t2-inner .t2-contact-v3__operations-card {
        padding: 18px;
    }

    body.t2-theme.t2-inner .t2-contact-v3__operations-card h3 {
        font-size: 28px;
    }
}

/* Calc v3 full redesign */
body.t2-theme.t2-inner .t2-calc-v3 {
    background: radial-gradient(1000px 360px at 12% 0%, #eaf1ff 0%, #f7f9fd 56%, #f7f9fd 100%);
}

body.t2-theme.t2-inner .t2-calc-v3__hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    margin-bottom: 18px;
}

body.t2-theme.t2-inner .t2-calc-v3__hero-main,
body.t2-theme.t2-inner .t2-calc-v3__hero-side {
    border: 1px solid #d6e1f5;
    border-radius: 24px;
}

body.t2-theme.t2-inner .t2-calc-v3__hero-main {
    background: #fff;
    padding: 28px 30px;
    box-shadow: 0 24px 44px rgba(16, 31, 69, 0.08);
}

body.t2-theme.t2-inner .t2-calc-v3__hero-main h1 {
    font-size: clamp(36px, 5.1vw, 54px);
    line-height: 1.04;
    margin: 14px 0;
}

body.t2-theme.t2-inner .t2-calc-v3__hero-main p {
    color: var(--t2-muted);
    font-size: 17px;
    line-height: 1.68;
    max-width: 760px;
}

body.t2-theme.t2-inner .t2-calc-v3__hero-points {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

body.t2-theme.t2-inner .t2-calc-v3__hero-points li {
    position: relative;
    padding-left: 22px;
    color: #334c77;
    font-size: 15px;
}

body.t2-theme.t2-inner .t2-calc-v3__hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2554d8 0%, #16b8f3 100%);
}

body.t2-theme.t2-inner .t2-calc-v3__hero-side {
    background: linear-gradient(165deg, #0f2146 0%, #1a3770 100%);
    padding: 24px;
}

body.t2-theme.t2-inner .t2-calc-v3__hero-side h3 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #fff;
}

body.t2-theme.t2-inner .t2-calc-v3__hero-side p {
    margin: 0;
    color: #cfdbf5;
}

body.t2-theme.t2-inner .t2-calc-v3__shell {
    margin-bottom: 16px;
}

body.t2-theme.t2-inner .t2-calc-v3__card {
    border-radius: 24px;
    overflow: hidden;
}

body.t2-theme.t2-inner .t2-calc-v3__body {
    padding-top: 22px;
}

body.t2-theme.t2-inner .t2-calc-v3__state {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eaf1ff;
    border: 1px solid #d6e2ff;
    color: #27457f;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.t2-theme.t2-inner .t2-calc-v3__result-head,
body.t2-theme.t2-inner .t2-calc-v3__input-head {
    margin-bottom: 16px;
}

body.t2-theme.t2-inner .t2-calc-v3__result-head h3,
body.t2-theme.t2-inner .t2-calc-v3__input-head h3 {
    margin: 10px 0 6px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
}

body.t2-theme.t2-inner .t2-calc-v3__result-head p,
body.t2-theme.t2-inner .t2-calc-v3__input-head p {
    margin: 0;
    color: #546a8d;
}

body.t2-theme.t2-inner .t2-calc-v3__row {
    margin-bottom: 2px;
}

body.t2-theme.t2-inner .t2-calc-v3__form .form-group {
    margin-bottom: 12px;
}

body.t2-theme.t2-inner .t2-calc-v3__form .radio {
    background: #f5f9ff;
}

body.t2-theme.t2-inner .t2-calc-v3__form .radio label {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

body.t2-theme.t2-inner .t2-calc-v3__form .radio input[type="radio"] {
    margin-right: 7px;
}

body.t2-theme.t2-inner .t2-calc-v3__form .wc-proceed-to-checkout .t2-btn,
body.t2-theme.t2-inner .t2-calc-v3__form .pricing-plan-footer .t2-btn {
    min-width: 190px;
}

body.t2-theme.t2-inner .t2-calc-v3__notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.t2-theme.t2-inner .t2-calc-v3__notes article {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
}

body.t2-theme.t2-inner .t2-calc-v3__notes h4 {
    margin: 0 0 7px;
    font-size: 24px;
    line-height: 1.16;
}

body.t2-theme.t2-inner .t2-calc-v3__notes p {
    margin: 0;
    color: #546a8d;
}

@media (max-width: 1199px) {
    body.t2-theme.t2-inner .t2-calc-v3__hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    body.t2-theme.t2-inner .t2-calc-v3__notes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.t2-theme.t2-inner .t2-calc-v3__hero-main {
        padding: 20px;
    }

    body.t2-theme.t2-inner .t2-calc-v3__hero-main h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    body.t2-theme.t2-inner .t2-calc-v3__hero-main p {
        font-size: 15px;
    }

    body.t2-theme.t2-inner .t2-calc-v3__hero-side {
        padding: 18px;
    }

    body.t2-theme.t2-inner .t2-calc-v3__hero-side h3 {
        font-size: 22px;
    }

    body.t2-theme.t2-inner .t2-calc-v3__result-head h3,
    body.t2-theme.t2-inner .t2-calc-v3__input-head h3 {
        font-size: 29px;
    }

    body.t2-theme.t2-inner .t2-calc-v3__form .wc-proceed-to-checkout .t2-btn,
    body.t2-theme.t2-inner .t2-calc-v3__form .pricing-plan-footer .t2-btn {
        width: 100%;
        min-width: 0;
    }

    body.t2-theme.t2-inner .t2-calc-v3__notes h4 {
        font-size: 22px;
    }
}

/* About v4 full redesign */
body.t2-theme.t2-inner .t2-about-v4 {
    background: radial-gradient(1100px 340px at 15% 0%, #eaf1ff 0%, #f7f9fd 58%, #f7f9fd 100%);
}

body.t2-theme.t2-inner .t2-about-v4__hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    margin-bottom: 18px;
}

body.t2-theme.t2-inner .t2-about-v4__hero-content,
body.t2-theme.t2-inner .t2-about-v4__hero-media {
    border: 1px solid #d6e1f5;
    border-radius: 24px;
}

body.t2-theme.t2-inner .t2-about-v4__hero-content {
    background: #fff;
    padding: 28px 30px;
    box-shadow: 0 24px 44px rgba(16, 31, 69, 0.08);
}

body.t2-theme.t2-inner .t2-about-v4__hero-content h1 {
    font-size: clamp(34px, 4.8vw, 52px);
    line-height: 1.06;
    margin: 14px 0;
}

body.t2-theme.t2-inner .t2-about-v4__hero-content p {
    color: #53688d;
    font-size: 17px;
    line-height: 1.7;
}

body.t2-theme.t2-inner .t2-about-v4__hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.t2-theme.t2-inner .t2-about-v4__hero-media {
    min-height: 320px;
    background-size: cover;
    background-position: center;
}

body.t2-theme.t2-inner .t2-about-v4__pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

body.t2-theme.t2-inner .t2-about-v4__pillar {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
}

body.t2-theme.t2-inner .t2-about-v4__pillar h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.15;
}

body.t2-theme.t2-inner .t2-about-v4__pillar p {
    margin: 0;
    color: #53688d;
}

body.t2-theme.t2-inner .t2-about-v4__story {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
    margin-bottom: 20px;
}

body.t2-theme.t2-inner .t2-about-v4__story-media,
body.t2-theme.t2-inner .t2-about-v4__story-content {
    border: 1px solid #dbe4f5;
    border-radius: 22px;
}

body.t2-theme.t2-inner .t2-about-v4__story-media {
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

body.t2-theme.t2-inner .t2-about-v4__story-content {
    background: #fff;
    padding: 24px 26px;
}

body.t2-theme.t2-inner .t2-about-v4__story-content h2 {
    margin: 12px 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

body.t2-theme.t2-inner .t2-about-v4__story-content p {
    margin: 0;
    color: #53688d;
    line-height: 1.68;
}

body.t2-theme.t2-inner .t2-about-v4__story-content ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

body.t2-theme.t2-inner .t2-about-v4__story-content li {
    position: relative;
    padding-left: 22px;
    color: #2f4878;
}

body.t2-theme.t2-inner .t2-about-v4__story-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2554d8 0%, #16b8f3 100%);
}

body.t2-theme.t2-inner .t2-about-v4__proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

body.t2-theme.t2-inner .t2-about-v4__proof-card {
    background: linear-gradient(165deg, #0f2146 0%, #1a3770 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px;
}

body.t2-theme.t2-inner .t2-about-v4__proof-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
}

body.t2-theme.t2-inner .t2-about-v4__proof-card p {
    margin: 0;
    color: #cfdbf5;
}

body.t2-theme.t2-inner .t2-about-v4__cta {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 20px 46px rgba(16, 31, 69, 0.08);
}

body.t2-theme.t2-inner .t2-about-v4__cta h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

body.t2-theme.t2-inner .t2-about-v4__cta p {
    margin: 0 auto 16px;
    max-width: 780px;
    color: #546a8d;
}

/* FAQ v4 full redesign */
body.t2-theme.t2-inner .t2-faq-v4 {
    background: radial-gradient(1100px 340px at 15% 0%, #eaf1ff 0%, #f7f9fd 58%, #f7f9fd 100%);
}

body.t2-theme.t2-inner .t2-faq-v4__hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
    margin-bottom: 14px;
}

body.t2-theme.t2-inner .t2-faq-v4__hero-main,
body.t2-theme.t2-inner .t2-faq-v4__hero-side {
    border-radius: 22px;
    border: 1px solid #dbe4f5;
}

body.t2-theme.t2-inner .t2-faq-v4__hero-main {
    background: #fff;
    padding: 26px 28px;
    box-shadow: 0 20px 46px rgba(16, 31, 69, 0.08);
}

body.t2-theme.t2-inner .t2-faq-v4__hero-main h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 4.8vw, 50px);
    line-height: 1.08;
}

body.t2-theme.t2-inner .t2-faq-v4__hero-main p {
    margin: 0;
    color: #53688d;
    font-size: 17px;
    line-height: 1.65;
}

body.t2-theme.t2-inner .t2-faq-v4__hero-side {
    background: linear-gradient(165deg, #0f2146 0%, #1a3770 100%);
    padding: 24px;
}

body.t2-theme.t2-inner .t2-faq-v4__hero-side h3 {
    margin: 0 0 8px;
    font-size: 26px;
    color: #fff;
}

body.t2-theme.t2-inner .t2-faq-v4__hero-side p {
    margin: 0;
    color: #cfdbf5;
}

body.t2-theme.t2-inner .t2-faq-v4__hero-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.t2-theme.t2-inner .t2-faq-v4__category-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

body.t2-theme.t2-inner .t2-faq-v4__category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid #d5e1f6;
    background: #fff;
    color: #23457f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 8px 10px;
}

body.t2-theme.t2-inner .t2-faq-v4__section {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
    margin-bottom: 14px;
}

body.t2-theme.t2-inner .t2-faq-v4__section-head {
    margin-bottom: 10px;
}

body.t2-theme.t2-inner .t2-faq-v4__section-head h2 {
    margin: 0;
    font-size: clamp(28px, 3.5vw, 36px);
    line-height: 1.12;
}

body.t2-theme.t2-inner .t2-faq-v4__section-head p {
    margin: 8px 0 0;
    color: #52688d;
}

body.t2-theme.t2-inner .t2-faq-v4__accordion {
    display: grid;
    gap: 8px;
}

body.t2-theme.t2-inner .t2-faq-v4__item {
    border: 1px solid #d5e1f6;
    border-radius: 14px;
    background: #f9fbff;
    overflow: hidden;
}

body.t2-theme.t2-inner .t2-faq-v4__item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 62px;
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 700;
    color: #1f345a;
}

body.t2-theme.t2-inner .t2-faq-v4__item summary::-webkit-details-marker {
    display: none;
}

body.t2-theme.t2-inner .t2-faq-v4__marker {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #bfd1f2;
    background: #edf3ff;
    position: relative;
    flex: 0 0 auto;
}

body.t2-theme.t2-inner .t2-faq-v4__marker::before,
body.t2-theme.t2-inner .t2-faq-v4__marker::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #2a4d87;
    transform: translate(-50%, -50%);
}

body.t2-theme.t2-inner .t2-faq-v4__marker::before {
    width: 10px;
    height: 1.5px;
}

body.t2-theme.t2-inner .t2-faq-v4__marker::after {
    width: 1.5px;
    height: 10px;
}

body.t2-theme.t2-inner .t2-faq-v4__item[open] .t2-faq-v4__marker::after {
    display: none;
}

body.t2-theme.t2-inner .t2-faq-v4__answer {
    padding: 0 16px 14px;
}

body.t2-theme.t2-inner .t2-faq-v4__answer p {
    margin: 0;
    color: #4f6488;
    line-height: 1.64;
}

body.t2-theme.t2-inner .t2-faq-v4__cta {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 20px 46px rgba(16, 31, 69, 0.08);
}

body.t2-theme.t2-inner .t2-faq-v4__cta h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

body.t2-theme.t2-inner .t2-faq-v4__cta p {
    margin: 0 auto 16px;
    max-width: 760px;
    color: #546a8d;
}

@media (max-width: 1199px) {
    body.t2-theme.t2-inner .t2-about-v4__hero,
    body.t2-theme.t2-inner .t2-about-v4__story,
    body.t2-theme.t2-inner .t2-faq-v4__hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    body.t2-theme.t2-inner .t2-about-v4__pillars,
    body.t2-theme.t2-inner .t2-faq-v4__category-nav {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-about-v4__proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.t2-theme.t2-inner .t2-about-v4__hero-content,
    body.t2-theme.t2-inner .t2-about-v4__story-content,
    body.t2-theme.t2-inner .t2-about-v4__cta,
    body.t2-theme.t2-inner .t2-faq-v4__hero-main,
    body.t2-theme.t2-inner .t2-faq-v4__hero-side,
    body.t2-theme.t2-inner .t2-faq-v4__section,
    body.t2-theme.t2-inner .t2-faq-v4__cta {
        padding: 18px;
    }

    body.t2-theme.t2-inner .t2-about-v4__hero-content h1,
    body.t2-theme.t2-inner .t2-faq-v4__hero-main h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    body.t2-theme.t2-inner .t2-about-v4__hero-content p,
    body.t2-theme.t2-inner .t2-faq-v4__hero-main p {
        font-size: 15px;
    }

    body.t2-theme.t2-inner .t2-about-v4__hero-actions .t2-btn,
    body.t2-theme.t2-inner .t2-faq-v4__hero-actions .t2-btn,
    body.t2-theme.t2-inner .t2-faq-v4__cta .t2-btn {
        width: 100%;
    }

    body.t2-theme.t2-inner .t2-about-v4__pillar h3,
    body.t2-theme.t2-inner .t2-about-v4__proof-card h3 {
        font-size: 22px;
    }

    body.t2-theme.t2-inner .t2-faq-v4__section-head h2,
    body.t2-theme.t2-inner .t2-faq-v4__cta h2,
    body.t2-theme.t2-inner .t2-about-v4__cta h2 {
        font-size: 30px;
    }

    body.t2-theme.t2-inner .t2-faq-v4__item summary {
        font-size: 16px;
        min-height: 56px;
    }
}

/* Team + testimonials unified blocks */
body.t2-theme .t2-team-v2,
body.t2-theme .t2-proof-v2 {
    padding-top: 22px;
    padding-bottom: 22px;
}

body.t2-theme .t2-team-v2 .t2-section-head,
body.t2-theme .t2-proof-v2 .t2-section-head {
    margin-bottom: 14px;
}

body.t2-theme .t2-team-v2 .t2-section-head p {
    margin-top: 8px;
    max-width: 760px;
    color: #546a8d;
}

body.t2-theme .t2-team-v2__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

body.t2-theme .t2-team-v2__card {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
    overflow: hidden;
}

body.t2-theme .t2-team-v2__photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

body.t2-theme .t2-team-v2__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.t2-theme .t2-team-v2__meta {
    padding: 16px 18px 18px;
}

body.t2-theme .t2-team-v2__meta h3 {
    margin: 0 0 5px;
    font-size: 25px;
    line-height: 1.14;
}

body.t2-theme .t2-team-v2__meta p {
    margin: 0;
    color: #586d8f;
    font-weight: 600;
}

body.t2-theme .t2-proof-v2__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

body.t2-theme .t2-proof-v2__card {
    background: linear-gradient(170deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
    padding: 18px;
}

body.t2-theme .t2-proof-v2__card h4 {
    margin: 0 0 8px;
    font-size: 23px;
    line-height: 1.18;
}

body.t2-theme .t2-proof-v2__card p {
    margin: 0;
    color: #52678b;
    line-height: 1.62;
}

body.t2-theme .t2-proof-v2__card strong {
    display: block;
    margin-top: 10px;
    color: #27457f;
    font-size: 13px;
    letter-spacing: 0.03em;
}

@media (max-width: 991px) {
    body.t2-theme .t2-team-v2__grid,
    body.t2-theme .t2-proof-v2__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.t2-theme .t2-team-v2__meta h3,
    body.t2-theme .t2-proof-v2__card h4 {
        font-size: 22px;
    }
}

/* Team + testimonials anti-legacy v3 */
body.t2-theme .t2-team-v3,
body.t2-theme .t2-proof-v3 {
    padding-top: 22px;
    padding-bottom: 22px;
}

body.t2-theme .t2-team-v3__layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 16px;
}

body.t2-theme .t2-team-v3__intro {
    position: sticky;
    top: 104px;
    align-self: start;
    background: linear-gradient(165deg, #0f2146 0%, #1a3770 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px;
}

body.t2-theme .t2-team-v3__intro .t2-eyebrow {
    color: #d6e4ff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

body.t2-theme .t2-team-v3__intro h2 {
    margin: 12px 0 10px;
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.08;
}

body.t2-theme .t2-team-v3__intro p {
    color: #cfdbf5;
    margin: 0 0 16px;
    line-height: 1.62;
}

body.t2-theme .t2-team-v3__stack {
    display: grid;
    gap: 12px;
}

body.t2-theme .t2-team-v3__role {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 12px;
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
    overflow: hidden;
}

body.t2-theme .t2-team-v3__role--ops {
    grid-template-columns: 1fr 280px;
    background: linear-gradient(170deg, #ffffff 0%, #f4f8ff 100%);
}

body.t2-theme .t2-team-v3__role--coord {
    grid-template-columns: 280px 1fr;
}

body.t2-theme .t2-team-v3__photo {
    min-height: 220px;
}

body.t2-theme .t2-team-v3__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.t2-theme .t2-team-v3__meta {
    padding: 16px 18px;
    display: grid;
    align-content: center;
    gap: 6px;
}

body.t2-theme .t2-team-v3__chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid #d6e2ff;
    background: #edf3ff;
    color: #2b4f8d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.t2-theme .t2-team-v3__meta h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.12;
}

body.t2-theme .t2-team-v3__meta p {
    margin: 0;
    color: #546a8d;
    line-height: 1.56;
}

body.t2-theme .t2-team-v3__meta strong {
    margin-top: 2px;
    color: #25477f;
    font-size: 14px;
}

body.t2-theme .t2-proof-v3__head {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 14px;
    align-items: end;
    margin-bottom: 12px;
}

body.t2-theme .t2-proof-v3__metric {
    background: linear-gradient(165deg, #0f2146 0%, #1a3770 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 16px 18px;
}

body.t2-theme .t2-proof-v3__metric span {
    display: block;
    color: #9cb2dd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.t2-theme .t2-proof-v3__metric strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 38px;
    line-height: 1;
}

body.t2-theme .t2-proof-v3__metric p {
    margin: 8px 0 0;
    color: #cfdbf5;
}

body.t2-theme .t2-proof-v3__matrix {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 12px;
}

body.t2-theme .t2-proof-v3__card {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
    padding: 18px;
}

body.t2-theme .t2-proof-v3__card--primary {
    grid-row: span 2;
    background: linear-gradient(165deg, #f3f8ff 0%, #ffffff 100%);
}

body.t2-theme .t2-proof-v3__card h4 {
    margin: 0 0 8px;
    font-size: clamp(23px, 2.2vw, 30px);
    line-height: 1.14;
}

body.t2-theme .t2-proof-v3__card p {
    margin: 0;
    color: #546a8d;
    line-height: 1.63;
}

body.t2-theme .t2-proof-v3__card strong {
    display: block;
    margin-top: 10px;
    color: #27457f;
    font-size: 14px;
}

@media (max-width: 1199px) {
    body.t2-theme .t2-team-v3__layout,
    body.t2-theme .t2-proof-v3__head,
    body.t2-theme .t2-proof-v3__matrix {
        grid-template-columns: 1fr;
    }

    body.t2-theme .t2-team-v3__intro {
        position: relative;
        top: auto;
    }

    body.t2-theme .t2-team-v3__role,
    body.t2-theme .t2-team-v3__role--ops,
    body.t2-theme .t2-team-v3__role--coord {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.t2-theme .t2-team-v3__intro,
    body.t2-theme .t2-proof-v3__metric,
    body.t2-theme .t2-proof-v3__card {
        padding: 16px;
    }

    body.t2-theme .t2-team-v3__intro h2 {
        font-size: clamp(28px, 10vw, 38px);
    }

    body.t2-theme .t2-team-v3__meta h3 {
        font-size: 24px;
    }

    body.t2-theme .t2-team-v3__meta strong,
    body.t2-theme .t2-proof-v3__card strong {
        font-size: 13px;
    }

    body.t2-theme .t2-proof-v3__metric strong {
        font-size: 34px;
    }
}

/* Wave 5: fees + plans */
body.t2-theme.t2-inner .t2-pricing-v5 {
    background: radial-gradient(1100px 340px at 15% 0%, #eaf1ff 0%, #f7f9fd 58%, #f7f9fd 100%);
}

body.t2-theme.t2-inner .t2-pricing-v5__hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    margin-bottom: 16px;
}

body.t2-theme.t2-inner .t2-pricing-v5__hero-main,
body.t2-theme.t2-inner .t2-pricing-v5__hero-side {
    border: 1px solid #dbe4f5;
    border-radius: 22px;
}

body.t2-theme.t2-inner .t2-pricing-v5__hero-main {
    background: #fff;
    padding: 26px 28px;
    box-shadow: 0 20px 46px rgba(16, 31, 69, 0.08);
}

body.t2-theme.t2-inner .t2-pricing-v5__hero-main h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 4.8vw, 50px);
    line-height: 1.08;
}

body.t2-theme.t2-inner .t2-pricing-v5__hero-main p {
    margin: 0;
    color: #546a8d;
    font-size: 17px;
    line-height: 1.65;
}

body.t2-theme.t2-inner .t2-pricing-v5__hero-side {
    background: linear-gradient(165deg, #0f2146 0%, #1a3770 100%);
    padding: 22px;
}

body.t2-theme.t2-inner .t2-pricing-v5__hero-side h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 26px;
}

body.t2-theme.t2-inner .t2-pricing-v5__hero-side p {
    margin: 0;
    color: #cfdbf5;
}

body.t2-theme.t2-inner .t2-pricing-v5__plans,
body.t2-theme.t2-inner .t2-plans-v5__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

body.t2-theme.t2-inner .t2-fees-v5 .t2-pricing-v5__plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.t2-theme.t2-inner .t2-pricing-v5__plan,
body.t2-theme.t2-inner .t2-plans-v5__card {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
    padding: 18px;
    display: grid;
    gap: 8px;
}

body.t2-theme.t2-inner .t2-pricing-v5__plan.is-featured,
body.t2-theme.t2-inner .t2-plans-v5__card.is-featured {
    background: linear-gradient(165deg, #0f2146 0%, #1a3770 100%);
    border-color: rgba(255, 255, 255, 0.16);
}

body.t2-theme.t2-inner .t2-pricing-v5__plan.is-featured h3,
body.t2-theme.t2-inner .t2-pricing-v5__plan.is-featured strong,
body.t2-theme.t2-inner .t2-pricing-v5__plan.is-featured span,
body.t2-theme.t2-inner .t2-pricing-v5__plan.is-featured p,
body.t2-theme.t2-inner .t2-plans-v5__card.is-featured h3,
body.t2-theme.t2-inner .t2-plans-v5__card.is-featured strong,
body.t2-theme.t2-inner .t2-plans-v5__card.is-featured span,
body.t2-theme.t2-inner .t2-plans-v5__card.is-featured p {
    color: #fff;
}

body.t2-theme.t2-inner .t2-pricing-v5__plan-meta,
body.t2-theme.t2-inner .t2-plans-v5__tagline {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3d5e97;
}

body.t2-theme.t2-inner .t2-pricing-v5__plan h3,
body.t2-theme.t2-inner .t2-plans-v5__card h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.08;
}

body.t2-theme.t2-inner .t2-pricing-v5__plan-highlight,
body.t2-theme.t2-inner .t2-plans-v5__highlight {
    margin: 0;
    color: #52688d;
    line-height: 1.55;
}

body.t2-theme.t2-inner .t2-pricing-v5__plan ul,
body.t2-theme.t2-inner .t2-plans-v5__card ul {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

body.t2-theme.t2-inner .t2-pricing-v5__plan li,
body.t2-theme.t2-inner .t2-plans-v5__card li {
    display: grid;
    gap: 2px;
}

body.t2-theme.t2-inner .t2-pricing-v5__plan li span,
body.t2-theme.t2-inner .t2-plans-v5__card li span {
    font-size: 12px;
    font-weight: 700;
    color: #6b7fa2;
}

body.t2-theme.t2-inner .t2-pricing-v5__plan li strong,
body.t2-theme.t2-inner .t2-plans-v5__card li strong {
    font-size: 16px;
    color: #1f345a;
    line-height: 1.4;
}

body.t2-theme.t2-inner .t2-pricing-v5__included {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
    margin-bottom: 16px;
}

body.t2-theme.t2-inner .t2-pricing-v5__included-head h2 {
    margin: 0 0 6px;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.08;
}

body.t2-theme.t2-inner .t2-pricing-v5__included-head p {
    margin: 0 0 10px;
    color: #546a8d;
}

body.t2-theme.t2-inner .t2-pricing-v5__included ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
}

body.t2-theme.t2-inner .t2-pricing-v5__included li {
    position: relative;
    padding-left: 20px;
    color: #2f4878;
    line-height: 1.55;
}

body.t2-theme.t2-inner .t2-pricing-v5__included li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2554d8 0%, #16b8f3 100%);
}

body.t2-theme.t2-inner .t2-pricing-v5__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

body.t2-theme.t2-inner .t2-pricing-v5__group {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
    padding: 16px 18px;
}

body.t2-theme.t2-inner .t2-pricing-v5__group h3 {
    margin: 0 0 8px;
    font-size: 25px;
    line-height: 1.12;
}

body.t2-theme.t2-inner .t2-pricing-v5__group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

body.t2-theme.t2-inner .t2-pricing-v5__group li span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #6b7fa2;
}

body.t2-theme.t2-inner .t2-pricing-v5__group li strong {
    color: #1f345a;
    font-size: 15px;
    line-height: 1.52;
}

body.t2-theme.t2-inner .t2-plans-v5__compare {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(16, 31, 69, 0.06);
    margin-bottom: 16px;
}

body.t2-theme.t2-inner .t2-plans-v5__compare-head h2 {
    margin: 0 0 6px;
    font-size: clamp(30px, 4vw, 40px);
}

body.t2-theme.t2-inner .t2-plans-v5__compare-head p {
    margin: 0 0 10px;
    color: #546a8d;
}

body.t2-theme.t2-inner .t2-plans-v5__rows {
    display: grid;
    gap: 8px;
}

body.t2-theme.t2-inner .t2-plans-v5__row {
    border: 1px solid #dbe4f5;
    border-radius: 14px;
    padding: 12px;
    background: #f9fbff;
    display: grid;
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
}

body.t2-theme.t2-inner .t2-plans-v5__row h4 {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
}

body.t2-theme.t2-inner .t2-plans-v5__row span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #6c80a3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.t2-theme.t2-inner .t2-plans-v5__row strong {
    display: block;
    margin-top: 3px;
    font-size: 14px;
    color: #1f345a;
    line-height: 1.42;
}

body.t2-theme.t2-inner .t2-pricing-v5__cta {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 24px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 20px 46px rgba(16, 31, 69, 0.08);
}

body.t2-theme.t2-inner .t2-pricing-v5__cta h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

body.t2-theme.t2-inner .t2-pricing-v5__cta p {
    margin: 0 auto 16px;
    max-width: 760px;
    color: #546a8d;
}

body.t2-theme.t2-inner .t2-plans-v5__footnote {
    margin-top: 12px;
    color: #5a7093;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 1199px) {
    body.t2-theme.t2-inner .t2-pricing-v5__hero,
    body.t2-theme.t2-inner .t2-pricing-v5__plans,
    body.t2-theme.t2-inner .t2-plans-v5__cards {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-fees-v5 .t2-pricing-v5__plans {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-pricing-v5__included ul,
    body.t2-theme.t2-inner .t2-pricing-v5__groups {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-plans-v5__row {
        grid-template-columns: 1fr 1fr;
    }

    body.t2-theme.t2-inner .t2-plans-v5__row h4 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    body.t2-theme.t2-inner .t2-pricing-v5__hero-main,
    body.t2-theme.t2-inner .t2-pricing-v5__hero-side,
    body.t2-theme.t2-inner .t2-pricing-v5__included,
    body.t2-theme.t2-inner .t2-pricing-v5__group,
    body.t2-theme.t2-inner .t2-plans-v5__compare,
    body.t2-theme.t2-inner .t2-pricing-v5__cta {
        padding: 16px;
    }

    body.t2-theme.t2-inner .t2-pricing-v5__hero-main h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    body.t2-theme.t2-inner .t2-pricing-v5__hero-main p {
        font-size: 15px;
    }

    body.t2-theme.t2-inner .t2-pricing-v5__plan h3,
    body.t2-theme.t2-inner .t2-plans-v5__card h3 {
        font-size: 26px;
    }

    body.t2-theme.t2-inner .t2-pricing-v5__group h3 {
        font-size: 22px;
    }

    body.t2-theme.t2-inner .t2-pricing-v5__cta .t2-btn {
        width: 100%;
    }
}

/* Wave 6: Stores pack */
body.t2-theme.t2-inner .t2-stores-v6 {
    background: linear-gradient(180deg, #f7f9ff 0%, #f2f6ff 100%);
}

body.t2-theme.t2-inner .t2-stores-v6__hero {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}

body.t2-theme.t2-inner .t2-stores-v6__hero-main,
body.t2-theme.t2-inner .t2-stores-v6__hero-side {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 44px rgba(17, 35, 77, 0.08);
}

body.t2-theme.t2-inner .t2-stores-v6__hero-main h1 {
    margin: 8px 0 12px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.04;
}

body.t2-theme.t2-inner .t2-stores-v6__hero-main p,
body.t2-theme.t2-inner .t2-stores-v6__hero-side p {
    margin: 0;
    color: #546a8d;
}

body.t2-theme.t2-inner .t2-stores-v6__hero-points {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

body.t2-theme.t2-inner .t2-stores-v6__hero-points li {
    position: relative;
    padding-left: 20px;
    color: #213b67;
}

body.t2-theme.t2-inner .t2-stores-v6__hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a74ff, #4f95ff);
}

body.t2-theme.t2-inner .t2-stores-v6__hero-side h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.15;
}

body.t2-theme.t2-inner .t2-stores-v6__hero-side .t2-btn {
    margin-top: 16px;
}

body.t2-theme.t2-inner .t2-stores-v6__layout {
    display: grid;
    grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

body.t2-theme.t2-inner .t2-stores-v6__sidebar {
    position: sticky;
    top: 110px;
}

body.t2-theme.t2-inner .t2-stores-v6__mobile-menu {
    display: none;
}

body.t2-theme.t2-inner .t2-stores-v6__menu {
    display: grid;
    gap: 8px;
    padding: 14px;
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(18, 40, 85, 0.08);
}

body.t2-theme.t2-inner .t2-stores-v6__menu a,
body.t2-theme.t2-inner .t2-stores-v6__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #304d7a;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

body.t2-theme.t2-inner .t2-stores-v6__menu a:hover,
body.t2-theme.t2-inner .t2-stores-v6__links a:hover {
    background: #f3f7ff;
    color: #1c3d74;
}

body.t2-theme.t2-inner .t2-stores-v6__menu a.is-active,
body.t2-theme.t2-inner .t2-stores-v6__links a.is-active {
    background: linear-gradient(135deg, #2157d7, #2b74ff);
    color: #fff;
    border-color: #2157d7;
}

body.t2-theme.t2-inner .t2-stores-v6__content {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 38px rgba(17, 35, 77, 0.08);
}

body.t2-theme.t2-inner .t2-stores-v6__content-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

body.t2-theme.t2-inner .t2-stores-v6__content-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
}

body.t2-theme.t2-inner .t2-stores-v6__content-head p {
    margin: 0;
    color: #5a7093;
}

body.t2-theme.t2-inner .t2-stores-v6__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.t2-theme.t2-inner .t2-stores-v6__card {
    border: 1px solid #d8e1f2;
    border-radius: 16px;
    padding: 16px;
    background: #f9fbff;
    display: grid;
    gap: 10px;
}

body.t2-theme.t2-inner .t2-stores-v6__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #244b88;
    background: #e8f0ff;
}

body.t2-theme.t2-inner .t2-stores-v6__card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
}

body.t2-theme.t2-inner .t2-stores-v6__card p {
    margin: 0;
    color: #556b8f;
    line-height: 1.58;
}

body.t2-theme.t2-inner .t2-stores-v6__card-actions .t2-btn {
    width: 100%;
    justify-content: center;
}

body.t2-theme.t2-inner .t2-stores-v6__cta {
    margin-top: 20px;
    background: linear-gradient(135deg, #132f66, #1f4c99);
    color: #dce7ff;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
}

body.t2-theme.t2-inner .t2-stores-v6__cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
}

body.t2-theme.t2-inner .t2-stores-v6__cta p {
    margin: 0 auto 18px;
    max-width: 720px;
    color: #d4e1ff;
}

@media (max-width: 1199px) {
    body.t2-theme.t2-inner .t2-stores-v6__hero,
    body.t2-theme.t2-inner .t2-stores-v6__layout {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-stores-v6__sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    body.t2-theme.t2-inner .t2-stores-v6__hero-main,
    body.t2-theme.t2-inner .t2-stores-v6__hero-side,
    body.t2-theme.t2-inner .t2-stores-v6__content,
    body.t2-theme.t2-inner .t2-stores-v6__cta {
        border-radius: 16px;
        padding: 16px;
    }

    body.t2-theme.t2-inner .t2-stores-v6__mobile-menu {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #dbe4f5;
        border-radius: 14px;
        background: #fff;
        overflow: hidden;
    }

    body.t2-theme.t2-inner .t2-stores-v6__mobile-menu summary {
        list-style: none;
        cursor: pointer;
        padding: 12px 14px;
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #234783;
    }

    body.t2-theme.t2-inner .t2-stores-v6__mobile-menu .t2-stores-v6__links {
        padding: 0 10px 10px;
        display: grid;
        gap: 6px;
    }

    body.t2-theme.t2-inner .t2-stores-v6__menu {
        display: none;
    }

    body.t2-theme.t2-inner .t2-stores-v6__grid,
    body.t2-theme.t2-inner .t2-stores-v6__content-head {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }
}

/* Wave 7: Auth/account pack */
body.t2-theme.t2-inner .t2-auth-v7 {
    background: linear-gradient(180deg, #f7f9ff 0%, #f2f6ff 100%);
}

body.t2-theme.t2-inner .t2-auth-v7__hero {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

body.t2-theme.t2-inner .t2-auth-v7__hero-main,
body.t2-theme.t2-inner .t2-auth-v7__hero-side,
body.t2-theme.t2-inner .t2-auth-v7__card,
body.t2-theme.t2-inner .t2-auth-v7__media {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(17, 35, 77, 0.08);
}

body.t2-theme.t2-inner .t2-auth-v7__hero-main h1 {
    margin: 8px 0 10px;
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.05;
}

body.t2-theme.t2-inner .t2-auth-v7__hero-main p,
body.t2-theme.t2-inner .t2-auth-v7__hero-side p {
    margin: 0;
    color: #556b8f;
}

body.t2-theme.t2-inner .t2-auth-v7__hero-points {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

body.t2-theme.t2-inner .t2-auth-v7__hero-points li {
    position: relative;
    padding-left: 18px;
    color: #203d6f;
}

body.t2-theme.t2-inner .t2-auth-v7__hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a74ff, #4f95ff);
}

body.t2-theme.t2-inner .t2-auth-v7__hero-side h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.16;
}

body.t2-theme.t2-inner .t2-auth-v7__hero-side .t2-btn {
    margin-top: 14px;
}

body.t2-theme.t2-inner .t2-auth-v7__section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    align-items: stretch;
}

body.t2-theme.t2-inner .t2-auth-v7__section--single {
    grid-template-columns: 1fr;
}

body.t2-theme.t2-inner .t2-auth-v7__head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
}

body.t2-theme.t2-inner .t2-auth-v7__head p {
    margin: 8px 0 0;
    color: #5a7093;
}

body.t2-theme.t2-inner .t2-auth-v7__form {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

body.t2-theme.t2-inner .t2-auth-v7__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

body.t2-theme.t2-inner .t2-auth-v7__field {
    display: grid;
    gap: 6px;
}

body.t2-theme.t2-inner .t2-auth-v7__field label {
    margin: 0;
    color: #26467f;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.t2-theme.t2-inner .t2-auth-v7__field .form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #c9d6eb;
    padding: 12px 14px;
    color: #1f345a;
    background: #fff;
    box-shadow: none;
}

body.t2-theme.t2-inner .t2-auth-v7__field .form-control:focus {
    border-color: #2a72ff;
    box-shadow: 0 0 0 4px rgba(42, 114, 255, 0.14);
}

body.t2-theme.t2-inner .t2-auth-v7__actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

body.t2-theme.t2-inner .t2-auth-v7__actions .t2-btn {
    min-height: 48px;
    justify-content: center;
}

body.t2-theme.t2-inner .t2-auth-v7__switch {
    margin: 14px 0 0;
    color: #5d7396;
}

body.t2-theme.t2-inner .t2-auth-v7__switch a {
    color: #1f58ce;
    font-weight: 700;
}

body.t2-theme.t2-inner .t2-auth-v7__media {
    display: flex;
    padding: 0;
    overflow: hidden;
}

body.t2-theme.t2-inner .t2-auth-v7__media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

body.t2-theme.t2-inner .t2-auth-v7__error {
    margin: 14px 0 0;
    border: 1px solid #efb4bb;
    background: #fff4f6;
    color: #b42335;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    body.t2-theme.t2-inner .t2-auth-v7__hero,
    body.t2-theme.t2-inner .t2-auth-v7__section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.t2-theme.t2-inner .t2-auth-v7__hero-main,
    body.t2-theme.t2-inner .t2-auth-v7__hero-side,
    body.t2-theme.t2-inner .t2-auth-v7__card {
        border-radius: 16px;
        padding: 16px;
    }

    body.t2-theme.t2-inner .t2-auth-v7__hero-main h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    body.t2-theme.t2-inner .t2-auth-v7__grid {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-auth-v7__actions .t2-btn {
        width: 100%;
    }
}

/* Wave 8: Legal pack */
body.t2-theme.t2-inner .t2-legal-v8 {
    background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
}

body.t2-theme.t2-inner .t2-legal-v8__hero {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

body.t2-theme.t2-inner .t2-legal-v8__hero-main,
body.t2-theme.t2-inner .t2-legal-v8__hero-side,
body.t2-theme.t2-inner .t2-legal-v8__anchors,
body.t2-theme.t2-inner .t2-legal-v8__section-card,
body.t2-theme.t2-inner .t2-legal-v8__prohibited-head,
body.t2-theme.t2-inner .t2-legal-v8__prohibited-item,
body.t2-theme.t2-inner .t2-legal-v8__cta {
    background: #fff;
    border: 1px solid #dbe4f5;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(16, 33, 73, 0.08);
}

body.t2-theme.t2-inner .t2-legal-v8__hero-main,
body.t2-theme.t2-inner .t2-legal-v8__hero-side,
body.t2-theme.t2-inner .t2-legal-v8__anchors,
body.t2-theme.t2-inner .t2-legal-v8__prohibited-head,
body.t2-theme.t2-inner .t2-legal-v8__cta {
    padding: 24px;
}

body.t2-theme.t2-inner .t2-legal-v8__hero-main h1 {
    margin: 8px 0 12px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.03;
}

body.t2-theme.t2-inner .t2-legal-v8__hero-main p,
body.t2-theme.t2-inner .t2-legal-v8__hero-side dd {
    margin: 0;
    color: #556b8f;
}

body.t2-theme.t2-inner .t2-legal-v8__page-nav {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.t2-theme.t2-inner .t2-legal-v8__page-nav a {
    border: 1px solid #d1dcf0;
    color: #2c4d82;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
}

body.t2-theme.t2-inner .t2-legal-v8__page-nav a.is-active {
    background: #1f58ce;
    border-color: #1f58ce;
    color: #fff;
}

body.t2-theme.t2-inner .t2-legal-v8__hero-side h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

body.t2-theme.t2-inner .t2-legal-v8__hero-side dl {
    margin: 0;
    display: grid;
    gap: 10px;
}

body.t2-theme.t2-inner .t2-legal-v8__hero-side dt {
    margin: 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6c80a3;
}

body.t2-theme.t2-inner .t2-legal-v8__hero-side dd {
    margin: 3px 0 0;
}

body.t2-theme.t2-inner .t2-legal-v8__hero-side .t2-btn {
    margin-top: 16px;
}

body.t2-theme.t2-inner .t2-legal-v8__anchors {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

body.t2-theme.t2-inner .t2-legal-v8__anchors a {
    border-radius: 12px;
    border: 1px solid #d6e0f1;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #28497e;
    background: #f8fbff;
}

body.t2-theme.t2-inner .t2-legal-v8__sections {
    display: grid;
    gap: 12px;
}

body.t2-theme.t2-inner .t2-legal-v8__section-card {
    padding: 20px;
}

body.t2-theme.t2-inner .t2-legal-v8__section-card h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

body.t2-theme.t2-inner .t2-legal-v8__section-card p {
    margin: 0 0 10px;
    color: #4e668d;
    line-height: 1.62;
}

body.t2-theme.t2-inner .t2-legal-v8__section-card ul {
    margin: 0;
    padding-left: 18px;
    color: #415b84;
    display: grid;
    gap: 6px;
}

body.t2-theme.t2-inner .t2-legal-v8__prohibited-list {
    display: grid;
    gap: 10px;
}

body.t2-theme.t2-inner .t2-legal-v8__prohibited-item {
    overflow: hidden;
}

body.t2-theme.t2-inner .t2-legal-v8__prohibited-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #234273;
}

body.t2-theme.t2-inner .t2-legal-v8__marker {
    width: 22px;
    height: 22px;
    border: 1px solid #c5d5ee;
    border-radius: 999px;
    position: relative;
    flex-shrink: 0;
}

body.t2-theme.t2-inner .t2-legal-v8__marker::before,
body.t2-theme.t2-inner .t2-legal-v8__marker::after {
    content: "";
    position: absolute;
    background: #2e62c2;
}

body.t2-theme.t2-inner .t2-legal-v8__marker::before {
    width: 10px;
    height: 2px;
    top: 10px;
    left: 5px;
}

body.t2-theme.t2-inner .t2-legal-v8__marker::after {
    width: 2px;
    height: 10px;
    top: 6px;
    left: 9px;
    transition: opacity 0.2s ease;
}

body.t2-theme.t2-inner .t2-legal-v8__prohibited-item[open] .t2-legal-v8__marker::after {
    opacity: 0;
}

body.t2-theme.t2-inner .t2-legal-v8__prohibited-body {
    padding: 0 16px 16px;
}

body.t2-theme.t2-inner .t2-legal-v8__prohibited-body p {
    margin: 0 0 8px;
    color: #536b8f;
}

body.t2-theme.t2-inner .t2-legal-v8__prohibited-body ul {
    margin: 0;
    padding-left: 18px;
    color: #3f5b84;
}

body.t2-theme.t2-inner .t2-legal-v8__cta {
    margin-top: 20px;
    text-align: center;
    padding: 28px;
    background: linear-gradient(135deg, #143067, #1f4d9d);
    color: #d6e5ff;
}

body.t2-theme.t2-inner .t2-legal-v8__cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.08;
}

body.t2-theme.t2-inner .t2-legal-v8__cta p {
    margin: 0 auto 16px;
    max-width: 760px;
    color: #d1ddf8;
}

@media (max-width: 1199px) {
    body.t2-theme.t2-inner .t2-legal-v8__hero {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-legal-v8__anchors {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    body.t2-theme.t2-inner .t2-legal-v8__hero-main,
    body.t2-theme.t2-inner .t2-legal-v8__hero-side,
    body.t2-theme.t2-inner .t2-legal-v8__anchors,
    body.t2-theme.t2-inner .t2-legal-v8__section-card,
    body.t2-theme.t2-inner .t2-legal-v8__prohibited-head,
    body.t2-theme.t2-inner .t2-legal-v8__cta {
        padding: 16px;
        border-radius: 16px;
    }

    body.t2-theme.t2-inner .t2-legal-v8__hero-main h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    body.t2-theme.t2-inner .t2-legal-v8__anchors {
        grid-template-columns: 1fr;
    }

    body.t2-theme.t2-inner .t2-legal-v8__page-nav a,
    body.t2-theme.t2-inner .t2-legal-v8__anchors a {
        text-align: center;
    }

    body.t2-theme.t2-inner .t2-legal-v8__cta .t2-btn {
        width: 100%;
    }
}
