.t6-theme {
    --t6-bg: #f3f1ea;
    --t6-surface: #ffffff;
    --t6-border: #d9d6c8;
    --t6-ink: #10241c;
    --t6-muted: #576058;
    --t6-deep: #0e1a16;
    --t6-accent: #c9701a;
    --t6-accent-2: #e0a13a;
    --t6-ring: rgba(201,112,26, 0.18);
    background: var(--t6-bg);
    color: var(--t6-ink);
    font-family: "Inter", sans-serif;
}

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

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

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

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

.t6-theme .preloader-area-wrap {
    display: none;
}

.t6-theme .preloader-activate.preloader-active {
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.t6-theme .preloader-activate.preloader-active .preloader-area-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    background: #fbfaf6;
}

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

.preloader-area-wrap .t6-loader {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(16,36,28, 0.16);
    border-top-color: #c9701a;
    animation: t6-loader-spin 0.8s linear infinite;
}

.preloader-area-wrap .t6-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 t6-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

.t6-theme .t6-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(252, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(16,36,28, 0.06);
}

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

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

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

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

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

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

.t6-theme .t6-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;
}

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

.t6-theme .t6-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(201,112,26, 0.32);
    color: #fff;
}

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

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

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

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

.t6-theme .t6-footer {
    background: #fbf3ea;
    border-top: 1px solid #d5ede1;
    padding: 58px 0 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.t6-theme .t6-mobile-nav__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #f3e7d9;
    background: #fff;
    font-size: 24px;
    line-height: 1;
    color: #2c6a4b;
}

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

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

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

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

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

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

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

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

.t6-theme .t6-scroll-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(145deg, #d8841d, #dc851b);
    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(216, 132, 29, 0.32);
}

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

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

.t6-inner .t6-page-hero__inner {
    border: 1px solid var(--t6-border);
    border-radius: 20px;
    background: linear-gradient(120deg, #4b3112 0%, #986424 100%);
    padding: 38px 28px;
}

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

.t6-inner .t6-page-hero__lead {
    text-align: center;
    color: rgba(253, 246, 238, 0.92);
    margin-top: 10px;
    font-size: 16px;
}

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

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

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

.t6-inner .t6-services-pack__hero .t6-eyebrow {
    background: #fcf4eb;
    border-color: #fae9d4;
    color: #825b2b;
}

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

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

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

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

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

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

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

.t6-inner .t6-services-tabs__nav-item {
    border: 1px solid var(--t6-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;
}

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

.t6-inner .t6-services-tabs__nav-item.is-active {
    border-color: #ecc99f;
    box-shadow: 0 10px 24px rgba(107, 72, 30, 0.08);
    background: #fefcf9;
}

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

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

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

.t6-inner .t6-services-tabs__nav-copy strong {
    font-size: 17px;
    line-height: 1.2;
    color: #543a1b;
}

.t6-inner .t6-services-tabs__nav-copy small {
    font-size: 13px;
    color: #62967c;
}

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

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

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

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

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

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

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

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

.t6-inner .t6-services-tabs__panel li {
    color: #386d53;
    line-height: 1.55;
    margin-bottom: 7px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.t6-inner .t6-services-sidebar__menu li.active a,
.t6-inner .t6-services-sidebar__menu li a:hover {
    border-color: #f0d7b9;
    background: #fdf7f0;
}

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .ht-btn--default,
body.t6-theme.t6-inner .btn-outline,
body.t6-theme.t6-inner .ht-btn--transparent,
body.t6-theme.t6-login .ht-btn--default,
body.t6-theme.t6-login .btn-outline,
body.t6-theme.t6-login .ht-btn--transparent,
body.t6-theme.t6-inner .btn.btn-primary,
body.t6-theme.t6-inner .btn.btn-secondary,
body.t6-theme.t6-login .btn.btn-primary,
body.t6-theme.t6-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.t6-theme.t6-inner .ht-btn--default,
body.t6-theme.t6-login .ht-btn--default,
body.t6-theme.t6-inner .btn.btn-primary,
body.t6-theme.t6-login .btn.btn-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--t6-accent) 0%, var(--t6-accent-2) 100%);
    box-shadow: 0 14px 24px rgba(201,112,26, 0.24);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .t6-inner .t6-services-tabs__mobile-trigger em {
        font-style: normal;
        font-size: 26px;
        color: #5c9c7c;
        line-height: 1;
    }

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

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

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

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

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

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

.t6-home {
    --t6-bg: #f3f1ea;
    --t6-surface: #ffffff;
    --t6-border: #d9d6c8;
    --t6-ink: #10241c;
    --t6-muted: #576058;
    --t6-deep: #0e1a16;
    --t6-accent: #c9701a;
    --t6-accent-2: #e0a13a;
    --t6-ring: rgba(201,112,26, 0.18);
    background: var(--t6-bg);
    color: var(--t6-ink);
    font-family: "Inter", sans-serif;
}

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

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

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

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

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

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

.t6-home .t6-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(252, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(16,36,28, 0.06);
}

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

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

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

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

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

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

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

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

.t6-home .t6-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;
}

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

.t6-home .t6-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(201,112,26, 0.32);
    color: #fff;
}

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

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

.t6-home .t6-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(--t6-accent);
}

.t6-home .t6-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: #307452;
    background: #fdf5eb;
    border: 1px solid #faecdb;
}

/* legacy floship home-hero block removed — replaced by rail hero (plugin_v6/first.php + appended .t6-hero* layer) */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.t6-home .t6-proof-card strong {
    display: block;
    margin-top: 12px;
    color: #34674e;
    font-size: 13px;
    font-weight: 700;
}

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

.t6-home .t6-quote-cta__box {
    background: linear-gradient(145deg, #482e0f 0%, #9e6826 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;
}

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

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

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

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

.t6-home .t6-footer {
    background: #fbf3ea;
    border-top: 1px solid #d5ede1;
    padding: 58px 0 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.t6-home .t6-mobile-nav__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #f3e7d9;
    background: #fff;
    font-size: 24px;
    line-height: 1;
    color: #2c6a4b;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-calc-card__head {
    background: linear-gradient(145deg, #462d0f 0%, #70491a 100%);
    padding: 26px 30px;
}

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

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

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

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

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

body.t6-theme.t6-inner .t6-calc-form .input-group-text {
    background: #fdf8f1;
    color: #3c8862;
    font-weight: 700;
}

body.t6-theme.t6-inner .t6-calc-form .form-control:focus,
body.t6-theme.t6-inner .t6-contact-page__form input:focus,
body.t6-theme.t6-inner .t6-contact-page__form textarea:focus {
    border-color: #ebc89d;
    box-shadow: 0 0 0 3px rgba(201,112,26, 0.12);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-contact-v3__hero-panel {
    background: linear-gradient(165deg, #462d0f 0%, #70491a 100%);
    padding: 24px;
}

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

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

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

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

body.t6-theme.t6-inner .t6-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.t6-theme.t6-inner .t6-contact-v3__hero-panel dd a {
    color: #fff;
}

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

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

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

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

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

body.t6-theme.t6-inner .t6-contact-v3__action-card p {
    margin: 0;
    color: #53846c;
    line-height: 1.6;
}

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

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

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

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

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

body.t6-theme.t6-inner .t6-contact-v3__form .form-message {
    display: none;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

body.t6-theme.t6-inner .t6-contact-v3__form .form-message.is-visible {
    display: block;
}

body.t6-theme.t6-inner .t6-contact-v3__form .form-message.success {
    color: #166534;
    background: linear-gradient(180deg, rgba(240, 253, 244, 0.98), rgba(220, 252, 231, 0.96));
    border-color: rgba(34, 197, 94, 0.28);
    box-shadow: 0 14px 30px rgba(34, 197, 94, 0.12);
}

body.t6-theme.t6-inner .t6-contact-v3__form .form-message.error {
    color: #991b1b;
    background: linear-gradient(180deg, rgba(254, 242, 242, 0.98), rgba(254, 226, 226, 0.96));
    border-color: rgba(239, 68, 68, 0.24);
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.12);
}

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-contact-v3__field input:focus,
body.t6-theme.t6-inner .t6-contact-v3__field textarea:focus {
    border-color: #ebc89d;
    box-shadow: 0 0 0 3px rgba(201,112,26, 0.12);
}

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-contact-v3__operations-card p {
    margin: 0 0 12px;
    color: #588970;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-calc-v3__hero-side {
    background: linear-gradient(165deg, #462d0f 0%, #70491a 100%);
    padding: 24px;
}

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-calc-v3__result-head p,
body.t6-theme.t6-inner .t6-calc-v3__input-head p {
    margin: 0;
    color: #588970;
}

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

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

body.t6-theme.t6-inner .t6-calc-v3__form .radio {
    background: #fefaf6;
}

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-calc-v3__notes p {
    margin: 0;
    color: #588970;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-about-v4__pillar p {
    margin: 0;
    color: #578970;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-faq-v4__hero-side {
    background: linear-gradient(165deg, #462d0f 0%, #70491a 100%);
    padding: 24px;
}

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-faq-v4__section-head p {
    margin: 8px 0 0;
    color: #568970;
}

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

body.t6-theme.t6-inner .t6-faq-v4__item {
    border: 1px solid #f6e7d5;
    border-radius: 14px;
    background: #fefcfa;
    overflow: hidden;
}

body.t6-theme.t6-inner .t6-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: #23563d;
}

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-faq-v4__answer p {
    margin: 0;
    color: #53846c;
    line-height: 1.64;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.t6-theme .t6-team-v2__meta p {
    margin: 0;
    color: #5c8b74;
    font-weight: 600;
}

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

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

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

body.t6-theme .t6-proof-v2__card p {
    margin: 0;
    color: #56876e;
    line-height: 1.62;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.t6-theme .t6-team-v3__meta p {
    margin: 0;
    color: #588970;
    line-height: 1.56;
}

body.t6-theme .t6-team-v3__meta strong {
    margin-top: 2px;
    color: #7f5625;
    font-size: 14px;
}

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

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

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

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

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

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

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

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

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

body.t6-theme .t6-proof-v3__card p {
    margin: 0;
    color: #588970;
    line-height: 1.63;
}

body.t6-theme .t6-proof-v3__card strong {
    display: block;
    margin-top: 10px;
    color: #7f5727;
    font-size: 14px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-pricing-v5__hero-side {
    background: linear-gradient(165deg, #462d0f 0%, #70491a 100%);
    padding: 22px;
}

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

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

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

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

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

body.t6-theme.t6-inner .t6-pricing-v5__plan.is-featured,
body.t6-theme.t6-inner .t6-plans-v5__card.is-featured {
    background: linear-gradient(165deg, #462d0f 0%, #70491a 100%);
    border-color: rgba(255, 255, 255, 0.16);
}

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

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-pricing-v5__included-head p {
    margin: 0 0 10px;
    color: #588970;
}

body.t6-theme.t6-inner .t6-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.t6-theme.t6-inner .t6-pricing-v5__included li {
    position: relative;
    padding-left: 20px;
    color: #347354;
    line-height: 1.55;
}

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-pricing-v5__group li strong {
    color: #23563d;
    font-size: 15px;
    line-height: 1.52;
}

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

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

body.t6-theme.t6-inner .t6-plans-v5__compare-head p {
    margin: 0 0 10px;
    color: #588970;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-stores-v6__hero-main p,
body.t6-theme.t6-inner .t6-stores-v6__hero-side p {
    margin: 0;
    color: #588970;
}

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-stores-v6__menu a,
body.t6-theme.t6-inner .t6-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: #367455;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

body.t6-theme.t6-inner .t6-stores-v6__menu a:hover,
body.t6-theme.t6-inner .t6-stores-v6__links a:hover {
    background: #fef9f4;
    color: #744c1c;
}

body.t6-theme.t6-inner .t6-stores-v6__menu a.is-active,
body.t6-theme.t6-inner .t6-stores-v6__links a.is-active {
    background: linear-gradient(135deg, #d78521, #e89d42);
    color: #fff;
    border-color: #d78521;
}

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-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: #885b24;
    background: #fcf4eb;
}

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

body.t6-theme.t6-inner .t6-stores-v6__card p {
    margin: 0;
    color: #598b72;
    line-height: 1.58;
}

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

body.t6-theme.t6-inner .t6-stores-v6__cta {
    margin-top: 20px;
    background: linear-gradient(135deg, #664113, #99621f);
    color: #fbefe0;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
}

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

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

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

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

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

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

    body.t6-theme.t6-inner .t6-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: #835823;
    }

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-auth-v7__hero-main p,
body.t6-theme.t6-inner .t6-auth-v7__hero-side p {
    margin: 0;
    color: #598b72;
}

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

body.t6-theme.t6-inner .t6-auth-v7__hero-points li {
    position: relative;
    padding-left: 18px;
    color: #6f4b20;
}

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

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

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

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-auth-v7__field .form-control:focus {
    border-color: #e89d41;
    box-shadow: 0 0 0 4px rgba(232, 157, 65, 0.14);
}

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

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

body.t6-theme.t6-inner .t6-auth-v7__switch {
    margin: 14px 0 0;
    color: #61927a;
}

body.t6-theme.t6-inner .t6-auth-v7__switch a {
    color: #ce7f1f;
    font-weight: 700;
}

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

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

body.t6-theme.t6-inner .t6-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.t6-theme.t6-inner .t6-auth-v7__hero,
    body.t6-theme.t6-inner .t6-auth-v7__section {
        grid-template-columns: 1fr;
    }
}

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

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

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-legal-v8__hero-main p,
body.t6-theme.t6-inner .t6-legal-v8__hero-side dd {
    margin: 0;
    color: #598b72;
}

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

body.t6-theme.t6-inner .t6-legal-v8__page-nav a {
    border: 1px solid #f0e2d1;
    color: #327c57;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
}

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

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-legal-v8__anchors a {
    border-radius: 12px;
    border: 1px solid #d8efe3;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #7e5728;
    background: #fefcf9;
}

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

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

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

body.t6-theme.t6-inner .t6-legal-v8__section-card p {
    margin: 0 0 10px;
    color: #53886e;
    line-height: 1.62;
}

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

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

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

body.t6-theme.t6-inner .t6-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: #734f23;
}

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

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

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

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

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

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

body.t6-theme.t6-inner .t6-legal-v8__prohibited-body p {
    margin: 0 0 8px;
    color: #588a71;
}

body.t6-theme.t6-inner .t6-legal-v8__prohibited-body ul {
    margin: 0;
    padding-left: 18px;
    color: #447f62;
}

body.t6-theme.t6-inner .t6-legal-v8__cta {
    margin-top: 20px;
    text-align: center;
    padding: 28px;
    background: linear-gradient(135deg, #674214, #9d641f);
    color: #faecdb;
}

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

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

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

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

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

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

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

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

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

/* =====================================================================
   template_6 "rail" design layer — appended overrides (Oswald + mono)
   ===================================================================== */
.t6-theme {
  --t6-green: #1f4d39;
  --t6-green-deep: #14352a;
}
.t6-theme h1, .t6-theme h2, .t6-theme h3, .t6-theme h4 {
  font-weight: 600;
  letter-spacing: -0.005em;
}
.t6-mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
}
.t6-kicker {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t6-accent);
  padding-left: 22px;
  position: relative;
  margin-bottom: 14px;
}
.t6-kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 16px; height: 2px;
  background: var(--t6-accent);
  transform: translateY(-50%);
}

/* ---- rail strip (top bar) ---- */
.t6-railstrip {
  background: var(--t6-deep);
  color: #cfd8d0;
  font-size: 13px;
  border-bottom: 2px solid var(--t6-accent);
}
.t6-railstrip__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 38px;
}
.t6-railstrip__code { color: var(--t6-accent-2); font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; }
.t6-railstrip__msg { flex: 1; opacity: 0.8; }
.t6-railstrip__tel { font-weight: 700; color: #fff; }
.t6-railstrip__tel:hover { color: var(--t6-accent-2); }
@media (max-width: 860px) { .t6-railstrip__msg { display: none; } }

/* ---- header tweaks ---- */
.t6-theme .t6-header { background: var(--t6-surface); border-bottom: 1px solid var(--t6-border); }
.t6-theme .t6-header__login { font-weight: 600; font-size: 14px; color: var(--t6-ink); }
.t6-theme .t6-header__login:hover { color: var(--t6-accent); }
.t6-theme .t6-nav a { font-family: "Oswald", sans-serif; }

/* ---- buttons: ensure contrast on amber ---- */
.t6-theme .t6-btn { font-family: "Oswald", sans-serif; border-radius: 4px; letter-spacing: 0.02em; }
.t6-theme .t6-btn-primary { background: var(--t6-accent); color: #fff; border-color: var(--t6-accent); }
.t6-theme .t6-btn-primary:hover { background: #a85a12; border-color: #a85a12; color: #fff; }
.t6-theme .t6-btn-ghost {
  background: transparent; color: var(--t6-ink);
  border: 1px solid var(--t6-ink); padding: 12px 22px; border-radius: 4px;
  font-family: "Oswald", sans-serif; font-weight: 600; display: inline-flex; align-items: center;
}
.t6-theme .t6-btn-ghost:hover { background: var(--t6-ink); color: #fff; }

/* ---- HERO ---- */
.t6-hero {
  background: linear-gradient(160deg, var(--t6-green-deep) 0%, var(--t6-deep) 70%);
  color: #eef2ec;
  padding: clamp(40px, 6vw, 84px) 0;
  border-bottom: 3px solid var(--t6-accent);
}
.t6-hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.t6-hero .t6-hero__title { color: #fff; font-size: clamp(34px, 5vw, 60px); line-height: 1.04; max-width: 16ch; }
.t6-hero .t6-hero__lead { color: rgba(238,242,236,0.82); margin-top: 18px; max-width: 54ch; font-size: 17px; }
.t6-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 30px; }
.t6-hero .t6-btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.t6-hero .t6-btn-ghost:hover { background: #fff; color: var(--t6-ink); }
.t6-hero__board { display: flex; flex-wrap: wrap; gap: 26px; margin: 0; }
.t6-hero__board div { border-left: 2px solid var(--t6-accent); padding-left: 12px; }
.t6-hero__board dt { font-family: "JetBrains Mono", monospace; font-size: 26px; font-weight: 700; color: var(--t6-accent-2); }
.t6-hero__board dd { margin: 2px 0 0; font-size: 13px; color: rgba(238,242,236,0.7); }
.t6-hero__ticket { background: #fbfaf6; color: var(--t6-ink); border-radius: 8px; padding: 24px; border-top: 4px solid var(--t6-accent); box-shadow: 0 24px 50px rgba(0,0,0,0.28); }
.t6-hero__ticket-head { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--t6-muted); margin-bottom: 10px; }
.t6-hero__ticket-no { color: var(--t6-accent); }
.t6-hero__ticket p { font-size: 14px; margin-bottom: 14px; }
.t6-hero__form label { display: block; margin-bottom: 12px; }
.t6-hero__form label span { display: block; font-size: 11px; font-weight: 700; color: var(--t6-muted); margin-bottom: 4px; }
.t6-hero__form input, .t6-hero__form select {
  width: 100%; padding: 11px 12px; border: 1px solid var(--t6-border);
  border-radius: 4px; background: #fff; color: var(--t6-ink); font-family: "Inter", sans-serif;
}
.t6-hero__form-btn { width: 100%; margin-top: 4px; }
@media (max-width: 900px) { .t6-hero__grid { grid-template-columns: 1fr; } }

/* ---- RIBBON quote ---- */
.t6-ribbon { background: var(--t6-accent); color: #2a1a06; }
.t6-ribbon__inner { display: flex; align-items: center; gap: 22px; padding: 22px 0; flex-wrap: wrap; }
.t6-ribbon__label { font-size: 12px; font-weight: 700; background: rgba(0,0,0,0.18); color: #fff; padding: 5px 9px; border-radius: 3px; }
.t6-ribbon__quote { flex: 1; font-size: clamp(17px, 2.2vw, 22px); font-weight: 600; color: #2a1a06; min-width: 260px; }
.t6-ribbon__author { font-size: 13px; font-weight: 700; color: #4a3414; }

/* ---- INTRO ---- */
.t6-intro__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.t6-intro__copy h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.t6-intro__pillars { display: grid; gap: 16px; }
.t6-pillar { background: var(--t6-surface); border: 1px solid var(--t6-border); border-left: 3px solid var(--t6-accent); border-radius: 6px; padding: 20px 22px; }
.t6-pillar__no { display: block; color: var(--t6-accent); font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.t6-pillar h3 { font-size: 20px; margin-bottom: 6px; }
@media (max-width: 860px) { .t6-intro__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---- CONSIST (services) ---- */
.t6-consist { background: var(--t6-bg); }
.t6-consist__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.t6-consist__head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.t6-consist__list { display: grid; gap: 0; border: 1px solid var(--t6-border); border-radius: 8px; overflow: hidden; background: var(--t6-surface); }
.t6-car { display: flex; align-items: center; gap: 22px; padding: 22px 26px; border-bottom: 1px solid var(--t6-border); transition: background 0.15s; }
.t6-car:last-child { border-bottom: 0; }
.t6-car:hover { background: #faf8f1; }
.t6-car__no { font-size: 22px; font-weight: 700; color: var(--t6-accent); min-width: 42px; }
.t6-car__body { flex: 1; }
.t6-car__body h3 { font-size: 21px; margin-bottom: 3px; }
.t6-car__body p { font-size: 15px; }
.t6-car__go { font-size: 22px; color: var(--t6-accent); transition: transform 0.15s; }
.t6-car:hover .t6-car__go { transform: translateX(5px); }
@media (max-width: 600px) { .t6-car { flex-wrap: wrap; gap: 10px; } .t6-car__go { display: none; } }

/* ---- CREW (team) ---- */
.t6-crew__head { max-width: 60ch; margin-bottom: 30px; }
.t6-crew__head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 12px; }
.t6-crew__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t6-crew__card { background: var(--t6-surface); border: 1px solid var(--t6-border); border-radius: 8px; overflow: hidden; padding-bottom: 18px; }
.t6-crew__photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--t6-green-deep); }
.t6-crew__photo img { width: 100%; height: 100%; object-fit: cover; }
.t6-crew__role { display: inline-block; margin: 16px 18px 4px; font-size: 11px; font-weight: 700; color: var(--t6-accent); }
.t6-crew__card h3 { margin: 0 18px 6px; font-size: 20px; }
.t6-crew__card p { margin: 0 18px; font-size: 14px; }
@media (max-width: 820px) { .t6-crew__grid { grid-template-columns: 1fr; } }

/* ---- VOICES (testimonials) ---- */
.t6-voices { background: var(--t6-green-deep); color: #eef2ec; }
.t6-voices h2 { color: #fff; }
.t6-voices__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.t6-voices__head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.t6-voices__metric { text-align: right; }
.t6-voices__metric span { font-size: 11px; color: var(--t6-accent-2); }
.t6-voices__metric strong { display: block; font-family: "JetBrains Mono", monospace; font-size: 38px; color: #fff; line-height: 1; }
.t6-voices__metric p { font-size: 13px; color: rgba(238,242,236,0.7); max-width: 28ch; margin-left: auto; }
.t6-voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.t6-voices__card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 22px; }
.t6-voices__card p { color: #e7ece6; font-size: 15px; margin-bottom: 14px; }
.t6-voices__card strong { font-size: 13px; color: var(--t6-accent-2); }
.t6-voices__card--lead { border-top: 3px solid var(--t6-accent); }
@media (max-width: 820px) { .t6-voices__grid { grid-template-columns: 1fr; } .t6-voices__metric { text-align: left; } .t6-voices__metric p { margin-left: 0; } }

/* ---- CTA ---- */
.t6-cta { background: var(--t6-bg); padding-bottom: 70px; }
.t6-cta__box { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; background: linear-gradient(135deg, var(--t6-green) 0%, var(--t6-green-deep) 100%); border-radius: 10px; padding: clamp(28px, 4vw, 44px); border-left: 4px solid var(--t6-accent); }
.t6-cta__copy { flex: 1 1 320px; }
.t6-cta__box .t6-kicker { color: var(--t6-accent-2); }
.t6-cta__box h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); margin-bottom: 10px; }
.t6-cta__box p { color: rgba(238,242,236,0.85); max-width: 56ch; }
.t6-cta__btn { flex: 0 0 auto; }

/* ---- footer route line ---- */
.t6-footer__route { display: flex; gap: 6px; padding: 0 0 0; height: 6px; }
.t6-footer__route span { flex: 1; background: var(--t6-accent); opacity: 0.25; }
.t6-footer__route span:nth-child(odd) { opacity: 0.55; }

/* ---- inner page hero (rail) ---- */
.t6-theme .t6-page-hero { background: var(--t6-green-deep); border-bottom: 3px solid var(--t6-accent); }
.t6-theme .t6-page-hero__title { color: #fff; }
.t6-theme .t6-page-hero__lead { color: rgba(238,242,236,0.8); }
