/* ==========================================================================
   TopReport.bg - redesign 2026
   Design tokens & components per design handoff (dark navy + mint, Sofia Sans)
   ========================================================================== */

:root {
    --navy-900: #0C1422;
    --navy-800: #1A2740;
    --navy-border: #1C2940;
    --navy-700: #22324F;
    --navy-600: #2C405F;
    --navy-500: #3A536F;
    --navy-outline: #2A3650;

    --accent: #48E0AE;
    --accent-hover: #66EDC0;
    --accent-deep: #0E8C6B;
    --accent-deeper: #0A6B52;
    --accent-tint: #D9F6EB;
    --accent-band-subtext: #19432F;

    --ink: #121A26;
    --muted: #5B6577;
    --text-on-dark: #F2F4F7;
    --muted-on-dark: #97A1B3;
    --footer-link: #C6CCD8;
    --surface: #F4F6F9;
    --card: #FFFFFF;
    --input-border: #D5DBE4;
    --chip-grey-bg: #EAEDF2;
    --chip-grey-text: #3D4A5C;
    --faq-border: #E3E7ED;
    --bar-light: #C9D2DE;

    --shadow-card: 0 1px 4px rgba(18, 26, 38, 0.06);
    --shadow-card-hover: 0 4px 16px rgba(18, 26, 38, 0.12);
    --radius-card: 16px;
    --radius-img: 14px;
    --radius-input: 10px;
    --radius-pill: 999px;
    --pad-x: 64px;
}

@supports (color: oklch(0% 0 0)) {
    :root {
        --accent: oklch(0.82 0.15 168);
        --accent-hover: oklch(0.87 0.15 168);
        --accent-deep: oklch(0.55 0.12 168);
        --accent-deeper: oklch(0.42 0.1 168);
        --accent-tint: oklch(0.93 0.06 168);
    }
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: 'Sofia Sans', sans-serif;
    background: #FFFFFF;
    color: var(--ink);
}

img { max-width: 100%; height: auto; }

a { transition: color 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease; }

.tr-container {
    max-width: 1440px;
    margin: 0 auto;
}

.tr-section { padding: 88px var(--pad-x); }
.tr-section--dark { background: var(--navy-900); }
.tr-section--surface { background: var(--surface); }
.tr-section--white { background: #FFFFFF; }

.eyebrow {
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 12px;
}
.eyebrow--on-dark { color: var(--accent); }

.section-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--ink);
    margin: 0;
}
.section-title--on-dark { color: var(--text-on-dark); }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 44px;
}

.section-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 3px;
    white-space: nowrap;
}
.section-link--on-dark { color: var(--text-on-dark); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn-mint,
.btn-navy,
.btn-outline-dark {
    display: inline-block;
    font-size: 17px;
    font-weight: 750;
    border-radius: var(--radius-pill);
    text-decoration: none;
    cursor: pointer;
    transition: background 150ms ease, border-color 150ms ease;
}

.btn-mint {
    background: var(--accent);
    color: var(--navy-900);
    padding: 17px 30px;
}
.btn-mint:hover { background: var(--accent-hover); color: var(--navy-900); }

.btn-navy {
    background: var(--navy-900);
    color: #FFFFFF;
    padding: 18px 36px;
    border: none;
}
.btn-navy:hover { background: var(--navy-800); color: #FFFFFF; }

.btn-outline-dark {
    color: var(--text-on-dark);
    font-weight: 600;
    padding: 17px 26px;
    border: 1.5px solid var(--navy-outline);
}
.btn-outline-dark:hover { border-color: var(--muted-on-dark); color: var(--text-on-dark); }

/* --------------------------------------------------------------------------
   Logo (rising bars + wordmark)
   -------------------------------------------------------------------------- */

.tr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.tr-logo__bars { display: flex; align-items: flex-end; gap: 4px; }
.tr-logo__bars span { width: 8px; border-radius: 2px; background: var(--text-on-dark); display: block; }
.tr-logo__bars span:nth-child(1) { height: 12px; }
.tr-logo__bars span:nth-child(2) { height: 20px; }
.tr-logo__bars span:nth-child(3) { height: 29px; background: var(--accent); }
.tr-logo__word { font-size: 23px; letter-spacing: -0.5px; color: var(--text-on-dark); }
.tr-logo__word b { font-weight: 800; }
.tr-logo__word i { font-weight: 450; font-style: normal; }

.tr-logo--footer .tr-logo__bars { gap: 3px; }
.tr-logo--footer .tr-logo__bars span { width: 7px; }
.tr-logo--footer .tr-logo__bars span:nth-child(1) { height: 10px; }
.tr-logo--footer .tr-logo__bars span:nth-child(2) { height: 17px; }
.tr-logo--footer .tr-logo__bars span:nth-child(3) { height: 24px; }
.tr-logo--footer .tr-logo__word { font-size: 21px; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.tr-nav {
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px var(--pad-x);
    gap: 24px;
}

.tr-nav__links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 15.5px;
    font-weight: 550;
}
.tr-nav__links a {
    color: var(--muted-on-dark);
    text-decoration: none;
    padding-bottom: 2px;
}
.tr-nav__links a:hover { color: var(--text-on-dark); }
.tr-nav__links a.active {
    color: var(--text-on-dark);
    border-bottom: 2px solid var(--accent);
}

.tr-nav__right { display: flex; align-items: center; gap: 22px; }
.tr-nav__phone {
    font-size: 15px;
    font-weight: 650;
    color: var(--text-on-dark);
    text-decoration: none;
    white-space: nowrap;
}
.tr-nav__cta {
    background: var(--accent);
    color: var(--navy-900);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    white-space: nowrap;
}
.tr-nav__cta:hover { background: var(--accent-hover); color: var(--navy-900); }

/* Mobile menu */

.tr-nav__burger {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.tr-nav__burger span {
    display: block;
    height: 3px;
    border-radius: 2px;
    background: var(--text-on-dark);
    width: 26px;
}
.tr-nav__burger span:nth-child(3) { width: 16px; background: var(--accent); }

.tr-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--navy-900);
    padding: 24px;
    overflow-y: auto;
}
.tr-mobile-menu.open { display: block; }
.tr-mobile-menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.tr-mobile-menu__close {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--text-on-dark);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.tr-mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 750;
    color: var(--muted-on-dark);
    text-decoration: none;
    padding: 18px 4px;
    border-bottom: 1px solid var(--navy-border);
}
.tr-mobile-menu nav a.active { color: var(--text-on-dark); }
.tr-mobile-menu nav a.active::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}
.tr-mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}
.tr-mobile-menu__actions .btn-mint,
.tr-mobile-menu__actions .btn-outline-dark { text-align: center; }
.tr-mobile-menu__socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
}
.tr-mobile-menu__socials a { color: var(--footer-link); text-decoration: none; font-size: 16px; }

/* --------------------------------------------------------------------------
   Hero (homepage)
   -------------------------------------------------------------------------- */

.tr-hero {
    background: var(--navy-900);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    padding: 96px var(--pad-x) 0 var(--pad-x);
    align-items: end;
}
.tr-hero__text { padding-bottom: 96px; }

.tr-pill-badge {
    display: inline-block;
    border: 1px solid var(--navy-outline);
    color: var(--accent);
    font-size: 14px;
    font-weight: 650;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 26px;
}

.tr-hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -2px;
    color: var(--text-on-dark);
    margin: 0 0 24px 0;
    text-wrap: balance;
}
.tr-hero__sub {
    font-size: 19.5px;
    line-height: 1.6;
    color: var(--muted-on-dark);
    margin: 0 0 36px 0;
    max-width: 520px;
}
.tr-hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.tr-hero__chart {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 360px;
}
.tr-hero__chart span {
    flex: 1;
    border-radius: 8px 8px 0 0;
    display: block;
}
.tr-hero__chart span:nth-child(1) { height: 22%; background: var(--navy-800); }
.tr-hero__chart span:nth-child(2) { height: 38%; background: var(--navy-700); }
.tr-hero__chart span:nth-child(3) { height: 30%; background: var(--navy-800); }
.tr-hero__chart span:nth-child(4) { height: 56%; background: var(--navy-600); }
.tr-hero__chart span:nth-child(5) { height: 72%; background: var(--navy-500); }
.tr-hero__chart span:nth-child(6) { height: 100%; background: var(--accent); }

/* Stats strip */

.tr-stats {
    background: var(--navy-900);
    border-top: 1px solid var(--navy-border);
    padding: 34px var(--pad-x);
    display: flex;
    gap: 72px;
    flex-wrap: wrap;
}
.tr-stats__item { display: flex; align-items: baseline; gap: 10px; }
.tr-stats__num { font-size: 30px; font-weight: 800; color: var(--accent); }
.tr-stats__num--word { font-size: 21px; letter-spacing: -0.3px; }
.tr-stats__label { font-size: 15.5px; color: var(--muted-on-dark); }

/* --------------------------------------------------------------------------
   Page header (inner pages)
   -------------------------------------------------------------------------- */

.tr-page-header {
    background: var(--navy-900);
    padding: 80px var(--pad-x) 72px var(--pad-x);
}
.tr-page-header .tr-pill-badge { margin-bottom: 22px; }
.tr-page-header h1 {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -1.6px;
    color: var(--text-on-dark);
    margin: 0 0 18px 0;
    max-width: 900px;
}
.tr-page-header p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--muted-on-dark);
    margin: 0;
    max-width: 640px;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.tr-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tr-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tr-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.tr-card {
    background: var(--card);
    border-radius: var(--radius-card);
    padding: 34px;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    display: block;
    transition: box-shadow 150ms ease;
}
a.tr-card:hover { box-shadow: var(--shadow-card-hover); }

.tr-card__index {
    font-size: 15px;
    font-weight: 800;
    color: var(--accent-deep);
    margin-bottom: 50px;
}
.tr-card h3 {
    font-size: 24px;
    font-weight: 750;
    letter-spacing: -0.4px;
    color: var(--ink);
    margin: 0 0 12px 0;
}
.tr-card p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 22px 0;
}
.tr-card__more { font-size: 15px; font-weight: 750; color: var(--ink); }

/* Icon chips (why us / values) */

.icon-chip {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.icon-chip i {
    width: 12px;
    height: 12px;
    background: var(--accent-deep);
    display: block;
}
.icon-chip--circle i { border-radius: 50%; }
.icon-chip--diamond i { transform: rotate(45deg); }
.icon-chip--ring i { background: transparent; border: 3px solid var(--accent-deep); border-radius: 50%; }

.icon-chip--lg { width: 40px; height: 40px; border-radius: 11px; margin-bottom: 18px; }
.icon-chip--lg i { width: 13px; height: 13px; }

/* Why us block */

.tr-whyus {
    background: var(--card);
    border-radius: var(--radius-card);
    padding: 56px;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
}
.tr-whyus__intro h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--ink);
    margin: 0 0 16px 0;
}
.tr-whyus__intro p { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.tr-whyus__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.tr-whyus__grid h3 { font-size: 18px; font-weight: 750; color: var(--ink); margin: 0 0 8px 0; }
.tr-whyus__grid p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }

/* Mini bar motif (projects) */

.tr-bars { display: flex; align-items: flex-end; gap: 5px; margin-bottom: 26px; }
.tr-bars span { width: 10px; border-radius: 3px; display: block; }
.tr-bars--dark span { background: var(--navy-600); }
.tr-bars--dark span:last-child { background: var(--accent); }
.tr-bars--light span { background: var(--bar-light); }
.tr-bars--light span:last-child { background: var(--accent-deep); }
.tr-bars .b16 { height: 16px; }
.tr-bars .b24 { height: 24px; }
.tr-bars .b28 { height: 28px; }
.tr-bars .b32 { height: 32px; }

/* Dark bordered cards (projects teaser / process) */

.tr-card-dark {
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-card);
    padding: 40px;
    text-decoration: none;
    display: block;
    transition: border-color 150ms ease;
}
a.tr-card-dark:hover { border-color: var(--accent); }
.tr-card-dark h3 {
    font-size: 26px;
    font-weight: 750;
    color: var(--text-on-dark);
    margin: 0 0 12px 0;
}
.tr-card-dark p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-on-dark);
    margin: 0 0 24px 0;
}
.tr-card-dark__more { font-size: 15px; font-weight: 750; color: var(--accent); }

/* Process cards */

.tr-process-card { padding: 32px; }
.tr-process-card .tr-card__index { color: var(--accent); margin-bottom: 40px; }
.tr-process-card h3 { font-size: 21px; margin-bottom: 10px; }
.tr-process-card p { font-size: 15px; margin: 0; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */

.tr-faq { max-width: 860px; margin: 0 auto; }
.tr-faq__head { text-align: center; margin-bottom: 44px; }
.tr-faq__list { display: flex; flex-direction: column; gap: 14px; }

.tr-faq details {
    border: 1.5px solid var(--faq-border);
    border-radius: 14px;
    padding: 26px 30px;
    transition: border-color 150ms ease;
}
.tr-faq details[open] { border-color: var(--accent); }
.tr-faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    list-style: none;
}
.tr-faq summary::-webkit-details-marker { display: none; }
.tr-faq summary h3 { font-size: 19px; font-weight: 750; color: var(--ink); margin: 0; }
.tr-faq summary .faq-icon {
    font-size: 22px;
    font-weight: 600;
    color: var(--muted-on-dark);
    line-height: 1;
    flex-shrink: 0;
}
.tr-faq summary .faq-icon::before { content: '+'; }
.tr-faq details[open] summary .faq-icon { color: var(--accent-deep); }
.tr-faq details[open] summary .faq-icon::before { content: '−'; }
.tr-faq details p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 12px 0 0 0;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.tr-cta-band {
    background: var(--accent);
    padding: 80px var(--pad-x);
    text-align: center;
}
.tr-cta-band h2 {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--navy-900);
    margin: 0 0 14px 0;
}
.tr-cta-band p {
    font-size: 18px;
    color: var(--accent-band-subtext);
    margin: 0 0 32px 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.tr-footer {
    background: var(--navy-900);
    padding: 56px var(--pad-x) 40px var(--pad-x);
}
.tr-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--navy-border);
}
.tr-footer__mission {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-on-dark);
    margin: 14px 0 0 0;
    max-width: 300px;
}
.tr-footer__col { display: flex; flex-direction: column; gap: 10px; }
.tr-footer__col-title {
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.tr-footer__col a {
    font-size: 15px;
    color: var(--footer-link);
    text-decoration: none;
}
.tr-footer__col a:hover { color: #FFFFFF; }
.tr-footer__copy { padding-top: 24px; font-size: 14px; color: var(--muted); }

/* --------------------------------------------------------------------------
   Services page - alternating rows
   -------------------------------------------------------------------------- */

.tr-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.tr-service-row h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--ink);
    margin: 0 0 16px 0;
}
.tr-service-row h2 a {
    color: inherit;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: border-color 150ms ease;
}
.tr-service-row h2 a:hover { border-bottom-color: var(--accent); }
.tr-service-row__num { font-size: 15px; font-weight: 800; color: var(--accent-deep); margin-bottom: 14px; }
.tr-service-row__desc { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0 0 28px 0; }
.tr-service-row__img {
    height: 380px;
    border-radius: var(--radius-card);
    overflow: hidden;
}
.tr-service-row__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tr-service-row--flip .tr-service-row__img { order: 1; }
.tr-service-row--flip .tr-service-row__text { order: 2; }

.tr-bullets { display: flex; flex-direction: column; gap: 14px; }
.tr-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--ink);
    list-style: none;
}
.tr-bullets { padding: 0; margin: 0; }
.tr-bullets li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-deep);
    flex-shrink: 0;
}

.tr-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.tr-chip {
    border: 1.5px solid var(--input-border);
    color: var(--ink);
    font-size: 14px;
    font-weight: 650;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   Projects page
   -------------------------------------------------------------------------- */

.tr-model-card { padding: 40px; }
.tr-model-card h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--ink);
    margin: 0 0 12px 0;
}
.tr-model-card p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0; }

.tr-project-card {
    background: var(--card);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    display: block;
    transition: box-shadow 150ms ease;
}
a.tr-project-card:hover { box-shadow: var(--shadow-card-hover); }
.tr-project-card__img {
    height: 180px;
    background: var(--chip-grey-bg);
    overflow: hidden;
}
.tr-project-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tr-project-card__body { padding: 28px; }
.tr-project-card h3 { font-size: 21px; font-weight: 750; color: var(--ink); margin: 0 0 10px 0; }
.tr-project-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

.tr-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 750;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}
.tr-tag--mint { background: var(--accent-tint); color: var(--accent-deeper); }
.tr-tag--grey { background: var(--chip-grey-bg); color: var(--chip-grey-text); }

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.tr-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.tr-story__img {
    height: 440px;
    border-radius: var(--radius-card);
    overflow: hidden;
}
.tr-story__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tr-story--single { grid-template-columns: 1fr; max-width: 820px; }
.tr-story h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--ink);
    margin: 0 0 18px 0;
}
.tr-story p { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 0 0 16px 0; }
.tr-story p:last-child { margin-bottom: 0; }

.tr-numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.tr-numbers__num {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--accent);
}
.tr-numbers__num--word { font-size: 30px; letter-spacing: -0.6px; line-height: 1.5; }
.tr-numbers__label { font-size: 16px; color: var(--muted-on-dark); margin-top: 4px; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.tr-contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: start;
}
.tr-contact-info { display: flex; flex-direction: column; gap: 24px; }
.tr-contact-card { padding: 36px; }
.tr-contact-card__label {
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 18px;
}
.tr-contact-card__value,
a.tr-contact-card__value {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--ink);
    text-decoration: none;
    word-break: break-word;
}
.tr-contact-card__note { font-size: 15px; color: var(--muted); margin: 10px 0 0 0; }
.tr-contact-card__socials { display: flex; gap: 12px; flex-wrap: wrap; }
.tr-contact-card__socials a {
    border: 1.5px solid var(--input-border);
    color: var(--ink);
    font-size: 15px;
    font-weight: 650;
    padding: 11px 20px;
    border-radius: var(--radius-pill);
    text-decoration: none;
}
.tr-contact-card__socials a:hover { border-color: var(--ink); }

.tr-form-card { padding: 44px; }
.tr-form-card h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: var(--ink);
    margin: 0 0 8px 0;
}
.tr-form-card__sub { font-size: 16px; color: var(--muted); margin: 0 0 30px 0; }

.tr-form { display: flex; flex-direction: column; gap: 18px; }
.tr-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tr-form__field { display: flex; flex-direction: column; gap: 8px; }
.tr-form label { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.tr-form input[type="text"],
.tr-form input[type="tel"],
.tr-form input[type="email"],
.tr-form textarea {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 16px;
    color: var(--ink);
    padding: 14px 16px;
    border: 1.5px solid var(--input-border);
    border-radius: var(--radius-input);
    outline: none;
    background: #FFFFFF;
    transition: border-color 150ms ease;
    width: 100%;
}
.tr-form textarea { resize: vertical; }
.tr-form input:focus,
.tr-form textarea:focus { border-color: var(--accent-deep); }
.tr-form input.has-error,
.tr-form textarea.has-error { border-color: #D9534F; }
.tr-form__error { font-size: 13.5px; color: #C0392B; }
.tr-form__micro { font-size: 13.5px; color: var(--muted-on-dark); }
.tr-form button { margin-top: 6px; align-self: flex-start; font-family: 'Sofia Sans', sans-serif; font-size: 17px; font-weight: 750; padding: 17px 32px; }

/* Topic chips (radio) */

.tr-topics { display: flex; gap: 10px; flex-wrap: wrap; }
.tr-topics input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.tr-topics label {
    border: 1.5px solid var(--input-border);
    background: #FFFFFF;
    color: var(--muted);
    font-size: 14.5px;
    font-weight: 650;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}
.tr-topics input[type="radio"]:checked + label {
    border-color: var(--accent-deep);
    background: var(--accent-tint);
    color: var(--accent-deeper);
}
.tr-topics input[type="radio"]:focus-visible + label { outline: 2px solid var(--accent-deep); outline-offset: 2px; }

.tr-form-success {
    background: var(--accent-tint);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.tr-form-success strong {
    display: block;
    font-size: 19px;
    font-weight: 750;
    color: var(--accent-deeper);
    margin-bottom: 6px;
}
.tr-form-success span { font-size: 15.5px; color: var(--chip-grey-text); }

/* Image placeholder (until real photos are supplied) */

.tr-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: var(--radius-card);
    background: repeating-linear-gradient(135deg, #E6EAF0 0px, #E6EAF0 14px, #DDE2EA 14px, #DDE2EA 28px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tr-img-placeholder span {
    font-size: 13px;
    color: #6B7585;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 14px;
    border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Generic content (CMS pages, detail views, errors)
   -------------------------------------------------------------------------- */

/* White card that holds CMS-entered content on detail pages */
.tr-content-card {
    max-width: 980px;
    padding: 48px 56px;
}

/* Normalize CMS-entered HTML: neutralize inline colors, fonts and centering */
.tr-content,
.tr-content * {
    color: var(--muted) !important;
    font-family: 'Sofia Sans', sans-serif !important;
    text-align: left !important;
    background: transparent !important;
}
.tr-content { font-size: 17px; line-height: 1.65; }
.tr-content p { font-size: 17px; line-height: 1.65; margin: 0 0 16px 0; }
.tr-content p:last-child { margin-bottom: 0; }

/* Bold lines in CMS content become section subheadings */
.tr-content strong, .tr-content b,
.tr-content strong *, .tr-content b * {
    color: var(--ink) !important;
    font-weight: 750;
}
.tr-content p > strong:only-child,
.tr-content p > b:only-child {
    display: inline-block;
    font-size: 21px;
    letter-spacing: -0.4px;
    margin-top: 14px;
}
.tr-content h1, .tr-content h2, .tr-content h3, .tr-content h4 {
    color: var(--ink) !important;
    font-weight: 800;
    letter-spacing: -0.6px;
    margin: 28px 0 12px 0;
}

/* Lists with mint dots */
.tr-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tr-content ul li {
    position: relative;
    padding-left: 22px;
    font-size: 16.5px;
    line-height: 1.55;
}
.tr-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-deep);
}

.tr-content img { border-radius: var(--radius-img); max-width: 100%; height: auto; }
.tr-content a { color: var(--accent-deep) !important; }

.tr-detail-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; max-width: 980px; }
.tr-detail-images a { display: block; height: 220px; border-radius: var(--radius-img); overflow: hidden; box-shadow: var(--shadow-card); transition: box-shadow 150ms ease; }
.tr-detail-images a:hover { box-shadow: var(--shadow-card-hover); }
.tr-detail-images img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Pagination (re-styled legacy) */

.pagination { display: flex; gap: 8px; list-style: none; padding: 0; margin: 44px 0 0 0; flex-wrap: wrap; }
.pagination li a, .pagination li span {
    display: inline-block;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--input-border);
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 650;
}
.pagination li.active span, .pagination li a:hover { border-color: var(--accent-deep); background: var(--accent-tint); color: var(--accent-deeper); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
    :root { --pad-x: 40px; }
    .tr-hero h1 { font-size: 56px; }
    .tr-page-header h1 { font-size: 48px; }
    .section-title { font-size: 38px; }
}

@media (max-width: 1024px) {
    .tr-hero { grid-template-columns: 1fr; gap: 40px; padding-top: 64px; }
    .tr-hero__text { padding-bottom: 0; }
    .tr-hero__chart { height: 200px; }
    .tr-grid-3, .tr-grid-4 { grid-template-columns: 1fr 1fr; }
    .tr-whyus { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
    .tr-service-row, .tr-story, .tr-contact-grid, .tr-grid-2 { grid-template-columns: 1fr; }
    .tr-service-row--flip .tr-service-row__img { order: 0; }
    .tr-service-row--flip .tr-service-row__text { order: 1; }
    .tr-service-row__img, .tr-story__img { height: 300px; }
    .tr-numbers { grid-template-columns: 1fr 1fr; }
    .tr-footer__grid { grid-template-columns: 1fr 1fr; }
    .tr-nav__links { display: none; }
}

@media (max-width: 768px) {
    :root { --pad-x: 24px; }
    .tr-section { padding-top: 40px; padding-bottom: 40px; }
    .tr-nav { padding-top: 16px; padding-bottom: 16px; }
    .tr-nav__right .tr-nav__phone, .tr-nav__right .tr-nav__cta { display: none; }
    .tr-nav__burger { display: flex; }
    .tr-hero { padding-top: 48px; }
    .tr-hero h1 { font-size: 40px; letter-spacing: -1px; }
    .tr-hero__sub { font-size: 17px; }
    .tr-hero__chart { height: 120px; gap: 8px; }
    .tr-page-header { padding: 48px var(--pad-x) 44px var(--pad-x); }
    .tr-page-header h1 { font-size: 34px; letter-spacing: -0.8px; }
    .tr-page-header p { font-size: 16.5px; }
    .section-title { font-size: 30px; letter-spacing: -0.6px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
    .tr-stats { gap: 20px 40px; }
    .tr-grid-3, .tr-grid-4 { grid-template-columns: 1fr; }
    .tr-whyus__grid { grid-template-columns: 1fr; }
    .tr-numbers { grid-template-columns: 1fr 1fr; gap: 32px; }
    .tr-numbers__num { font-size: 38px; }
    .tr-cta-band h2 { font-size: 32px; }
    .tr-cta-band { padding-top: 56px; padding-bottom: 56px; }
    .tr-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .tr-form__row { grid-template-columns: 1fr; }
    .tr-form-card { padding: 28px; }
    .tr-form button { width: 100%; min-height: 44px; }
    .btn-mint, .btn-navy, .btn-outline-dark { width: 100%; text-align: center; }
    .tr-hero__ctas { flex-direction: column; align-items: stretch; }
    .tr-whyus { padding: 28px; }
    .tr-service-row__img, .tr-story__img { height: 220px; }
    .tr-detail-images { grid-template-columns: 1fr 1fr; gap: 14px; }
    .tr-faq details { padding: 18px 20px; }
}
