/* Template 3 — SpediFux-inspired rhythm, distinct from t1/t2. Prefix: t3- */

.t3-theme {
    --t3-bg: #eef4f1;
    --t3-surface: #ffffff;
    --t3-ink: #132722;
    --t3-muted: #3d5a52;
    --t3-border: #c5d9d0;
    --t3-accent: #0f766e;
    --t3-accent-strong: #0d9488;
    --t3-accent-soft: rgba(15, 118, 110, 0.12);
    --t3-warm: #b45309;
    --t3-radius: 14px;
    --t3-radius-sm: 10px;
    --t3-shadow: 0 18px 40px rgba(12, 27, 24, 0.08);
    --t3-font-display: "Fraunces", Georgia, serif;
    --t3-font-ui: "Plus Jakarta Sans", system-ui, sans-serif;
    background: var(--t3-bg);
    color: var(--t3-ink);
    font-family: var(--t3-font-ui);
}

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

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

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

.t3-theme .preloader-area-wrap .t3-loader {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(19, 39, 34, 0.15);
    border-top-color: var(--t3-accent-strong);
    animation: t3-loader-spin 0.75s linear infinite;
}

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

/* ----- Header ----- */
.t3-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(238, 244, 241, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(19, 39, 34, 0.07);
}

.t3-header__top {
    display: none;
    font-size: 13px;
    color: var(--t3-muted);
    border-bottom: 1px solid rgba(19, 39, 34, 0.06);
    padding: 8px 0;
}

.t3-header__top .container {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.t3-header__top a {
    font-weight: 600;
    color: var(--t3-accent);
}

.t3-inner .t3-header__top {
    display: block;
}

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

.t3-header__logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

.t3-header__nav {
    display: none;
    align-items: center;
    gap: 26px;
}

.t3-header__nav a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a3d36;
}

.t3-header__nav a:hover {
    color: var(--t3-accent-strong);
}

.t3-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t3-menu-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-radius-sm);
    background: var(--t3-surface);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.t3-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--t3-ink);
    border-radius: 1px;
}

.t3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.t3-btn-primary {
    background: linear-gradient(135deg, var(--t3-accent) 0%, #14b8a6 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.35);
}

.t3-btn-primary:hover {
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 14px 28px rgba(15, 118, 110, 0.4);
}

.t3-btn-secondary {
    background: var(--t3-surface);
    border-color: var(--t3-border);
    color: var(--t3-ink);
}

.t3-btn-secondary:hover {
    border-color: var(--t3-accent-strong);
    color: var(--t3-accent-strong);
}

.t3-btn-ghost {
    background: transparent;
    color: var(--t3-accent);
    border: none;
    box-shadow: none;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.t3-btn-ghost:hover {
    color: var(--t3-ink);
}

@media (min-width: 992px) {
    .t3-header__nav {
        display: flex;
    }
    .t3-menu-btn {
        display: none;
    }
}

/* ----- Inner page hero ----- */
.t3-page-hero {
    padding: 48px 0 36px;
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.06) 0%, transparent 100%);
    border-bottom: 1px solid rgba(19, 39, 34, 0.06);
}

.t3-page-hero__inner {
    max-width: 800px;
}

.t3-page-hero__title {
    font-family: var(--t3-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-page-hero__lead {
    margin: 0;
    font-size: 1.05rem;
    color: var(--t3-muted);
    line-height: 1.6;
}

/* ----- Home: hero ----- */
.t3-home-hero {
    padding: 56px 0 64px;
}

.t3-home-hero__grid {
    display: grid;
    gap: 40px;
    align-items: start;
}

@media (min-width: 992px) {
    .t3-home-hero__grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 56px;
    }
}

.t3-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t3-accent-strong);
    margin-bottom: 14px;
}

.t3-home-hero h1 {
    font-family: var(--t3-font-display);
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 0 20px;
    color: var(--t3-ink);
}

.t3-home-hero__lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--t3-muted);
    margin: 0 0 28px;
    max-width: 540px;
}

.t3-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.t3-home-hero__note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--t3-muted);
    max-width: 480px;
}

.t3-home-hero__note svg {
    flex-shrink: 0;
    color: var(--t3-accent-strong);
}

.t3-home-hero__card {
    background: var(--t3-surface);
    border-radius: var(--t3-radius);
    padding: 28px;
    box-shadow: var(--t3-shadow);
    border: 1px solid rgba(19, 39, 34, 0.05);
}

.t3-home-hero__card h3 {
    font-family: var(--t3-font-display);
    font-size: 1.35rem;
    margin: 0 0 10px;
}

.t3-home-hero__card p {
    margin: 0 0 18px;
    color: var(--t3-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.t3-home-hero__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t3-home-hero__list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--t3-muted);
}

.t3-home-hero__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--t3-accent-soft);
    border: 2px solid var(--t3-accent-strong);
}

/* ----- Trust ----- */
.t3-home-trust {
    padding: 28px 0 48px;
}

.t3-home-trust__title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t3-muted);
    margin: 0 0 20px;
}

.t3-home-trust__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.t3-home-trust__logo {
    min-width: 120px;
    padding: 14px 20px;
    background: var(--t3-surface);
    border: 1px dashed var(--t3-border);
    border-radius: var(--t3-radius-sm);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--t3-muted);
}

/* ----- Benefits ----- */
.t3-home-benefits {
    padding: 40px 0 56px;
}

.t3-home-benefits__head {
    max-width: 640px;
    margin-bottom: 36px;
}

.t3-home-benefits__head h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin: 0 0 12px;
}

.t3-home-benefits__head p {
    margin: 0;
    color: var(--t3-muted);
    line-height: 1.6;
}

.t3-home-benefits__grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .t3-home-benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.t3-benefit-card {
    background: var(--t3-surface);
    border-radius: var(--t3-radius);
    padding: 26px;
    border: 1px solid rgba(19, 39, 34, 0.06);
    height: 100%;
}

.t3-benefit-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--t3-accent-soft);
    color: var(--t3-accent-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.t3-benefit-card h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.t3-benefit-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--t3-muted);
    line-height: 1.55;
}

/* ----- Steps ----- */
.t3-home-steps {
    padding: 48px 0;
    background: var(--t3-surface);
    border-block: 1px solid rgba(19, 39, 34, 0.06);
}

.t3-home-steps h2 {
    font-family: var(--t3-font-display);
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 36px;
}

.t3-home-steps__grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 992px) {
    .t3-home-steps__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.t3-step-card {
    padding: 24px;
    border-radius: var(--t3-radius);
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
}

.t3-step-card__num {
    font-size: 12px;
    font-weight: 800;
    color: var(--t3-accent-strong);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.t3-step-card h3 {
    font-size: 1.15rem;
    margin: 0 0 10px;
}

.t3-step-card p {
    margin: 0 0 18px;
    font-size: 0.92rem;
    color: var(--t3-muted);
    line-height: 1.55;
}

/* ----- Vision ----- */
.t3-home-vision {
    padding: 56px 0;
}

.t3-home-vision__inner {
    border-radius: calc(var(--t3-radius) + 6px);
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.14) 0%, rgba(180, 83, 9, 0.08) 100%);
    border: 1px solid rgba(19, 39, 34, 0.08);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.t3-home-vision__inner h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 0 0 14px;
}

.t3-home-vision__inner p {
    margin: 0;
    color: var(--t3-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* ----- Dual CTA ----- */
.t3-home-dual {
    padding: 40px 0 56px;
}

.t3-home-dual__grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .t3-home-dual__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.t3-dual-card {
    background: var(--t3-surface);
    padding: 32px;
    border-radius: var(--t3-radius);
    box-shadow: var(--t3-shadow);
    border: 1px solid rgba(19, 39, 34, 0.06);
}

.t3-dual-card h3 {
    font-family: var(--t3-font-display);
    font-size: 1.35rem;
    margin: 0 0 10px;
}

.t3-dual-card p {
    margin: 0 0 20px;
    color: var(--t3-muted);
    line-height: 1.55;
}

/* ----- Testimonials ----- */
.t3-home-quote {
    padding: 48px 0 72px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 118, 110, 0.06) 100%);
}

.t3-home-quote h2 {
    font-family: var(--t3-font-display);
    text-align: center;
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.t3-home-quote__sub {
    text-align: center;
    color: var(--t3-muted);
    margin: 0 0 36px;
    font-size: 0.95rem;
}

.t3-home-quote__grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 992px) {
    .t3-home-quote__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.t3-quote-card {
    background: var(--t3-surface);
    padding: 24px;
    border-radius: var(--t3-radius);
    border: 1px solid rgba(19, 39, 34, 0.07);
}

.t3-quote-card blockquote {
    margin: 0 0 16px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--t3-ink);
}

.t3-quote-card__who {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--t3-muted);
}

/* ----- Footer ----- */
.t3-footer {
    background: #0f1f1c;
    color: rgba(255, 255, 255, 0.88);
    padding: 56px 0 28px;
}

.t3-footer a:hover {
    color: #5eead4;
}

.t3-footer__grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 992px) {
    .t3-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }
}

.t3-footer__logo img {
    max-height: 40px;
    width: auto;
    margin-bottom: 14px;
}

.t3-footer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
}

.t3-footer__meta {
    margin-top: 14px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.t3-footer h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.95);
}

.t3-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t3-footer li {
    margin-bottom: 10px;
}

.t3-footer a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.t3-footer__bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
    .t3-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.t3-footer__bottom a {
    margin-right: 18px;
    color: rgba(255, 255, 255, 0.65);
}

/* ----- Mobile nav ----- */
.t3-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(12, 27, 24, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
}

.t3-mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.t3-mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(400px, 92vw);
    height: 100%;
    background: var(--t3-surface);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s ease;
}

.t3-mobile-nav.active .t3-mobile-nav__panel {
    transform: translateX(0);
}

.t3-mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--t3-border);
}

.t3-mobile-nav__head img {
    max-height: 34px;
}

.t3-mobile-nav__close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--t3-bg);
    border-radius: var(--t3-radius-sm);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--t3-ink);
}

.t3-mobile-nav__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

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

.t3-mobile-nav__body > ul > li {
    border-bottom: 1px solid rgba(19, 39, 34, 0.08);
}

.t3-mobile-nav__body > ul > li > a {
    display: block;
    padding: 14px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.t3-mobile-nav__body .sub-menu {
    padding: 0 0 12px 12px;
}

.t3-mobile-nav__body .sub-menu a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--t3-muted);
}

.t3-mobile-nav__cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Scroll top */
.t3-scroll-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    color: var(--t3-accent-strong);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1100;
    box-shadow: var(--t3-shadow);
}

.t3-scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.t3-scroll-top:hover {
    color: var(--t3-ink);
}

/* Inner: bridge spacing for legacy view wrappers */
.t3-inner .page-content-wrapper {
    padding-top: 0;
}

/* ----- Services overview (t3) ----- */
.t3-services-overview {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.04) 0%, transparent 32%);
}

.t3-services-hero {
    display: grid;
    gap: 28px;
    padding: 24px 0 40px;
    border-bottom: 1px solid rgba(19, 39, 34, 0.08);
    margin-bottom: 8px;
}

@media (min-width: 992px) {
    .t3-services-hero {
        grid-template-columns: 10px minmax(0, 1fr);
        gap: 36px;
        align-items: start;
    }
}

.t3-services-hero__rail {
    display: none;
    width: 100%;
    min-height: 120px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--t3-accent-strong) 0%, rgba(15, 118, 110, 0.35) 100%);
    opacity: 0.85;
}

@media (min-width: 992px) {
    .t3-services-hero__rail {
        display: block;
    }
}

.t3-services-hero__title {
    font-family: var(--t3-font-display);
    font-size: clamp(1.85rem, 4.2vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0 0 16px;
    color: var(--t3-ink);
}

.t3-services-hero__lead {
    margin: 0 0 22px;
    font-size: 1.06rem;
    line-height: 1.65;
    color: var(--t3-muted);
    max-width: 52rem;
}

.t3-services-hero__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.t3-services-hero__tags li {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    color: var(--t3-ink);
}

.t3-services-catalog {
    padding: 48px 0 32px;
}

.t3-services-catalog__head {
    max-width: 40rem;
    margin-bottom: 32px;
}

.t3-services-catalog__title {
    font-family: var(--t3-font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--t3-ink);
}

.t3-services-catalog__sub {
    margin: 0;
    color: var(--t3-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.t3-services-cards {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .t3-services-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .t3-services-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

.t3-services-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 22px 20px;
    min-height: 100%;
    text-decoration: none;
    color: inherit;
    background: var(--t3-surface);
    border: 1px solid rgba(19, 39, 34, 0.08);
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(12, 27, 24, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s ease;
    overflow: hidden;
}

.t3-services-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--t3-accent) 0%, var(--t3-accent-strong) 100%);
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.t3-services-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(12, 27, 24, 0.1);
    border-color: rgba(15, 118, 110, 0.25);
}

.t3-services-card:hover::before {
    opacity: 1;
}

.t3-services-card__index {
    position: absolute;
    right: 14px;
    top: 12px;
    font-family: var(--t3-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(19, 39, 34, 0.06);
    letter-spacing: -0.04em;
    pointer-events: none;
}

.t3-services-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--t3-accent-strong);
    margin-bottom: 14px;
}

.t3-services-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.t3-services-card__kicker {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t3-accent-strong);
    margin-bottom: 6px;
}

.t3-services-card__title {
    font-family: var(--t3-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--t3-ink);
    padding-right: 3rem;
}

.t3-services-card__summary {
    margin: 0 0 14px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--t3-muted);
    flex: 1;
}

.t3-services-card__outcomes {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--t3-muted);
}

.t3-services-card__outcomes li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
}

.t3-services-card__outcomes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--t3-accent);
}

.t3-services-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t3-accent-strong);
}

.t3-services-card__cta-arrow {
    transition: transform 0.2s ease;
}

.t3-services-card:hover .t3-services-card__cta-arrow {
    transform: translateX(4px);
}

.t3-services-stripes {
    padding: 28px 0 48px;
}

.t3-services-stripes__grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 992px) {
    .t3-services-stripes__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

.t3-services-stripe {
    padding: 22px 20px;
    border-radius: 12px;
    background: var(--t3-bg);
    border: 1px dashed rgba(19, 39, 34, 0.12);
}

.t3-services-stripe__title {
    font-family: var(--t3-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-services-stripe p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-services-bottom-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 32px 28px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12) 0%, rgba(19, 39, 34, 0.06) 100%);
    border: 1px solid rgba(15, 118, 110, 0.2);
}

@media (min-width: 768px) {
    .t3-services-bottom-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }
}

.t3-services-bottom-cta__inner h3 {
    font-family: var(--t3-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-services-bottom-cta__inner p {
    margin: 0;
    color: var(--t3-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 36rem;
}

/* ----- Service detail + aside ----- */
.t3-service-page .t3-service-layout {
    display: grid;
    gap: 28px;
    align-items: start;
}

@media (min-width: 992px) {
    .t3-service-page .t3-service-layout {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
        gap: 36px;
    }
}

.t3-service-main {
    background: var(--t3-surface);
    border-radius: 16px;
    border: 1px solid rgba(19, 39, 34, 0.08);
    box-shadow: 0 14px 40px rgba(12, 27, 24, 0.07);
    overflow: hidden;
}

.t3-service-main__media {
    min-height: 200px;
    background-size: cover;
    background-position: center;
}

@media (min-width: 768px) {
    .t3-service-main__media {
        min-height: 260px;
    }
}

.t3-service-main__body {
    padding: 28px 22px 32px;
}

@media (min-width: 768px) {
    .t3-service-main__body {
        padding: 36px 40px 44px;
    }
}

.t3-service-block + .t3-service-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(19, 39, 34, 0.07);
}

.t3-service-block--intro {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.t3-service-block--intro h1 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    color: var(--t3-ink);
}

.t3-service-block--intro p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--t3-muted);
    max-width: 42rem;
}

.t3-service-block h3 {
    font-family: var(--t3-font-display);
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--t3-ink);
}

.t3-service-pillars {
    display: grid;
    gap: 12px;
}

@media (min-width: 768px) {
    .t3-service-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.t3-service-pillar {
    padding: 14px 14px 14px 16px;
    border-left: 3px solid var(--t3-accent);
    background: rgba(15, 118, 110, 0.06);
    border-radius: 0 10px 10px 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--t3-ink);
}

.t3-service-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--t3-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.t3-service-list li + li {
    margin-top: 8px;
}

.t3-service-block--cta {
    margin-top: 32px !important;
    padding: 28px 22px !important;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(15, 118, 110, 0.1) 0%, transparent 55%);
    border: 1px solid rgba(15, 118, 110, 0.18) !important;
}

.t3-service-block--cta h3 {
    margin-bottom: 10px;
}

.t3-service-block--cta p {
    margin: 0 0 18px;
    color: var(--t3-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 36rem;
}

/* Aside */
.t3-service-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .t3-service-aside {
        position: sticky;
        top: 96px;
    }
}

.t3-service-aside__card {
    padding: 22px 20px;
    background: var(--t3-surface);
    border-radius: 14px;
    border: 1px solid var(--t3-border);
    box-shadow: var(--t3-shadow);
}

.t3-service-aside__title {
    font-family: var(--t3-font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: var(--t3-ink);
}

.t3-service-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.t3-service-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--t3-muted);
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.t3-service-nav__link:hover {
    background: rgba(15, 118, 110, 0.08);
    color: var(--t3-ink);
}

.t3-service-nav__link.is-active {
    background: rgba(15, 118, 110, 0.12);
    border-color: rgba(15, 118, 110, 0.25);
    color: var(--t3-ink);
}

.t3-service-nav__label {
    text-align: left;
    line-height: 1.3;
}

.t3-service-nav__num {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--t3-accent-strong);
    opacity: 0.8;
}

.t3-service-aside__card--contact .t3-service-aside__title {
    margin-bottom: 14px;
}

.t3-service-contact {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.t3-service-contact__row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.t3-service-contact__row:last-child {
    margin-bottom: 0;
}

.t3-service-contact__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--t3-accent-strong);
}

.t3-service-contact__icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.t3-service-contact__key {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t3-muted);
    margin-bottom: 4px;
}

.t3-service-contact__val {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--t3-ink);
}

.t3-service-contact__val a {
    color: var(--t3-accent-strong);
    font-weight: 600;
    word-break: break-word;
}

.t3-service-aside__cta {
    width: 100%;
    text-align: center;
}

/* ----- Freight calculator (t3) ----- */
.t3-inner .t3-calc-page {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.045) 0%, transparent 40%);
}

.t3-inner .t3-calc-hero {
    display: grid;
    gap: 24px;
    padding: 8px 0 32px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(19, 39, 34, 0.07);
}

@media (min-width: 992px) {
    .t3-inner .t3-calc-hero {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
        gap: 40px;
        align-items: stretch;
    }
}

.t3-inner .t3-calc-hero__main h1 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.85rem, 3.8vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    margin: 0 0 14px;
    color: var(--t3-ink);
}

.t3-inner .t3-calc-hero__main > p {
    margin: 0 0 18px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--t3-muted);
    max-width: 40rem;
}

.t3-inner .t3-calc-hero__points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.t3-inner .t3-calc-hero__points li {
    position: relative;
    padding-left: 22px;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--t3-ink);
}

.t3-inner .t3-calc-hero__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--t3-accent-strong);
    transform: rotate(45deg);
}

.t3-inner .t3-calc-hero__aside {
    padding: 22px 20px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 12px 36px rgba(12, 27, 24, 0.07);
    align-self: start;
}

.t3-inner .t3-calc-hero__aside h3 {
    font-family: var(--t3-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--t3-ink);
}

.t3-inner .t3-calc-hero__aside p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-calc-shell {
    margin-top: 8px;
    margin-bottom: 28px;
}

.t3-inner .t3-calc-card {
    border-radius: 16px;
    border: 1px solid rgba(19, 39, 34, 0.08);
    box-shadow: 0 16px 48px rgba(12, 27, 24, 0.08);
    overflow: hidden;
    background: var(--t3-surface);
}

.t3-inner .t3-calc-card__head {
    padding: 26px 22px 22px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.09) 0%, transparent 55%);
    border-bottom: 1px solid rgba(19, 39, 34, 0.06);
}

@media (min-width: 768px) {
    .t3-inner .t3-calc-card__head {
        padding: 32px 36px 26px;
    }
}

.t3-inner .t3-calc-card__head .title,
.t3-inner .t3-calc-card__head h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-calc-card__head p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--t3-muted);
    max-width: 44rem;
}

.t3-inner .t3-calc-card__body {
    padding: 24px 20px 28px;
}

@media (min-width: 768px) {
    .t3-inner .t3-calc-card__body {
        padding: 32px 36px 40px;
    }
}

.t3-inner .t3-calc-result-head,
.t3-inner .t3-calc-input-head {
    margin-bottom: 22px;
    padding: 20px 18px;
    border-radius: 12px;
    border: 1px solid rgba(15, 118, 110, 0.2);
    border-left-width: 4px;
    background: rgba(15, 118, 110, 0.06);
}

.t3-inner .t3-calc-result-head h3,
.t3-inner .t3-calc-input-head h3 {
    font-family: var(--t3-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 8px 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-calc-result-head p,
.t3-inner .t3-calc-input-head p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--t3-muted);
}

.t3-inner .t3-calc-state-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t3-accent-strong);
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--t3-surface);
    border: 1px solid rgba(15, 118, 110, 0.25);
}

.t3-inner .t3-calc-form label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t3-muted);
    margin-bottom: 6px;
}

.t3-inner .t3-calc-form .form-control,
.t3-inner .t3-calc-form select.form-control {
    border-radius: 10px;
    border: 1px solid var(--t3-border);
    font-size: 0.95rem;
    min-height: 44px;
    color: var(--t3-ink);
    background: var(--t3-surface);
}

.t3-inner .t3-calc-form .form-control:focus,
.t3-inner .t3-calc-form select:focus {
    border-color: var(--t3-accent-strong);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.2);
    outline: none;
}

.t3-inner .t3-calc-form .input-group-text {
    border-radius: 10px 0 0 10px;
    background: var(--t3-bg);
    border-color: var(--t3-border);
    color: var(--t3-muted);
    font-weight: 700;
    font-size: 0.8rem;
}

.t3-inner .t3-calc-form .input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.t3-inner .t3-calc-form .form-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.t3-inner .t3-calc-form .shipping_dhl + .shipping_dhl {
    margin-top: 8px;
}

.t3-inner .t3-calc-form .radio {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t3-inner .t3-calc-form .radio label {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--t3-ink);
}

.t3-inner .t3-calc-form input[disabled],
.t3-inner .t3-calc-form select[disabled] {
    background: rgba(19, 39, 34, 0.04);
    opacity: 0.95;
}

.t3-inner .t3-calc-row {
    margin-bottom: 4px;
}

.t3-inner .t3-calc-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.t3-inner .t3-calc-notes {
    display: grid;
    gap: 16px;
    padding: 8px 0 32px;
}

@media (min-width: 768px) {
    .t3-inner .t3-calc-notes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

.t3-inner .t3-calc-notes article {
    padding: 22px 20px;
    border-radius: 12px;
    background: var(--t3-bg);
    border: 1px solid rgba(19, 39, 34, 0.08);
}

.t3-inner .t3-calc-notes h4 {
    font-family: var(--t3-font-display);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--t3-ink);
}

.t3-inner .t3-calc-notes p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

@media (max-width: 767px) {
    .t3-inner .t3-calc-card__body {
        padding-bottom: 24px;
    }

    .t3-inner .t3-calc-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .t3-inner .t3-calc-actions .t3-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ----- Contact page (t3) ----- */
.t3-inner .t3-contact-page {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.04) 0%, transparent 35%);
}

.t3-inner .t3-contact-hero {
    display: grid;
    gap: 24px;
    padding: 8px 0 36px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(19, 39, 34, 0.07);
}

@media (min-width: 992px) {
    .t3-inner .t3-contact-hero {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        gap: 36px;
        align-items: start;
    }
}

.t3-inner .t3-contact-hero__main h1 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.85rem, 3.8vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    margin: 0 0 14px;
    color: var(--t3-ink);
}

.t3-inner .t3-contact-hero__main > p {
    margin: 0 0 18px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--t3-muted);
    max-width: 40rem;
}

.t3-inner .t3-contact-hero__points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.t3-inner .t3-contact-hero__points li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--t3-ink);
}

.t3-inner .t3-contact-hero__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--t3-accent-strong);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.2);
}

.t3-inner .t3-contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.t3-inner .t3-contact-hero__panel {
    padding: 24px 22px;
    border-radius: 16px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 14px 40px rgba(12, 27, 24, 0.08);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.t3-inner .t3-contact-hero__panel h3 {
    font-family: var(--t3-font-display);
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--t3-ink);
}

.t3-inner .t3-contact-hero__panel > p {
    margin: 0 0 18px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-contact-hero__dl {
    margin: 0;
}

.t3-inner .t3-contact-hero__dl > div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 8px 14px;
    padding: 12px 0;
    border-top: 1px dashed rgba(19, 39, 34, 0.12);
}

.t3-inner .t3-contact-hero__dl > div:first-of-type {
    border-top: none;
    padding-top: 0;
}

.t3-inner .t3-contact-hero__dl dt {
    margin: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t3-muted);
}

.t3-inner .t3-contact-hero__dl dd {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--t3-ink);
}

.t3-inner .t3-contact-hero__dl dd a {
    color: var(--t3-accent-strong);
    font-weight: 600;
    word-break: break-word;
}

.t3-inner .t3-contact-channels {
    display: grid;
    gap: 16px;
    padding: 28px 0;
}

@media (min-width: 768px) {
    .t3-inner .t3-contact-channels {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

.t3-inner .t3-contact-channel {
    position: relative;
    padding: 22px 20px 20px;
    border-radius: 14px;
    background: var(--t3-bg);
    border: 1px solid rgba(19, 39, 34, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.t3-inner .t3-contact-channel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--t3-accent) 0%, var(--t3-accent-strong) 100%);
    opacity: 0.85;
}

.t3-inner .t3-contact-channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(12, 27, 24, 0.08);
}

.t3-inner .t3-contact-channel__icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--t3-accent-strong);
    margin-bottom: 14px;
}

.t3-inner .t3-contact-channel__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.t3-inner .t3-contact-channel h4 {
    font-family: var(--t3-font-display);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-contact-channel p {
    margin: 0 0 12px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--t3-muted);
}

.t3-inner .t3-contact-channel a {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t3-accent-strong);
    text-decoration: none;
}

.t3-inner .t3-contact-channel a:hover {
    color: var(--t3-ink);
}

.t3-inner .t3-contact-form-wrap {
    display: grid;
    gap: 24px;
    padding: 16px 0 40px;
    align-items: start;
}

@media (min-width: 992px) {
    .t3-inner .t3-contact-form-wrap {
        grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
        gap: 40px;
    }

    .t3-inner .t3-contact-form-wrap__intro {
        position: sticky;
        top: 96px;
    }
}

.t3-inner .t3-contact-form-wrap__intro h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-contact-form-wrap__intro p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-contact-form-wrap__panel {
    padding: 28px 22px 32px;
    border-radius: 16px;
    background: var(--t3-surface);
    border: 1px solid rgba(19, 39, 34, 0.08);
    box-shadow: 0 18px 50px rgba(12, 27, 24, 0.09);
}

@media (min-width: 768px) {
    .t3-inner .t3-contact-form-wrap__panel {
        padding: 36px 36px 40px;
    }
}

.t3-inner .t3-contact-form__grid {
    display: grid;
    gap: 18px;
}

@media (min-width: 768px) {
    .t3-inner .t3-contact-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 24px;
    }
}

.t3-inner .t3-contact-field--full {
    grid-column: 1 / -1;
}

.t3-inner .t3-contact-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t3-muted);
}

.t3-inner .t3-contact-field input,
.t3-inner .t3-contact-field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--t3-border);
    padding: 12px 14px;
    font-size: 0.95rem;
    color: var(--t3-ink);
    background: var(--t3-surface);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.t3-inner .t3-contact-field textarea {
    min-height: 140px;
    resize: vertical;
}

.t3-inner .t3-contact-field input:focus,
.t3-inner .t3-contact-field textarea:focus {
    outline: none;
    border-color: var(--t3-accent-strong);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.2);
}

.t3-inner .t3-contact-form__notice {
    display: none;
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.t3-inner .t3-contact-form__notice.success {
    display: block;
    background: rgba(15, 118, 110, 0.12);
    border: 1px solid rgba(15, 118, 110, 0.35);
    color: var(--t3-ink);
}

.t3-inner .t3-contact-form__notice.error {
    display: block;
    background: rgba(185, 28, 28, 0.08);
    border: 1px solid rgba(185, 28, 28, 0.28);
    color: #7f1d1d;
}

.t3-inner .t3-contact-form__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.t3-inner .t3-contact-map {
    display: grid;
    gap: 20px;
    padding: 24px 0 40px;
    align-items: stretch;
}

@media (min-width: 992px) {
    .t3-inner .t3-contact-map {
        grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
        gap: 28px;
    }

    .t3-inner .t3-contact-map__card {
        order: 1;
    }

    .t3-inner .t3-contact-map__media {
        order: 2;
    }
}

.t3-inner .t3-contact-map__media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--t3-border);
    min-height: 280px;
    background: var(--t3-bg);
}

.t3-inner .t3-contact-map__media iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

.t3-inner .t3-contact-map__card {
    padding: 26px 22px;
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(15, 118, 110, 0.1) 0%, var(--t3-surface) 45%);
    border: 1px solid rgba(15, 118, 110, 0.2);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.t3-inner .t3-contact-map__card h3 {
    font-family: var(--t3-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--t3-ink);
}

.t3-inner .t3-contact-map__card > p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-contact-map__facts {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.t3-inner .t3-contact-map__facts li {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(19, 39, 34, 0.08);
    font-size: 0.88rem;
}

.t3-inner .t3-contact-map__facts li:last-child {
    border-bottom: none;
}

.t3-inner .t3-contact-map__facts span {
    color: var(--t3-muted);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.t3-inner .t3-contact-map__facts strong {
    font-weight: 600;
    color: var(--t3-ink);
}

.t3-inner .t3-contact-map__facts a {
    color: var(--t3-accent-strong);
}

.t3-inner .t3-contact-map__card .t3-btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 767px) {
    .t3-inner .t3-contact-hero__actions {
        flex-direction: column;
    }

    .t3-inner .t3-contact-hero__actions .t3-btn {
        width: 100%;
        justify-content: center;
    }

    .t3-inner .t3-contact-form__actions {
        flex-direction: column;
    }

    .t3-inner .t3-contact-form__actions .t3-btn {
        width: 100%;
        justify-content: center;
    }

    .t3-inner .t3-contact-map__facts li {
        grid-template-columns: 1fr;
    }
}

/* ----- About page (t3) ----- */
.t3-inner .t3-about-page {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.04) 0%, transparent 42%);
}

.t3-inner .t3-about-hero {
    display: grid;
    gap: 28px;
    padding: 12px 0 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .t3-inner .t3-about-hero {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
        gap: 48px;
    }
}

.t3-inner .t3-about-hero__copy h1 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.9rem, 4vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 14px;
    color: var(--t3-ink);
}

.t3-inner .t3-about-hero__copy > p {
    margin: 0 0 22px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--t3-muted);
    max-width: 36rem;
}

.t3-inner .t3-about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.t3-inner .t3-about-hero__visual {
    position: relative;
    min-height: 240px;
}

@media (min-width: 992px) {
    .t3-inner .t3-about-hero__visual {
        min-height: 380px;
    }
}

.t3-inner .t3-about-hero__frame {
    position: absolute;
    inset: 12% 6% 8% 14%;
    border-radius: 20px;
    border: 2px solid rgba(15, 118, 110, 0.35);
    transform: rotate(-3deg);
    pointer-events: none;
    z-index: 0;
}

.t3-inner .t3-about-hero__photo {
    position: relative;
    z-index: 1;
    min-height: 240px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 60px rgba(12, 27, 24, 0.18);
    border: 1px solid rgba(19, 39, 34, 0.08);
}

@media (min-width: 992px) {
    .t3-inner .t3-about-hero__photo {
        min-height: 380px;
        transform: translateX(-8px) rotate(1.5deg);
    }
}

.t3-inner .t3-about-pillars {
    display: grid;
    gap: 16px;
    padding: 20px 0 36px;
}

@media (min-width: 768px) {
    .t3-inner .t3-about-pillars {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

.t3-inner .t3-about-pillar {
    position: relative;
    padding: 24px 20px 22px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 8px 28px rgba(12, 27, 24, 0.06);
    overflow: hidden;
}

.t3-inner .t3-about-pillar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--t3-accent-strong), transparent);
    opacity: 0.5;
}

.t3-inner .t3-about-pillar__index {
    display: block;
    font-family: var(--t3-font-display);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(15, 118, 110, 0.2);
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.t3-inner .t3-about-pillar h3 {
    font-family: var(--t3-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--t3-ink);
}

.t3-inner .t3-about-pillar p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-about-story {
    display: grid;
    gap: 28px;
    padding: 32px 0;
    align-items: center;
}

@media (min-width: 992px) {
    .t3-inner .t3-about-story {
        grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
        gap: 48px;
    }
}

.t3-inner .t3-about-story__media-wrap {
    position: relative;
}

.t3-inner .t3-about-story__media {
    min-height: 260px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(19, 39, 34, 0.08);
    box-shadow: 0 18px 48px rgba(12, 27, 24, 0.12);
}

@media (min-width: 992px) {
    .t3-inner .t3-about-story__media {
        min-height: 340px;
    }
}

.t3-inner .t3-about-story__copy h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-about-story__copy > p {
    margin: 0 0 18px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--t3-muted);
}

.t3-inner .t3-about-story__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t3-inner .t3-about-story__list li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 10px;
    font-size: 0.94rem;
    line-height: 1.5;
    color: var(--t3-ink);
}

.t3-inner .t3-about-story__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: var(--t3-accent-strong);
    transform: rotate(45deg);
}

.t3-inner .t3-about-dual {
    display: grid;
    gap: 16px;
    padding: 24px 0 40px;
}

@media (min-width: 768px) {
    .t3-inner .t3-about-dual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

.t3-inner .t3-about-dual__card {
    padding: 26px 22px;
    border-radius: 14px;
    background: var(--t3-bg);
    border: 1px dashed rgba(19, 39, 34, 0.15);
}

.t3-inner .t3-about-dual__card--accent {
    background: linear-gradient(145deg, rgba(15, 118, 110, 0.1) 0%, var(--t3-surface) 55%);
    border-style: solid;
    border-color: rgba(15, 118, 110, 0.22);
}

.t3-inner .t3-about-dual__card h3 {
    font-family: var(--t3-font-display);
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--t3-ink);
}

.t3-inner .t3-about-dual__card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-about-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 32px 26px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 14px 40px rgba(12, 27, 24, 0.08);
}

@media (min-width: 768px) {
    .t3-inner .t3-about-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
    }
}

.t3-inner .t3-about-cta__inner h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-about-cta__inner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--t3-muted);
    max-width: 36rem;
}

@media (max-width: 767px) {
    .t3-inner .t3-about-hero__actions .t3-btn {
        width: 100%;
        justify-content: center;
    }

    .t3-inner .t3-about-cta .t3-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ----- FAQ page (t3) ----- */
.t3-inner .t3-faq-page {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.035) 0%, transparent 38%);
}

.t3-inner .t3-faq-hero {
    display: grid;
    gap: 20px;
    padding: 8px 0 24px;
    border-bottom: 1px solid rgba(19, 39, 34, 0.07);
    margin-bottom: 8px;
}

@media (min-width: 992px) {
    .t3-inner .t3-faq-hero {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        gap: 32px;
        align-items: start;
    }
}

.t3-inner .t3-faq-hero__main h1 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-faq-hero__main > p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--t3-muted);
    max-width: 38rem;
}

.t3-inner .t3-faq-hero__aside {
    padding: 22px 20px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 12px 32px rgba(12, 27, 24, 0.07);
}

.t3-inner .t3-faq-hero__aside h3 {
    font-family: var(--t3-font-display);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-faq-hero__aside > p {
    margin: 0 0 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--t3-muted);
}

.t3-inner .t3-faq-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.t3-inner .t3-faq-jump {
    position: sticky;
    top: 72px;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 0 20px;
    margin: 0 0 8px;
    background: linear-gradient(180deg, var(--t3-bg) 72%, transparent);
}

.t3-inner .t3-faq-jump__link {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--t3-ink);
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    transition: border-color 0.18s ease, background 0.18s ease;
}

.t3-inner .t3-faq-jump__link:hover {
    border-color: var(--t3-accent-strong);
    background: rgba(15, 118, 110, 0.08);
    color: var(--t3-accent-strong);
}

.t3-inner .t3-faq-block {
    padding: 28px 0 8px;
    scroll-margin-top: 120px;
}

.t3-inner .t3-faq-block__head h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-faq-block__head p {
    margin: 0 0 18px;
    font-size: 0.92rem;
    color: var(--t3-muted);
    line-height: 1.5;
    max-width: 40rem;
}

.t3-inner .t3-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.t3-inner .t3-faq-item {
    border-radius: 12px;
    border: 1px solid rgba(19, 39, 34, 0.1);
    background: var(--t3-surface);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.t3-inner .t3-faq-item[open] {
    border-color: rgba(15, 118, 110, 0.35);
    box-shadow: 0 10px 28px rgba(12, 27, 24, 0.06);
}

.t3-inner .t3-faq-item__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--t3-ink);
}

.t3-inner .t3-faq-item__summary::-webkit-details-marker {
    display: none;
}

.t3-inner .t3-faq-item__q {
    flex: 1;
    min-width: 0;
}

.t3-inner .t3-faq-item__glyph {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
}

.t3-inner .t3-faq-item__glyph::before,
.t3-inner .t3-faq-item__glyph::after {
    content: "";
    position: absolute;
    background: var(--t3-accent-strong);
    border-radius: 1px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.t3-inner .t3-faq-item__glyph::before {
    width: 12px;
    height: 2px;
    left: 9px;
    top: 14px;
}

.t3-inner .t3-faq-item__glyph::after {
    width: 2px;
    height: 12px;
    left: 14px;
    top: 9px;
}

.t3-inner .t3-faq-item[open] .t3-faq-item__glyph::after {
    transform: scaleY(0);
    opacity: 0;
}

.t3-inner .t3-faq-item__body {
    padding: 0 18px 16px;
    border-top: 1px solid rgba(19, 39, 34, 0.06);
}

.t3-inner .t3-faq-item__body p {
    margin: 14px 0 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--t3-muted);
    max-width: 52rem;
}

.t3-inner .t3-faq-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin: 36px 0 28px;
    padding: 28px 24px;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(15, 118, 110, 0.12) 0%, rgba(19, 39, 34, 0.05) 100%);
    border: 1px solid rgba(15, 118, 110, 0.22);
}

@media (min-width: 768px) {
    .t3-inner .t3-faq-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
}

.t3-inner .t3-faq-cta__copy h2 {
    font-family: var(--t3-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-faq-cta__copy p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--t3-muted);
    max-width: 34rem;
    line-height: 1.55;
}

@media (max-width: 767px) {
    .t3-inner .t3-faq-hero__actions {
        flex-direction: column;
    }

    .t3-inner .t3-faq-hero__actions .t3-btn {
        width: 100%;
        justify-content: center;
    }

    .t3-inner .t3-faq-jump {
        top: 64px;
    }

    .t3-inner .t3-faq-cta .t3-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ----- About: team + testimonials (included after view/about.php) ----- */
.t3-inner .t3-about-team {
    margin-top: 0;
    padding: 56px 0 48px;
    border-top: 1px solid rgba(19, 39, 34, 0.1);
    background: linear-gradient(180deg, var(--t3-bg) 0%, rgba(15, 118, 110, 0.04) 45%, var(--t3-bg) 100%);
}

.t3-inner .t3-about-team__header {
    max-width: 40rem;
    margin-bottom: 36px;
}

.t3-inner .t3-about-team__header h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-about-team__lead {
    margin: 0 0 20px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--t3-muted);
}

.t3-inner .t3-about-team__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 22px;
}

@media (min-width: 768px) {
    .t3-inner .t3-about-team__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        align-items: stretch;
    }
}

.t3-inner .t3-about-team-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 12px 36px rgba(12, 27, 24, 0.07);
    overflow: hidden;
}

.t3-inner .t3-about-team-card__media {
    aspect-ratio: 4 / 3;
    background: var(--t3-bg);
    overflow: hidden;
}

.t3-inner .t3-about-team-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.t3-inner .t3-about-team-card__body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.t3-inner .t3-about-team-card__chip {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t3-accent-strong);
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    border: 1px solid rgba(15, 118, 110, 0.2);
}

.t3-inner .t3-about-team-card__name {
    font-family: var(--t3-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--t3-ink);
    letter-spacing: -0.02em;
}

.t3-inner .t3-about-team-card__role {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--t3-muted);
}

.t3-inner .t3-about-team-card__bio {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--t3-muted);
    padding-top: 12px;
    border-top: 1px solid rgba(19, 39, 34, 0.08);
}

.t3-inner .t3-about-proof {
    padding: 48px 0 56px;
    border-top: 1px solid rgba(19, 39, 34, 0.08);
    background: var(--t3-surface);
}

.t3-inner .t3-about-proof__top {
    display: grid;
    gap: 24px;
    margin-bottom: 28px;
    align-items: start;
}

@media (min-width: 992px) {
    .t3-inner .t3-about-proof__top {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
        gap: 32px;
        align-items: end;
    }
}

.t3-inner .t3-about-proof__intro h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--t3-ink);
}

.t3-inner .t3-about-proof__stat {
    padding: 22px 20px;
    border-radius: 14px;
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
}

.t3-inner .t3-about-proof__stat-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t3-muted);
    margin-bottom: 6px;
}

.t3-inner .t3-about-proof__stat-value {
    display: block;
    font-family: var(--t3-font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--t3-accent-strong);
    line-height: 1;
    margin-bottom: 10px;
}

.t3-inner .t3-about-proof__stat-note {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--t3-muted);
}

.t3-inner .t3-about-proof__quotes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

@media (min-width: 992px) {
    .t3-inner .t3-about-proof__quotes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

.t3-inner .t3-about-proof-card {
    padding: 22px 20px;
    border-radius: 14px;
    border: 1px solid rgba(19, 39, 34, 0.1);
    background: var(--t3-bg);
}

.t3-inner .t3-about-proof-card--featured {
    border-color: rgba(15, 118, 110, 0.35);
    background: linear-gradient(160deg, rgba(15, 118, 110, 0.08) 0%, var(--t3-bg) 55%);
}

.t3-inner .t3-about-proof-card__quote {
    font-family: var(--t3-font-display);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-about-proof-card__text {
    margin: 0 0 14px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-about-proof-card__byline {
    margin: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--t3-accent-strong);
}

@media (max-width: 767px) {
    .t3-inner .t3-about-team__header .t3-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ----- Plans & fees (t3 pricing wave) ----- */
.t3-inner .t3-plans-page,
.t3-inner .t3-fees-page {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.04) 0%, transparent 42%);
}

.t3-inner .t3-pricing-hero {
    display: grid;
    gap: 22px;
    padding: 8px 0 32px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(19, 39, 34, 0.08);
}

@media (min-width: 992px) {
    .t3-inner .t3-pricing-hero {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
        gap: 36px;
        align-items: start;
    }
}

.t3-inner .t3-pricing-hero__main h1 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.85rem, 3.8vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-pricing-hero__main > p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--t3-muted);
    max-width: 40rem;
}

.t3-inner .t3-pricing-hero__aside {
    padding: 22px 20px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 12px 36px rgba(12, 27, 24, 0.07);
}

.t3-inner .t3-pricing-hero__aside h3 {
    font-family: var(--t3-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-pricing-hero__aside p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

/* Plan cards */
.t3-inner .t3-plans-cards {
    display: grid;
    gap: 18px;
    padding: 12px 0 40px;
}

@media (min-width: 768px) {
    .t3-inner .t3-plans-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .t3-inner .t3-plans-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

.t3-inner .t3-plan-card {
    position: relative;
    padding: 22px 18px 20px;
    border-radius: 16px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 10px 32px rgba(12, 27, 24, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.t3-inner .t3-plan-card--featured {
    border-color: rgba(15, 118, 110, 0.45);
    box-shadow: 0 16px 44px rgba(15, 118, 110, 0.15);
    background: linear-gradient(165deg, rgba(15, 118, 110, 0.08) 0%, var(--t3-surface) 55%);
}

.t3-inner .t3-plan-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--t3-accent-strong);
    color: #fff;
}

.t3-inner .t3-plan-card__tagline {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--t3-accent-strong);
    margin-bottom: 8px;
    line-height: 1.35;
}

.t3-inner .t3-plan-card__name {
    font-family: var(--t3-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-plan-card__highlight {
    margin: 0 0 16px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--t3-muted);
    flex: 1;
}

.t3-inner .t3-plan-card__specs {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(19, 39, 34, 0.08);
}

.t3-inner .t3-plan-card__specs > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(19, 39, 34, 0.06);
}

.t3-inner .t3-plan-card__specs > div:last-child {
    border-bottom: none;
}

.t3-inner .t3-plan-card__specs dt {
    margin: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--t3-muted);
}

.t3-inner .t3-plan-card__specs dd {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--t3-ink);
    text-align: right;
}

/* Compare matrix */
.t3-inner .t3-plans-compare {
    padding: 16px 0 40px;
}

.t3-inner .t3-plans-compare__head h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-plans-compare__head p {
    margin: 0 0 20px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--t3-muted);
    max-width: 40rem;
}

.t3-inner .t3-plans-compare__table {
    border-radius: 14px;
    border: 1px solid var(--t3-border);
    background: var(--t3-surface);
    overflow: hidden;
}

.t3-inner .t3-plans-compare__thead {
    display: none;
    padding: 14px 18px;
    background: rgba(15, 118, 110, 0.08);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t3-ink);
    border-bottom: 1px solid rgba(19, 39, 34, 0.08);
}

@media (min-width: 992px) {
    .t3-inner .t3-plans-compare__thead {
        display: grid;
        grid-template-columns: minmax(160px, 1.4fr) repeat(4, minmax(0, 1fr));
        gap: 12px;
        align-items: center;
    }
}

.t3-inner .t3-plans-compare__corner {
    color: var(--t3-muted);
}

.t3-inner .t3-plans-compare-row {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(19, 39, 34, 0.07);
}

.t3-inner .t3-plans-compare-row:last-child {
    border-bottom: none;
}

.t3-inner .t3-plans-compare-row__label {
    font-family: var(--t3-font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-plans-compare-row__cells {
    display: grid;
    gap: 10px;
}

@media (min-width: 992px) {
    .t3-inner .t3-plans-compare-row {
        display: grid;
        grid-template-columns: minmax(160px, 1.4fr) repeat(4, minmax(0, 1fr));
        gap: 12px;
        align-items: center;
        padding: 14px 18px;
    }

    .t3-inner .t3-plans-compare-row__label {
        margin: 0;
        padding-right: 8px;
    }

    .t3-inner .t3-plans-compare-row__cells {
        display: contents;
    }

    .t3-inner .t3-plans-compare-row__cells > div {
        min-width: 0;
    }
}

.t3-inner .t3-plans-compare-row__cells > div {
    position: relative;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--t3-bg);
    border: 1px solid rgba(19, 39, 34, 0.06);
}

@media (min-width: 992px) {
    .t3-inner .t3-plans-compare-row__cells > div {
        padding: 10px 8px;
    }
}

.t3-inner .t3-plans-compare-row__plan {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t3-muted);
    margin-bottom: 4px;
}

@media (min-width: 992px) {
    .t3-inner .t3-plans-compare-row__plan {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

.t3-inner .t3-plans-compare-row__cells strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--t3-ink);
    line-height: 1.35;
}

.t3-inner .t3-pricing-cta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 28px 24px;
    margin: 16px 0 24px;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(15, 118, 110, 0.11) 0%, rgba(19, 39, 34, 0.05) 100%);
    border: 1px solid rgba(15, 118, 110, 0.22);
}

@media (min-width: 768px) {
    .t3-inner .t3-pricing-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
    }
}

.t3-inner .t3-pricing-cta__copy h2 {
    font-family: var(--t3-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-pricing-cta__copy p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--t3-muted);
    max-width: 34rem;
}

.t3-inner .t3-plans-footnote {
    margin: 0 0 32px;
    padding-top: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--t3-muted);
    text-align: center;
}

/* Fees tiers */
.t3-inner .t3-fees-tiers {
    display: grid;
    gap: 18px;
    padding: 12px 0 36px;
}

@media (min-width: 992px) {
    .t3-inner .t3-fees-tiers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

.t3-inner .t3-fees-tier {
    position: relative;
    padding: 22px 20px 20px;
    border-radius: 16px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 10px 32px rgba(12, 27, 24, 0.06);
}

.t3-inner .t3-fees-tier--featured {
    border-color: rgba(15, 118, 110, 0.4);
    box-shadow: 0 16px 44px rgba(15, 118, 110, 0.12);
}

.t3-inner .t3-fees-tier__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--t3-accent) 0%, var(--t3-accent-strong) 100%);
    color: #fff;
}

.t3-inner .t3-fees-tier__meta {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t3-accent-strong);
    margin-bottom: 8px;
}

.t3-inner .t3-fees-tier__name {
    font-family: var(--t3-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--t3-ink);
}

.t3-inner .t3-fees-tier__lead {
    margin: 0 0 16px;
    font-size: 0.88rem;
    color: var(--t3-muted);
    line-height: 1.45;
}

.t3-inner .t3-fees-tier__list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(19, 39, 34, 0.08);
}

.t3-inner .t3-fees-tier__list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(19, 39, 34, 0.06);
    font-size: 0.86rem;
}

.t3-inner .t3-fees-tier__list li:last-child {
    border-bottom: none;
}

.t3-inner .t3-fees-tier__list span {
    color: var(--t3-muted);
    font-weight: 600;
}

.t3-inner .t3-fees-tier__list strong {
    font-weight: 700;
    color: var(--t3-ink);
    text-align: right;
}

.t3-inner .t3-fees-included {
    padding: 28px 22px 30px;
    margin-bottom: 28px;
    border-radius: 16px;
    background: var(--t3-bg);
    border: 1px solid rgba(19, 39, 34, 0.1);
}

@media (min-width: 768px) {
    .t3-inner .t3-fees-included {
        padding: 32px 36px;
    }
}

.t3-inner .t3-fees-included__head h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-fees-included__head p {
    margin: 0 0 20px;
    font-size: 0.95rem;
    color: var(--t3-muted);
    line-height: 1.55;
    max-width: 44rem;
}

.t3-inner .t3-fees-included__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

@media (min-width: 768px) {
    .t3-inner .t3-fees-included__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 28px;
    }
}

.t3-inner .t3-fees-included__list li {
    position: relative;
    padding-left: 26px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--t3-ink);
}

.t3-inner .t3-fees-included__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: rgba(15, 118, 110, 0.2);
    box-shadow: inset 0 0 0 3px var(--t3-surface);
    border: 2px solid var(--t3-accent-strong);
}

.t3-inner .t3-fees-groups {
    display: grid;
    gap: 16px;
    padding-bottom: 8px;
}

@media (min-width: 992px) {
    .t3-inner .t3-fees-groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

.t3-inner .t3-fees-group {
    padding: 20px 18px 18px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 8px 26px rgba(12, 27, 24, 0.05);
}

.t3-inner .t3-fees-group__title {
    font-family: var(--t3-font-display);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(15, 118, 110, 0.25);
    color: var(--t3-ink);
}

.t3-inner .t3-fees-group__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.t3-inner .t3-fees-group__list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(19, 39, 34, 0.07);
    font-size: 0.86rem;
    line-height: 1.45;
}

.t3-inner .t3-fees-group__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.t3-inner .t3-fees-group__list span {
    display: block;
    font-weight: 700;
    color: var(--t3-ink);
    margin-bottom: 4px;
}

.t3-inner .t3-fees-group__list strong {
    font-weight: 600;
    color: var(--t3-muted);
}

@media (max-width: 767px) {
    .t3-inner .t3-pricing-cta .t3-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ----- Auth: signin, newaccount, sign (t3) ----- */
.t3-inner .t3-auth-page {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.04) 0%, transparent 45%);
}

.t3-inner .t3-auth-hero {
    display: grid;
    gap: 22px;
    padding: 8px 0 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(19, 39, 34, 0.08);
}

@media (min-width: 992px) {
    .t3-inner .t3-auth-hero {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
        gap: 36px;
        align-items: start;
    }
}

.t3-inner .t3-auth-hero__main h1 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.8rem, 3.6vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-auth-hero__main > p {
    margin: 0 0 18px;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--t3-muted);
    max-width: 38rem;
}

.t3-inner .t3-auth-hero__points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.t3-inner .t3-auth-hero__points li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--t3-ink);
}

.t3-inner .t3-auth-hero__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--t3-accent-strong);
    transform: rotate(45deg);
}

.t3-inner .t3-auth-hero__aside {
    padding: 22px 20px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 12px 36px rgba(12, 27, 24, 0.07);
}

.t3-inner .t3-auth-hero__aside h3 {
    font-family: var(--t3-font-display);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-auth-hero__aside p {
    margin: 0 0 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--t3-muted);
}

.t3-inner .t3-auth-panel {
    padding: 20px 0 40px;
}

.t3-inner .t3-auth-panel--single {
    display: flex;
    justify-content: center;
}

.t3-inner .t3-auth-panel--single .t3-auth-card {
    width: 100%;
    max-width: 720px;
}

.t3-inner .t3-auth-split {
    display: grid;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 992px) {
    .t3-inner .t3-auth-split {
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
        gap: 32px;
        align-items: start;
    }
}

.t3-inner .t3-auth-card {
    padding: 28px 22px 26px;
    border-radius: 16px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 16px 48px rgba(12, 27, 24, 0.09);
}

@media (min-width: 768px) {
    .t3-inner .t3-auth-card {
        padding: 34px 32px 32px;
    }
}

.t3-inner .t3-auth-card__head h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.45rem);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-auth-card__head p {
    margin: 0 0 22px;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-auth-field {
    margin-bottom: 18px;
}

.t3-inner .t3-auth-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t3-muted);
}

.t3-inner .t3-auth-form .form-control {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--t3-border);
    padding: 12px 14px;
    font-size: 0.95rem;
    color: var(--t3-ink);
    background: var(--t3-surface);
    min-height: 46px;
}

.t3-inner .t3-auth-form .form-control:focus {
    outline: none;
    border-color: var(--t3-accent-strong);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.2);
}

.t3-inner .t3-auth-grid {
    display: grid;
    gap: 0 20px;
}

@media (min-width: 768px) {
    .t3-inner .t3-auth-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t3-inner .t3-auth-field--wide {
        grid-column: 1 / -1;
    }
}

.t3-inner .t3-auth-actions {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.t3-inner .t3-auth-switch {
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(19, 39, 34, 0.08);
    font-size: 0.9rem;
    color: var(--t3-muted);
}

.t3-inner .t3-auth-switch a {
    font-weight: 700;
    color: var(--t3-accent-strong);
}

.t3-inner .t3-auth-error {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(185, 28, 28, 0.08);
    border: 1px solid rgba(185, 28, 28, 0.28);
    color: #7f1d1d;
}

.t3-inner .t3-auth-media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--t3-border);
    background: var(--t3-bg);
    min-height: 280px;
    box-shadow: 0 18px 50px rgba(12, 27, 24, 0.1);
}

@media (min-width: 992px) {
    .t3-inner .t3-auth-media {
        position: sticky;
        top: 96px;
        min-height: 420px;
    }
}

.t3-inner .t3-auth-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .t3-inner .t3-auth-media {
        max-height: 320px;
    }

    .t3-inner .t3-auth-media img {
        min-height: 220px;
        max-height: 320px;
    }
}

@media (max-width: 767px) {
    .t3-inner .t3-auth-hero__aside .t3-btn {
        width: 100%;
        justify-content: center;
    }

    .t3-inner .t3-auth-actions .t3-btn,
    .t3-inner .t3-auth-actions input.t3-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ----- Affiliates & candidates (inner) ----- */
.t3-inner .t3-affiliates-page {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.04) 0%, transparent 38%);
}

.t3-inner .t3-affiliates-hero {
    max-width: 42rem;
    margin-bottom: 36px;
}

.t3-inner .t3-affiliates-hero__title {
    font-family: var(--t3-font-display);
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin: 0 0 14px;
    color: var(--t3-ink);
}

.t3-inner .t3-affiliates-hero p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--t3-muted);
}

.t3-inner .t3-affiliates-steps {
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
    display: grid;
    gap: 14px;
}

@media (min-width: 768px) {
    .t3-inner .t3-affiliates-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .t3-inner .t3-affiliates-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

.t3-inner .t3-affiliates-steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 18px 18px 16px;
    border-radius: var(--t3-radius);
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 10px 28px rgba(12, 27, 24, 0.06);
    counter-increment: none;
}

.t3-inner .t3-affiliates-steps__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--t3-accent-soft);
    color: var(--t3-accent-strong);
}

.t3-inner .t3-affiliates-steps__icon svg {
    width: 24px;
    height: 24px;
}

.t3-inner .t3-affiliates-steps strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--t3-ink);
    margin-bottom: 4px;
}

.t3-inner .t3-affiliates-steps span {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-affiliates-stories {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 56px;
}

.t3-inner .t3-affiliates-story {
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: calc(var(--t3-radius) + 4px);
    border: 1px solid var(--t3-border);
    background: var(--t3-surface);
    box-shadow: var(--t3-shadow);
}

@media (min-width: 992px) {
    .t3-inner .t3-affiliates-story {
        grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.15fr);
        align-items: stretch;
    }

    .t3-inner .t3-affiliates-story--flip .t3-affiliates-story__visual {
        order: 2;
    }

    .t3-inner .t3-affiliates-story--flip .t3-affiliates-story__body {
        order: 1;
    }
}

.t3-inner .t3-affiliates-story__visual {
    min-height: 220px;
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .t3-inner .t3-affiliates-story__visual {
        min-height: 100%;
    }
}

.t3-inner .t3-affiliates-story__body {
    padding: 28px 26px 32px;
}

.t3-inner .t3-affiliates-story__body h2 {
    font-family: var(--t3-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--t3-ink);
}

.t3-inner .t3-affiliates-story__body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--t3-muted);
}

.t3-inner .t3-affiliates-story__body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t3-inner .t3-affiliates-story__body li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-affiliates-story__body li:last-child {
    margin-bottom: 0;
}

.t3-inner .t3-affiliates-story__body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--t3-accent-strong);
    box-shadow: 0 0 0 3px var(--t3-accent-soft);
}

.t3-inner .t3-affiliates-glance {
    padding-bottom: 16px;
}

.t3-inner .t3-affiliates-glance__head {
    max-width: 36rem;
    margin-bottom: 28px;
}

.t3-inner .t3-affiliates-glance__head h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-affiliates-glance__head p {
    margin: 0;
    color: var(--t3-muted);
    line-height: 1.6;
}

.t3-inner .t3-affiliates-glance__split {
    display: grid;
    gap: 0;
    border-radius: calc(var(--t3-radius) + 6px);
    overflow: hidden;
    border: 1px solid var(--t3-border);
    background: var(--t3-surface);
}

@media (min-width: 992px) {
    .t3-inner .t3-affiliates-glance__split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

.t3-inner .t3-affiliates-glance__photo {
    min-height: 260px;
    background-size: cover;
    background-position: center;
}

.t3-inner .t3-affiliates-glance__list {
    padding: 28px 26px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.t3-inner .t3-affiliates-glance__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t3-inner .t3-affiliates-glance__list li {
    padding: 12px 0 12px 22px;
    border-bottom: 1px dashed rgba(19, 39, 34, 0.12);
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--t3-muted);
    position: relative;
}

.t3-inner .t3-affiliates-glance__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.t3-inner .t3-affiliates-glance__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--t3-warm);
    transform: rotate(45deg);
}

.t3-inner .t3-candidates-page {
    background: linear-gradient(180deg, rgba(180, 83, 9, 0.05) 0%, transparent 42%);
}

.t3-inner .t3-candidates-hero {
    display: grid;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(19, 39, 34, 0.08);
}

@media (min-width: 992px) {
    .t3-inner .t3-candidates-hero {
        grid-template-columns: minmax(0, 1.15fr) minmax(260px, 340px);
        gap: 36px;
        align-items: start;
    }
}

.t3-inner .t3-candidates-hero__title {
    font-family: var(--t3-font-display);
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    color: var(--t3-ink);
}

.t3-inner .t3-candidates-hero__main > p {
    margin: 0 0 18px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--t3-muted);
}

.t3-inner .t3-candidates-hero__points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t3-inner .t3-candidates-hero__points li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--t3-muted);
    line-height: 1.5;
}

.t3-inner .t3-candidates-hero__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--t3-accent-strong);
    border-bottom: 2px solid var(--t3-accent-strong);
    transform: rotate(-45deg);
}

.t3-inner .t3-candidates-hero__aside {
    padding: 22px 20px;
    border-radius: var(--t3-radius);
    border: 1px solid var(--t3-border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 34px rgba(12, 27, 24, 0.07);
}

.t3-inner .t3-candidates-hero__aside h3 {
    font-family: var(--t3-font-display);
    font-size: 1.05rem;
    margin: 0 0 10px;
    color: var(--t3-ink);
}

.t3-inner .t3-candidates-hero__aside p {
    margin: 0 0 16px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-candidates-form-wrap__panel {
    max-width: 640px;
    margin: 0 auto;
    padding: 28px 24px 32px;
    border-radius: var(--t3-radius);
    border: 1px solid var(--t3-border);
    background: var(--t3-surface);
    box-shadow: var(--t3-shadow);
}

.t3-inner .t3-candidates-consent {
    margin-top: 8px;
    margin-bottom: 8px;
}

.t3-inner .t3-candidates-consent__label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--t3-muted);
    cursor: pointer;
}

.t3-inner .t3-candidates-consent__label input {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--t3-accent-strong);
}

/* ----- Customer portal (/login) ----- */
.t3-theme.t3-login input:not([type="checkbox"]):not([type="radio"]),
.t3-theme.t3-login select,
.t3-theme.t3-login textarea,
.t3-theme.t3-login .modal .form-control {
    border-radius: var(--t3-radius-sm);
    border: 1px solid var(--t3-border);
    background: var(--t3-surface);
    color: var(--t3-ink);
    padding: 10px 14px;
    font-size: 15px;
}

.t3-theme.t3-login input:focus,
.t3-theme.t3-login select:focus,
.t3-theme.t3-login textarea:focus,
.t3-theme.t3-login .modal .form-control:focus {
    outline: none;
    border-color: var(--t3-accent-strong);
    box-shadow: 0 0 0 3px rgba(15, 148, 136, 0.22);
}

.t3-theme.t3-login .t3-login-main {
    padding: 0 0 64px;
}

.t3-theme.t3-login .t3-login-main__inner {
    padding-top: 40px;
    padding-bottom: 40px;
}

.t3-theme.t3-login .t3-login-main h3 {
    font-family: var(--t3-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 28px 0 14px;
    color: var(--t3-ink);
}

.t3-theme.t3-login .t3-login-main h3:first-child {
    margin-top: 0;
}

.t3-theme.t3-login .t3-login-main .table {
    background: var(--t3-surface);
    border-radius: var(--t3-radius-sm);
    overflow: hidden;
    border: 1px solid var(--t3-border);
}

.t3-theme.t3-login .t3-login-main .table td,
.t3-theme.t3-login .t3-login-main .table th {
    border-color: rgba(19, 39, 34, 0.08);
    vertical-align: middle;
    color: var(--t3-muted);
    font-size: 14px;
}

.t3-theme.t3-login .t3-login-main .table th,
.t3-theme.t3-login .t3-login-main .table td:first-child {
    color: var(--t3-ink);
    font-weight: 600;
}

.t3-theme.t3-login .t3-login-main .table td.warning,
.t3-theme.t3-login .t3-login-main .table td.info {
    background: rgba(15, 118, 110, 0.08);
    color: var(--t3-ink);
}

.t3-theme.t3-login .t3-login-main .btn.btn-primary,
.t3-theme.t3-login .t3-login-main .ht-btn--default {
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--t3-accent) 0%, var(--t3-accent-strong) 100%);
    color: #fff;
}

.t3-theme.t3-login .t3-login-main .btn.btn-primary:hover,
.t3-theme.t3-login .t3-login-main .ht-btn--default:hover {
    filter: brightness(1.05);
    color: #fff;
}

.t3-theme.t3-login .t3-login-main .btn.btn-secondary {
    border-radius: 999px;
    border: 1px solid var(--t3-border);
    background: var(--t3-surface);
    color: var(--t3-ink);
    font-weight: 600;
}

.t3-theme.t3-login .t3-login-main .btn.btn-secondary:hover {
    border-color: var(--t3-accent-strong);
    color: var(--t3-accent-strong);
}

.t3-theme.t3-login .t3-login-hero {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12) 0%, rgba(180, 83, 9, 0.06) 100%);
}

/* ----- Legal, 404, stores (t3) ----- */
.t3-inner .t3-legal-page,
.t3-inner .t3-not-found-page,
.t3-inner .t3-stores-page {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.035) 0%, transparent 40%);
}

.t3-inner .t3-legal-hero {
    display: grid;
    gap: 22px;
    padding: 8px 0 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(19, 39, 34, 0.08);
}

@media (min-width: 992px) {
    .t3-inner .t3-legal-hero {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
        gap: 36px;
        align-items: start;
    }
}

.t3-inner .t3-legal-hero__main h1 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-legal-hero__main > p {
    margin: 0 0 18px;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--t3-muted);
    max-width: 40rem;
}

.t3-inner .t3-legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.t3-inner .t3-legal-nav a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--t3-ink);
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
}

.t3-inner .t3-legal-nav a:hover {
    border-color: var(--t3-accent-strong);
    background: rgba(15, 118, 110, 0.08);
}

.t3-inner .t3-legal-nav a.is-active {
    border-color: rgba(15, 118, 110, 0.4);
    background: rgba(15, 118, 110, 0.12);
    color: var(--t3-accent-strong);
}

.t3-inner .t3-legal-hero__aside {
    padding: 22px 20px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 12px 36px rgba(12, 27, 24, 0.07);
}

.t3-inner .t3-legal-hero__aside h3 {
    font-family: var(--t3-font-display);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--t3-ink);
}

.t3-inner .t3-legal-meta {
    margin: 0 0 18px;
}

.t3-inner .t3-legal-meta > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px 12px;
    padding: 10px 0;
    border-top: 1px dashed rgba(19, 39, 34, 0.1);
}

.t3-inner .t3-legal-meta > div:first-of-type {
    border-top: none;
    padding-top: 0;
}

.t3-inner .t3-legal-meta dt {
    margin: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--t3-muted);
}

.t3-inner .t3-legal-meta dd {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--t3-ink);
}

.t3-inner .t3-legal-meta a {
    color: var(--t3-accent-strong);
    font-weight: 600;
}

.t3-inner .t3-legal-toc {
    position: sticky;
    top: 72px;
    z-index: 15;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0 20px;
    margin: 0;
    background: linear-gradient(180deg, var(--t3-bg) 70%, transparent);
}

.t3-inner .t3-legal-toc a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--t3-muted);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.t3-inner .t3-legal-toc a:hover {
    color: var(--t3-accent-strong);
    border-bottom-color: rgba(15, 118, 110, 0.35);
}

.t3-inner .t3-legal-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 32px;
}

.t3-inner .t3-legal-section {
    scroll-margin-top: 120px;
    padding: 26px 22px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 8px 28px rgba(12, 27, 24, 0.05);
}

.t3-inner .t3-legal-section h2 {
    font-family: var(--t3-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(15, 118, 110, 0.2);
    color: var(--t3-ink);
}

.t3-inner .t3-legal-section p {
    margin: 0 0 12px;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--t3-muted);
}

.t3-inner .t3-legal-section p:last-child {
    margin-bottom: 0;
}

.t3-inner .t3-legal-section ul {
    margin: 12px 0 0;
    padding-left: 1.2rem;
    color: var(--t3-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.t3-inner .t3-legal-prologue {
    padding: 8px 0 20px;
}

.t3-inner .t3-legal-prologue h2 {
    font-family: var(--t3-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-legal-prologue p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--t3-muted);
    line-height: 1.55;
}

.t3-inner .t3-legal-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 36px;
}

.t3-inner .t3-legal-acc-item {
    border-radius: 12px;
    border: 1px solid rgba(19, 39, 34, 0.1);
    background: var(--t3-surface);
    overflow: hidden;
}

.t3-inner .t3-legal-acc-item[open] {
    border-color: rgba(15, 118, 110, 0.3);
}

.t3-inner .t3-legal-acc-item__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--t3-ink);
}

.t3-inner .t3-legal-acc-item__summary::-webkit-details-marker {
    display: none;
}

.t3-inner .t3-legal-acc-item__title {
    flex: 1;
}

.t3-inner .t3-legal-acc-item__glyph {
    position: relative;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 9px;
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
}

.t3-inner .t3-legal-acc-item__glyph::before,
.t3-inner .t3-legal-acc-item__glyph::after {
    content: "";
    position: absolute;
    background: var(--t3-accent-strong);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.t3-inner .t3-legal-acc-item__glyph::before {
    width: 11px;
    height: 2px;
    left: 8px;
    top: 13px;
}

.t3-inner .t3-legal-acc-item__glyph::after {
    width: 2px;
    height: 11px;
    left: 13px;
    top: 8px;
}

.t3-inner .t3-legal-acc-item[open] .t3-legal-acc-item__glyph::after {
    transform: scaleY(0);
    opacity: 0;
}

.t3-inner .t3-legal-acc-item__body {
    padding: 0 18px 16px;
    border-top: 1px solid rgba(19, 39, 34, 0.06);
}

.t3-inner .t3-legal-acc-item__body p {
    margin: 14px 0 10px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--t3-muted);
}

.t3-inner .t3-legal-acc-item__body ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--t3-muted);
}

.t3-inner .t3-legal-bottom-cta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 28px 24px;
    margin-bottom: 28px;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(15, 118, 110, 0.1) 0%, rgba(19, 39, 34, 0.05) 100%);
    border: 1px solid rgba(15, 118, 110, 0.2);
}

@media (min-width: 768px) {
    .t3-inner .t3-legal-bottom-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
}

.t3-inner .t3-legal-bottom-cta__copy h2 {
    font-family: var(--t3-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-legal-bottom-cta__copy p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--t3-muted);
    max-width: 34rem;
    line-height: 1.55;
}

/* Stores */
.t3-inner .t3-stores-hero {
    display: grid;
    gap: 22px;
    padding: 8px 0 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(19, 39, 34, 0.08);
}

@media (min-width: 992px) {
    .t3-inner .t3-stores-hero {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
        gap: 36px;
        align-items: start;
    }
}

.t3-inner .t3-stores-hero__main h1 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--t3-ink);
}

.t3-inner .t3-stores-hero__main > p {
    margin: 0 0 18px;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--t3-muted);
    max-width: 40rem;
}

.t3-inner .t3-stores-hero__points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.t3-inner .t3-stores-hero__points li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--t3-ink);
}

.t3-inner .t3-stores-hero__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--t3-accent-strong);
}

.t3-inner .t3-stores-hero__aside {
    padding: 22px 20px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 12px 36px rgba(12, 27, 24, 0.07);
}

.t3-inner .t3-stores-hero__aside h3 {
    font-family: var(--t3-font-display);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-stores-hero__aside p {
    margin: 0 0 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--t3-muted);
}

.t3-inner .t3-stores-layout {
    display: grid;
    gap: 24px;
    padding: 24px 0 32px;
    align-items: start;
}

@media (min-width: 992px) {
    .t3-inner .t3-stores-layout {
        grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
        gap: 32px;
    }
}

.t3-inner .t3-stores-sidebar {
    order: 1;
}

@media (min-width: 992px) {
    .t3-inner .t3-stores-sidebar {
        position: sticky;
        top: 88px;
        order: 0;
    }
}

.t3-inner .t3-stores-sidebar__mobile {
    border-radius: 12px;
    border: 1px solid var(--t3-border);
    background: var(--t3-surface);
    overflow: hidden;
    margin-bottom: 8px;
}

.t3-inner .t3-stores-sidebar__mobile summary {
    padding: 14px 16px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    background: rgba(15, 118, 110, 0.06);
}

.t3-inner .t3-stores-sidebar__mobile summary::-webkit-details-marker {
    display: none;
}

.t3-inner .t3-stores-sidebar__mobile-links {
    padding: 10px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.t3-inner .t3-stores-sidebar__mobile-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--t3-muted);
}

.t3-inner .t3-stores-sidebar__mobile-links a.is-active,
.t3-inner .t3-stores-sidebar__mobile-links a:hover {
    background: rgba(15, 118, 110, 0.1);
    color: var(--t3-ink);
}

@media (min-width: 992px) {
    .t3-inner .t3-stores-sidebar__mobile {
        display: none;
    }
}

.t3-inner .t3-stores-sidebar__nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 14px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 8px 28px rgba(12, 27, 24, 0.06);
}

@media (min-width: 992px) {
    .t3-inner .t3-stores-sidebar__nav {
        display: flex;
    }
}

.t3-inner .t3-stores-sidebar__nav a {
    display: flex;
    align-items: center;
    padding: 11px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--t3-muted);
    border: 1px solid transparent;
}

.t3-inner .t3-stores-sidebar__nav a:hover {
    background: rgba(15, 118, 110, 0.06);
    color: var(--t3-ink);
}

.t3-inner .t3-stores-sidebar__nav a.is-active {
    background: rgba(15, 118, 110, 0.12);
    border-color: rgba(15, 118, 110, 0.22);
    color: var(--t3-ink);
}

.t3-inner .t3-stores-main__head h2 {
    font-family: var(--t3-font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--t3-ink);
}

.t3-inner .t3-stores-main__head p {
    margin: 0 0 22px;
    font-size: 0.92rem;
    color: var(--t3-muted);
}

.t3-inner .t3-stores-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .t3-inner .t3-stores-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

.t3-inner .t3-stores-card {
    position: relative;
    padding: 22px 20px 20px;
    border-radius: 14px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 10px 32px rgba(12, 27, 24, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.t3-inner .t3-stores-card__index {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--t3-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(19, 39, 34, 0.07);
    line-height: 1;
}

.t3-inner .t3-stores-card__title {
    font-family: var(--t3-font-display);
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 10px;
    padding-right: 3rem;
    color: var(--t3-ink);
}

.t3-inner .t3-stores-card__desc {
    margin: 0 0 16px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--t3-muted);
    flex: 1;
}

.t3-inner .t3-stores-card__actions {
    margin-top: auto;
}

.t3-inner .t3-stores-bottom-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 28px 24px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: var(--t3-surface);
    border: 1px solid var(--t3-border);
    box-shadow: 0 14px 40px rgba(12, 27, 24, 0.07);
}

@media (min-width: 768px) {
    .t3-inner .t3-stores-bottom-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
}

.t3-inner .t3-stores-bottom-cta__copy h2 {
    font-family: var(--t3-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t3-ink);
}

.t3-inner .t3-stores-bottom-cta__copy p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--t3-muted);
    max-width: 34rem;
    line-height: 1.55;
}

@media (max-width: 767px) {
    .t3-inner .t3-legal-hero__aside .t3-btn,
    .t3-inner .t3-stores-hero__aside .t3-btn {
        width: 100%;
        justify-content: center;
    }

    .t3-inner .t3-legal-bottom-cta .t3-btn,
    .t3-inner .t3-stores-bottom-cta .t3-btn {
        width: 100%;
        justify-content: center;
    }
}
