
    :root {
        --tdm-white: #ffffff;
        --tdm-black: #0a0a0a;
        --tdm-accent: #d4a017;
        --tdm-ink: #171a14;
        --tdm-ink-soft: #4a4f45;
        --tdm-cloud: #f4f7ef;
        --tdm-line: #e3e9d9;
        --tdm-dark-card: #141513;
        --tdm-dark-line: #26281f;
        --tdm-dark-text: #c9d0bd;
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Manrope', sans-serif;
        color: var(--tdm-ink);
        background: var(--tdm-white);
        margin: 0;
        -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4,
    .tdm-display {
        font-family: 'Sora', sans-serif;
    }

    a {
        text-decoration: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

    :focus-visible {
        outline: 3px solid var(--tdm-accent);
        outline-offset: 2px;
    }

    .internal-gold {
        color: var(--tdm-accent);
        font-weight: 600;
    }

    .internal-gold:hover {
        text-decoration: underline;
    }

    .tdm-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ===== shared section heading rule ===== */
    .tdm-section-heading {
        font-size: 40px;
        line-height: 1.15;
        font-weight: 800;
        margin-bottom: 14px;
    }

    .tdm-section-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--tdm-accent);
        margin-bottom: 14px;
    }

    .tdm-section-eyebrow::before {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--tdm-accent);
        display: inline-block;
    }

    .tdm-section-lede {
        text-align: justify;
        font-size: 16.5px;
        color: var(--tdm-ink-soft);
        max-width: 680px;
        margin-bottom: 0;
    }

    [data-cyclic="2"] .tdm-section-lede,
    .tdm-why-us-section .tdm-section-lede,
    .tdm-industries-dark-section .tdm-section-lede {
        color: var(--tdm-dark-text);
        text-align: justify;
    }

    [data-cyclic="2"] .tdm-section-heading,
    .tdm-why-us-section .tdm-section-heading,
    .tdm-industries-dark-section .tdm-section-heading {
        color: var(--tdm-white);
    }

    @media (max-width:768px) {
        .tdm-section-heading {
            font-size: 30px;
        }
    }

    @media (max-width:480px) {
        .tdm-section-heading {
            font-size: 26px;
        }
    }

    /* =========================================================
   SECTION 1 — HERO
========================================================= */
    #tdm-hero-section {
        text-align: justify;
        background: var(--tdm-white);
        padding: 64px 0 56px;
        position: relative;
        overflow: hidden;
    }

    .tdm-hero-grain {
        position: absolute;
        top: -120px;
        right: -160px;
        width: 520px;
        height: 520px;
        background: radial-gradient(circle, rgba(212, 160, 23, .14) 0%, rgba(212, 160, 23, 0) 70%);
        pointer-events: none;
    }

    .tdm-hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
        align-items: center;
        gap: 55px;
    }

    .tdm-hero-content {
        position: relative;
        z-index: 2;
    }

    .tdm-hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        border: 1px solid var(--tdm-line);
        border-radius: 999px;
        font-size: 12.5px;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--tdm-accent);
        background: var(--tdm-cloud);
        margin-bottom: 20px;
    }

    .tdm-hero-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--tdm-accent);
        display: inline-block;
    }

    .tdm-hero-title {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -.01em;
        margin-bottom: 18px;
        color: var(--tdm-ink);
    }

    .tdm-hero-accent-word {
        color: var(--tdm-accent);
    }

    .tdm-hero-sub {
        font-size: 18px;
        line-height: 1.7;
        color: var(--tdm-ink);
        max-width: 680px;
        margin-bottom: 16px;
        text-align: justify;
    }

    .tdm-hero-description {
        font-size: 15.5px;
        line-height: 1.75;
        color: var(--tdm-ink-soft);
        max-width: 680px;
        margin-bottom: 16px;
        text-align: justify;
    }

    .tdm-hero-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 22px;
        margin-bottom: 28px;
    }

    .tdm-hero-highlight {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 11px 10px;
        border: 1px solid var(--tdm-line);
        background: var(--tdm-cloud);
        border-radius: 7px;
        font-size: 12.5px;
        line-height: 1.45;
        color: var(--tdm-ink);
    }

    .tdm-highlight-icon {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--tdm-accent);
        color: #fff;
        border-radius: 50%;
        font-size: 11px;
        font-weight: 800;
    }

    .tdm-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
    }

    .tdm-hero-cta-primary {
        background: var(--tdm-accent);
        color: var(--tdm-white);
        padding: 14px 26px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 15px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid var(--tdm-black);
        transition: background .25s ease, transform .2s ease;
    }

    .tdm-hero-cta-primary:hover {
        transform: translateY(-2px);
    }

    .tdm-hero-visual {
        position: relative;
        z-index: 2;
    }

    .tdm-hero-image-wrap {
        position: relative;
        padding: 14px;
    }

    .tdm-hero-image-accent {
        position: absolute;
        width: 150px;
        height: 150px;
        right: -5px;
        top: -8px;
        border-top: 3px solid var(--tdm-accent);
        border-right: 3px solid var(--tdm-accent);
        border-radius: 0 18px 0 0;
        z-index: 0;
    }

    .tdm-hero-image {
        width: 100%;
        height: 265px;
        object-fit: cover;
        display: block;
        border-radius: 14px;
        position: relative;
        z-index: 1;
        border: 1px solid var(--tdm-line);
    }

    .tdm-hero-image-card {
        position: absolute;
        left: 22px;
        bottom: -30px;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 13px 17px;
        background: var(--tdm-black);
        color: #fff;
        border-left: 4px solid var(--tdm-accent);
        border-radius: 8px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    }

    .tdm-video-card-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--tdm-accent);
        color: #fff;
        font-size: 15px;
    }

    .tdm-hero-image-card strong {
        display: block;
        font-size: 14px;
        margin-bottom: 2px;
    }

    .tdm-hero-image-card span {
        display: block;
        font-size: 11px;
        color: #d2d2d2;
    }

    @media (max-width:1000px) {
        .tdm-hero-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .tdm-hero-content {
            max-width: 850px;
        }

        .tdm-hero-visual {
            max-width: 700px;
            width: 100%;
            margin: 0 auto 40px;
        }

        .tdm-hero-image {
            height: 360px;
        }
    }

    @media (max-width:768px) {
        #tdm-hero-section {
            padding: 44px 0 36px;
        }

        .tdm-hero-title {
            font-size: 34px;
        }

        .tdm-hero-sub {
            font-size: 16px;
        }

        .tdm-hero-description {
            font-size: 14.5px;
        }

        .tdm-hero-highlights {
            grid-template-columns: 1fr;
        }

        .tdm-hero-image {
            height: 280px;
        }
    }

    @media (max-width:480px) {
        .tdm-hero-title {
            font-size: 30px;
        }

        .tdm-hero-actions {
            flex-direction: column;
        }

        .tdm-hero-cta-primary {
            width: 100%;
            justify-content: center;
        }

        .tdm-hero-image-card {
            left: 4px;
            padding: 10px 12px;
        }
    }

    /* =========================================================
   SECTION 2 — DEFINITION
   CYCLIC 2
========================================================= */

    #tdm-definition-section {
        background: var(--tdm-black);
        padding: 64px 0;
        color: var(--tdm-white);
    }


    /* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

    .tdm-definition-layout {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        align-items: center;
        gap: 50px;
    }


    /* =========================================================
   LEFT — CONTENT
========================================================= */

    .tdm-definition-content {
        min-width: 0;
    }


    /* =========================================================
   CONTENT PANELS
========================================================= */

    .tdm-def-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-top: 30px;
    }

    .tdm-def-panel {
        background: #FFE28A;
        border: 1px solid var(--tdm-dark-line);
        border-radius: 12px;
        padding: 24px 22px;
        transition:
            border-color .25s ease,
            transform .25s ease;
    }

    .tdm-def-panel:hover {
        border-color: var(--tdm-accent);
        transform: translateY(-4px);
    }


    /* =========================================================
   PANEL TAG
========================================================= */

    .tdm-def-panel-tag {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--tdm-accent);
        margin-bottom: 10px;
        display: block;
    }


    /* =========================================================
   PANEL HEADING
========================================================= */

    .tdm-def-panel h3 {
        font-size: 21px;
        color: #111;
        margin-bottom: 10px;
        font-weight: 700;
    }


    /* =========================================================
   PANEL PARAGRAPH
========================================================= */

    .tdm-def-panel p {
        text-align: justify;
        color: #555;
        font-size: 15px;
        line-height: 1.65;
        margin: 0;
    }


    /* =========================================================
   NOTE
========================================================= */

    .tdm-def-note {
        text-align: justify;
        margin-top: 22px;
        border-left: 3px solid var(--tdm-accent);
        padding: 14px 18px;
        background: #FFE28A;
        border-radius: 0 8px 8px 0;
        color: black;
        font-size: 15px;
        line-height: 1.65;
    }


    /* =========================================================
   RIGHT — IMAGE
========================================================= */

    .tdm-definition-image {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tdm-definition-image img {
        border: 3px solid goldenrod;
        width: 100%;
        max-width: 520px;
        height: auto;
        display: block;
        border-radius: 14px;
        object-fit: cover;
    }


    /* =========================================================
   TABLET
========================================================= */

    @media (max-width: 992px) {

        .tdm-definition-layout {
            grid-template-columns: 1fr;
            gap: 35px;
        }

        .tdm-definition-content {
            order: 1;
        }

        .tdm-definition-image {
            order: 2;
        }

        .tdm-definition-image img {
            max-width: 600px;
        }
    }


    /* =========================================================
   MOBILE
========================================================= */

    @media (max-width: 768px) {

        .tdm-def-split {
            grid-template-columns: 1fr;
        }

        .tdm-definition-layout {
            gap: 28px;
        }
    }


    @media (max-width: 576px) {

        #tdm-definition-section {
            padding: 50px 0;
        }

        .tdm-def-panel {
            padding: 22px 18px;
        }

        .tdm-definition-image img {
            max-width: 100%;
            border-radius: 12px;
        }
    }

    /* =========================================================
   SECTION 3 — WHY MATTERS (icon grid)
========================================================= */
    #tdm-why-matters-section {
        background: var(--tdm-white);
        padding: 64px 0;
    }

    .tdm-why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        margin-top: 32px;
    }

    .tdm-why-block {
        padding: 22px 20px;
        border: 1px solid var(--tdm-line);
        border-radius: 10px;
        background: #FFE28A;
        transition: box-shadow .25s ease, border-color .25s ease;
    }

    .tdm-why-block:hover {
        box-shadow: 0 10px 24px rgba(23, 26, 20, .08);
        border-color: var(--tdm-accent);
    }

    .tdm-why-icon {
        width: 42px;
        height: 42px;
        border-radius: 9px;
        background: var(--tdm-black);
        color: var(--tdm-accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        margin-bottom: 14px;
        font-weight: 700;
    }

    .tdm-why-block h3 {
        font-size: 16.5px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .tdm-why-block p {
        text-align: justify;
        font-size: 14px;
        color: var(--tdm-ink-soft);
        line-height: 1.6;
        margin: 0;
    }

    .tdm-why-caveat {
        text-align: justify;
        margin-top: 26px;
        font-size: 14.5px;
        color: var(--tdm-ink-soft);
        border-top: 1px dashed var(--tdm-line);
        padding-top: 18px;
        max-width: 760px;
    }

    @media (max-width:992px) {
        .tdm-why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:480px) {
        .tdm-why-grid {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SECTION 4 — SERVICES
========================================================= */
    #tdm-services-section {
        background: var(--tdm-black);
        padding: 64px 0;
        color: var(--tdm-white);
    }

    .tdm-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 34px;
    }

    .tdm-service-card {
        background: var(--tdm-dark-card);
        border: 1px solid var(--tdm-dark-line);
        border-radius: 12px;
        padding: 24px 22px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        overflow: hidden;
        transition: transform .25s ease;
    }

    .tdm-service-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--tdm-accent);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform .3s ease;
    }

    .tdm-service-card:hover::before {
        transform: scaleY(1);
    }

    .tdm-service-card:hover {
        transform: translateY(-5px);
    }

    .tdm-service-index {
        font-family: 'Sora', sans-serif;
        font-size: 13px;
        color: var(--tdm-accent);
        font-weight: 700;
        letter-spacing: .08em;
    }

    .tdm-service-card h3 {
        font-size: 17.5px;
        font-weight: 700;
        color: var(--tdm-white);
        margin: 2px 0 6px;
    }

    .tdm-service-card p {
        text-align: justify;
        font-size: 13.6px;
        line-height: 1.6;
        color: var(--tdm-dark-text);
        margin: 0;
    }

    .tdm-service-tags {
        margin-top: auto;
        padding-top: 12px;
        border-top: 1px solid var(--tdm-dark-line);
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .tdm-service-tags span {
        font-size: 11px;
        padding: 4px 9px;
        border-radius: 999px;
        border: 1px solid var(--tdm-dark-line);
        color: var(--tdm-dark-text);
    }

    @media (max-width:992px) {
        .tdm-services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:576px) {
        .tdm-services-grid {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SECTION 5 — GOALS ROW (categories)
========================================================= */
    #tdm-goals-section {
        background: var(--tdm-white);
        padding: 64px 0;
    }

    .tdm-goals-row {
        margin-top: 38px;
        display: grid;
        gap: 16px;
    }

    .tdm-goals-row-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .tdm-goal-card {
        position: relative;
        min-height: 220px;
        padding: 24px 21px 20px;
        display: flex;
        flex-direction: column;
        background: #FFE28A;
        border: 1px solid var(--tdm-line);
        border-radius: 10px;
        overflow: hidden;
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .tdm-goal-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--tdm-accent);
        transform: scaleY(.25);
        transform-origin: center;
        transition: transform .3s ease;
    }

    .tdm-goal-label {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        margin-bottom: 15px;
        padding: 5px 9px;
        font-size: 10.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--tdm-accent);
        border: 1px solid rgba(212, 160, 23, .35);
        border-radius: 999px;
    }

    .tdm-goal-card h3 {
        margin: 0 0 9px;
        font-size: 18px;
        font-weight: 700;
        color: var(--tdm-ink);
    }

    .tdm-goal-card p {
        margin: 0;
        text-align: justify;
        font-size: 14px;
        line-height: 1.65;
        color: var(--tdm-ink-soft);
    }

    .tdm-goal-where {
        margin-top: auto;
        padding-top: 17px;
        font-size: 12px;
        font-weight: 600;
        color: var(--tdm-ink);
        border-top: 1px solid var(--tdm-line);
    }

    .tdm-goal-card:hover {
        border-color: var(--tdm-accent);
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    }

    .tdm-goal-card:hover::before {
        transform: scaleY(1);
    }

    @media (max-width:768px) {
        .tdm-goals-row-3 {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SECTION 6/14 — COMPARISON TABLE
========================================================= */
    .tdm-comparison-section {
        text-align: justify;
        background: var(--tdm-black);
        padding: 64px 0;
        color: var(--tdm-white);
    }

    .tdm-compare-wrap {
        margin-top: 30px;
        border: 1px solid var(--tdm-dark-line);
        border-radius: 12px;
        overflow: hidden;
    }

    .tdm-compare-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }

    .tdm-compare-table th,
    .tdm-compare-table td {
        padding: 15px 16px;
        text-align: left;
        border-bottom: 1px solid var(--tdm-dark-line);
        vertical-align: top;
    }

    .tdm-compare-table thead th {
        background: var(--tdm-dark-card);
        color: var(--tdm-accent);
        font-weight: 700;
        font-size: 12.5px;
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    .tdm-compare-table tbody th {
        color: var(--tdm-white);
        font-weight: 600;
        width: 18%;
        background: rgba(255, 255, 255, .02);
    }

    .tdm-compare-table tbody td {
        color: var(--tdm-dark-text);
    }

    .tdm-compare-table tbody tr:last-child th,
    .tdm-compare-table tbody tr:last-child td {
        border-bottom: none;
    }

    .tdm-compare-table tbody tr:hover td,
    .tdm-compare-table tbody tr:hover th {
        background: rgba(212, 160, 23, .05);
    }

    @media (max-width:768px) {
        .tdm-compare-wrap {
            overflow-x: auto;
        }

        .tdm-compare-table {
            min-width: 620px;
        }
    }

    /* =========================================================
   SECTION 7 — PROCESS TRACK
========================================================= */
    #tdm-process-section {
        background: var(--tdm-white);
        padding: 64px 0;
    }

    .tdm-process-track {
        margin-top: 34px;
        display: grid;
        gap: 16px 14px;
    }

    .tdm-process-track-8 {
        grid-template-columns: repeat(4, 1fr);
    }

    .tdm-process-step {
        position: relative;
        padding: 20px 16px 16px;
        border: 1px solid var(--tdm-line);
        border-radius: 10px;
        background: #FFE28A;
    }

    .tdm-process-num {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        font-size: 22px;
        color: var(--tdm-accent);
        margin-bottom: 8px;
    }

    .tdm-process-step h4 {
        font-size: 14.5px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .tdm-process-step p {
        text-align: justify;
        font-size: 12.8px;
        color: var(--tdm-ink-soft);
        line-height: 1.55;
        margin: 0;
    }

    @media (max-width:992px) {
        .tdm-process-track-8 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:400px) {
        .tdm-process-track-8 {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SECTION 8 — PLATFORM ROWS (DLT)
========================================================= */
    .tdm-platform-section {
        background: var(--tdm-black);
        padding: 64px 0;
        color: var(--tdm-white);
    }

    .tdm-platform-list {
        margin-top: 38px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .tdm-platform-row {
        position: relative;
        min-height: 150px;
        padding: 25px 22px 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        background: var(--tdm-dark-card);
        border: 1px solid var(--tdm-dark-line);
        border-radius: 10px;
        overflow: hidden;
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .tdm-platform-row::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--tdm-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .tdm-platform-name {
        font-family: 'Sora', sans-serif;
        font-weight: 700;
        font-size: 16.5px;
        color: var(--tdm-accent);
    }

    .tdm-platform-desc {
        font-size: 13.5px;
        line-height: 1.6;
        color: var(--tdm-dark-text);
        text-align: justify;
    }

    .tdm-platform-row:hover {
        transform: translateY(-5px);
        border-color: var(--tdm-accent);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    }

    .tdm-platform-row:hover::before {
        transform: scaleX(1);
    }

    @media (max-width:900px) {
        .tdm-platform-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:640px) {
        .tdm-platform-list {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SECTION 9 — MISTAKES CHECKLIST (reuses effective styles)
========================================================= */
    .tdm-effective-section {
        background: var(--tdm-white);
        padding: 64px 0;
    }

    .tdm-checklist {
        margin-top: 38px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .tdm-check-item {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        min-height: 150px;
        padding: 24px 22px;
        background: #FFE28A;
        border: 1px solid var(--tdm-line);
        border-radius: 10px;
        overflow: hidden;
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .tdm-check-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--tdm-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .tdm-check-mark {
        flex: 0 0 auto;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--tdm-accent);
        color: var(--tdm-black);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 16px;
        transition: transform .25s ease, border-radius .25s ease;
    }

    .tdm-check-item p {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        color: var(--tdm-ink-soft);
        text-align: justify;
    }

    .tdm-check-item p b {
        color: var(--tdm-ink);
    }

    .tdm-check-item:hover {
        transform: translateY(-5px);
        border-color: var(--tdm-accent);
        box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    }

    .tdm-check-item:hover::before {
        transform: scaleX(1);
    }

    .tdm-check-item:hover .tdm-check-mark {
        transform: rotate(4deg);
        border-radius: 50%;
    }

    @media (max-width:900px) {
        .tdm-checklist {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:640px) {
        .tdm-checklist {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SECTION 10 — GLOSSARY (seo tile reuse)
========================================================= */
    .tdm-seo-section {
        background: var(--tdm-black);
        padding: 64px 0;
        color: var(--tdm-white);
    }

    .tdm-seo-grid {
        margin-top: 38px;
        display: grid;
        gap: 14px;
    }

    .tdm-seo-grid-7 {
        grid-template-columns: repeat(3, 1fr);
    }

    .tdm-seo-tile {
        position: relative;
        min-height: 140px;
        padding: 22px 21px 21px;
        background: var(--tdm-dark-card);
        border: 1px solid var(--tdm-dark-line);
        border-radius: 10px;
        overflow: hidden;
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .tdm-seo-tile::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--tdm-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .tdm-seo-tile-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 16px;
        border-radius: 8px;
        border: 1px solid var(--tdm-accent);
        color: var(--tdm-accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12.5px;
        font-weight: 800;
        transition: transform .25s ease, border-radius .25s ease;
    }

    .tdm-seo-tile h4 {
        margin: 0 0 7px;
        font-size: 14.8px;
        font-weight: 700;
        color: var(--tdm-white);
    }

    .tdm-seo-tile p {
        margin: 0;
        font-size: 13px;
        line-height: 1.6;
        color: var(--tdm-dark-text);
        text-align: justify;
    }

    .tdm-seo-tile:hover {
        transform: translateY(-5px);
        border-color: var(--tdm-accent);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
    }

    .tdm-seo-tile:hover::before {
        transform: scaleX(1);
    }

    .tdm-seo-tile:hover .tdm-seo-tile-icon {
        transform: rotate(4deg);
        border-radius: 50%;
    }

    @media (max-width:992px) {
        .tdm-seo-grid-7 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:640px) {
        .tdm-seo-grid-7 {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SECTION 11 — USE CASES (light chips reuse)
========================================================= */
    .tdm-industries-section {
        background: var(--tdm-white);
        padding: 64px 0;
    }

    .tdm-industries-grid {
        margin-top: 30px;
        display: grid;
        gap: 14px;
    }

    .tdm-industries-grid-7 {
        grid-template-columns: repeat(4, 1fr);
    }

    .tdm-industry-chip {
        text-align: justify;
        padding: 18px 16px;
        border: 1px solid var(--tdm-line);
        border-radius: 10px;
        background: #FFE28A;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .tdm-industry-chip:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(23, 26, 20, .09);
    }

    .tdm-industry-chip h4 {
        font-size: 14.5px;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--tdm-accent);
    }

    .tdm-industry-chip p {
        font-size: 12.8px;
        color: var(--tdm-ink-soft);
        line-height: 1.55;
        margin: 0;
    }

    @media (max-width:992px) {
        .tdm-industries-grid-7 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:480px) {
        .tdm-industries-grid-7 {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SECTION 12 — INDUSTRIES DARK
========================================================= */

    .tdm-industries-dark-section {
        background: var(--tdm-black);
        padding: 64px 0;
        color: var(--tdm-white);
    }


    /* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

    .tdm-industries-dark-layout {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        align-items: center;
        gap: 50px;
    }


    /* =========================================================
   LEFT — CONTENT
========================================================= */

    .tdm-industries-dark-content {
        min-width: 0;
    }


    /* =========================================================
   INDUSTRY GRID
========================================================= */

    .tdm-industries-dark-grid {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }


    /* =========================================================
   INDUSTRY CHIPS
========================================================= */

    .tdm-industry-chip-dark {
        padding: 16px 14px;
        text-align: center;
        background: var(--tdm-dark-card);
        border: 1px solid var(--tdm-dark-line);
        border-radius: 10px;
        color: var(--tdm-dark-text);
        font-size: 13.5px;
        font-weight: 600;
        transition:
            transform .2s ease,
            border-color .2s ease,
            color .2s ease;
    }

    .tdm-industry-chip-dark:hover {
        transform: translateY(-3px);
        border-color: var(--tdm-accent);
        color: var(--tdm-accent);
    }


    /* =========================================================
   RIGHT — IMAGE
========================================================= */

    .tdm-industries-dark-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tdm-industries-dark-image img {
        border: 3px solid goldenrod;
        width: 100%;
        max-width: 520px;
        height: auto;
        display: block;
        border-radius: 14px;
        object-fit: cover;
    }


    /* =========================================================
   TABLET
========================================================= */

    @media (max-width: 992px) {

        .tdm-industries-dark-layout {
            grid-template-columns: 1fr;
            gap: 35px;
        }

        .tdm-industries-dark-image {
            order: 2;
        }

        .tdm-industries-dark-content {
            order: 1;
        }

        .tdm-industries-dark-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .tdm-industries-dark-image img {
            max-width: 600px;
        }
    }


    /* =========================================================
   MOBILE
========================================================= */

    @media (max-width: 576px) {

        .tdm-industries-dark-section {
            padding: 50px 0;
        }

        .tdm-industries-dark-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .tdm-industry-chip-dark {
            padding: 14px 10px;
            font-size: 13px;
        }

        .tdm-industries-dark-layout {
            gap: 28px;
        }

        .tdm-industries-dark-image img {
            max-width: 100%;
            border-radius: 12px;
        }
    }

    /* =========================================================
   SECTION 13 — MESSAGE EXAMPLES (cost-row reuse, light variant)
========================================================= */
    .tdm-cost-section {
        background: var(--tdm-black);
        padding: 64px 0;
        color: var(--tdm-white);
    }

    .tdm-cost-section-light {
        background: var(--tdm-white);
        color: var(--tdm-ink);
    }

    .tdm-cost-list {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 24px;
    }

    .tdm-cost-row {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 16px;
        background: var(--tdm-dark-card);
        border: 1px solid var(--tdm-dark-line);
        border-radius: 8px;
        transition: border-color .2s ease;
    }

    .tdm-cost-section-light .tdm-cost-row {
        background: #FFE28A;
        border-color: var(--tdm-line);
    }

    .tdm-cost-row:hover {
        border-color: var(--tdm-accent);
    }

    .tdm-cost-row-title {
        font-weight: 700;
        font-size: 13.5px;
        color: var(--tdm-white);
        flex: 0 0 34%;
    }

    .tdm-cost-section-light .tdm-cost-row-title {
        color: var(--tdm-ink);
    }

    .tdm-cost-row-desc {
        font-size: 12.6px;
        color: var(--tdm-dark-text);
        line-height: 1.55;
    }

    .tdm-cost-section-light .tdm-cost-row-desc {
        text-align: justify;
        color: var(--tdm-ink-soft);
    }

    @media (max-width:768px) {
        .tdm-cost-list {
            grid-template-columns: 1fr;
        }

        .tdm-cost-row {
            flex-direction: column;
            gap: 4px;
        }
    }

    /* =========================================================
   SECTION 15 — CHOOSE US CRITERIA (light)
========================================================= */
    .tdm-choose-agency-section {
        background: var(--tdm-white);
        padding: 64px 0;
    }

    .tdm-criteria-list {
        margin-top: 38px;
        display: grid;
        gap: 18px;
    }

    .tdm-criteria-list-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .tdm-criteria-item {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 18px;
        min-height: 165px;
        padding: 24px 22px;
        background: #FFE28A;
        border: 1px solid var(--tdm-line);
        border-radius: 10px;
        overflow: hidden;
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .tdm-criteria-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--tdm-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .tdm-criteria-q {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        border-radius: 8px;
        background: var(--tdm-accent);
        color: var(--tdm-black);
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        font-size: 16px;
        transition: transform .25s ease, border-radius .25s ease;
    }

    .tdm-criteria-item h4 {
        margin: 0 0 7px;
        font-size: 15.5px;
        font-weight: 700;
        color: var(--tdm-ink);
    }

    .tdm-criteria-item p {
        margin: 0;
        font-size: 13.6px;
        line-height: 1.6;
        color: var(--tdm-ink-soft);
        text-align: justify;
    }

    .tdm-criteria-item:hover {
        transform: translateY(-5px);
        border-color: var(--tdm-accent);
        box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    }

    .tdm-criteria-item:hover::before {
        transform: scaleX(1);
    }

    .tdm-criteria-item:hover .tdm-criteria-q {
        transform: rotate(5deg);
        border-radius: 50%;
    }

    @media (max-width:900px) {
        .tdm-criteria-list-6 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:640px) {
        .tdm-criteria-list-6 {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SECTION 16 — WHY US STATS
========================================================= */
    .tdm-why-us-section {
        background: var(--tdm-black);
        padding: 64px 0;
        color: var(--tdm-white);
    }

    .tdm-stats-grid {
        margin-top: 38px;
        margin-bottom: 34px;
        display: grid;
        gap: 12px;
    }

    .tdm-stats-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .tdm-stat-card {
        position: relative;
        min-height: 110px;
        padding: 22px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: var(--tdm-dark-card);
        border: 1px solid var(--tdm-dark-line);
        border-radius: 10px;
        overflow: hidden;
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .tdm-stat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--tdm-accent);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .3s ease;
    }

    .tdm-stat-num {
        font-family: 'Sora', sans-serif;
        font-size: 30px;
        line-height: 1;
        font-weight: 800;
        color: var(--tdm-accent);
        transition: transform .25s ease;
    }

    .tdm-stat-label {
        margin-top: 9px;
        font-size: 12px;
        line-height: 1.4;
        color: var(--tdm-dark-text);
    }

    .tdm-stat-card:hover {
        transform: translateY(-5px);
        border-color: var(--tdm-accent);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
    }

    .tdm-stat-card:hover::before {
        transform: scaleX(1);
    }

    .tdm-stat-card:hover .tdm-stat-num {
        transform: scale(1.06);
    }

    .tdm-why-points {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .tdm-why-point {
        position: relative;
        padding: 21px 22px 21px 25px;
        background: var(--tdm-dark-card);
        border: 1px solid var(--tdm-dark-line);
        border-radius: 10px;
        overflow: hidden;
        transition: transform .25s ease, border-color .25s ease;
    }

    .tdm-why-point::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: var(--tdm-accent);
        transform: scaleY(.35);
        transform-origin: center;
        transition: transform .3s ease;
    }

    .tdm-why-point h4 {
        margin: 0 0 7px;
        font-size: 14.5px;
        font-weight: 700;
        color: var(--tdm-white);
    }

    .tdm-why-point p {
        margin: 0;
        font-size: 13px;
        line-height: 1.6;
        color: var(--tdm-dark-text);
        text-align: justify;
    }

    .tdm-why-point:hover {
        transform: translateY(-4px);
        border-color: var(--tdm-accent);
    }

    .tdm-why-point:hover::before {
        transform: scaleY(1);
    }

    @media (max-width:992px) {
        .tdm-stats-grid-4 {
            grid-template-columns: repeat(2, 1fr);
        }

        .tdm-why-points {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   FAQ SECTION
========================================================= */
    .fq-section {
        --fq-accent: #D4AF37;
        --fq-dark: #0d1117;
        --fq-card: #141b22;
        --fq-border: rgba(212, 175, 55, .25);
        --fq-text: #c9d1d9;
        --fq-white: #ffffff;
        --fq-radius: 14px;
        --fq-trans: .32s cubic-bezier(.4, 0, .2, 1);
        background: #000;
        padding: 72px 0 80px;
        overflow: hidden;
    }

    .fq-wrap {
        max-width: 860px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .fq-section .section-head {
        text-align: center;
        margin-bottom: 48px;
    }

    .fq-section .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, .12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, .15);
    }

    .fq-section .section-head h2 {
        color: #fff;
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        font-weight: 800;
        line-height: 1.22;
        margin: 0;
    }

    .fq-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .fq-item {
        background: var(--fq-card);
        border: 1px solid var(--fq-border);
        border-radius: var(--fq-radius);
        overflow: hidden;
        transition: border-color var(--fq-trans), box-shadow var(--fq-trans);
    }

    .fq-item:hover {
        border-color: #D4AF37;
    }

    .fq-item.fq-open {
        border-color: var(--fq-accent);
        box-shadow: 0 0 0 1px rgba(145, 217, 4, .25), 0 8px 32px rgba(0, 0, 0, .35);
    }

    .fq-btn {
        width: 100%;
        background: none;
        border: none;
        padding: 20px 22px;
        display: flex;
        align-items: center;
        gap: 16px;
        cursor: pointer;
        text-align: left;
        outline: none;
    }

    .fq-num {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(145, 217, 4, .1);
        border: 1px solid var(--fq-border);
        color: var(--fq-accent);
        font-size: .7rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: .05em;
        transition: background var(--fq-trans), border-color var(--fq-trans);
    }

    .fq-open .fq-num {
        background: var(--fq-accent);
        border-color: var(--fq-accent);
        color: var(--fq-dark);
    }

    .fq-q-text {
        margin: 0;
        padding: 0;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
        flex: 1;
        color: var(--fq-white);
        transition: color var(--fq-trans);
    }

    .fq-open .fq-q-text {
        color: var(--fq-accent);
    }

    .fq-icon {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #000;
        border: 1px solid var(--fq-border);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background var(--fq-trans);
    }

    .fq-icon svg {
        width: 13px;
        height: 13px;
        stroke: var(--fq-accent);
        transition: transform var(--fq-trans);
    }

    .fq-open .fq-icon {
        background: var(--fq-accent);
    }

    .fq-open .fq-icon svg {
        stroke: var(--fq-dark);
        transform: rotate(45deg);
    }

    .fq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--fq-trans);
        cursor: pointer;
    }

    .fq-answer-inner {
        padding: 0 22px 20px 70px;
        text-align: justify;
        color: var(--fq-text);
        font-size: .94rem;
        line-height: 1.72;
    }

    @media (max-width:600px) {
        .fq-section {
            padding: 52px 0 60px;
        }

        .fq-answer-inner {
            padding-left: 22px;
        }

        .fq-btn {
            padding: 16px 16px;
            gap: 12px;
        }
    }

    /* =========================================================
   FINAL CTA
========================================================= */
    #tdm-cta-section {
        background: var(--tdm-black);
        padding: 70px 0 64px;
        color: var(--tdm-white);
        position: relative;
        overflow: hidden;
    }

    .tdm-cta-glow {
        position: absolute;
        bottom: -140px;
        left: -100px;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(212, 160, 23, .16) 0%, rgba(212, 160, 23, 0) 70%);
        pointer-events: none;
    }

    .tdm-cta-inner {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 30px;
        align-items: center;
    }

    .tdm-cta-inner h2 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .tdm-cta-inner p {
        text-align: justify;
        font-size: 15px;
        color: var(--tdm-dark-text);
        line-height: 1.65;
        max-width: 520px;
    }

    .tdm-cta-panel {
        background: var(--tdm-dark-card);
        border: 1px solid var(--tdm-dark-line);
        border-radius: 12px;
        padding: 26px;
    }

    .tdm-cta-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid var(--tdm-dark-line);
        font-size: 14.5px;
    }

    .tdm-cta-row:last-child {
        border-bottom: none;
    }

    .tdm-cta-row span:first-child {
        color: var(--tdm-dark-text);
    }

    .tdm-cta-row a,
    .tdm-cta-row b {
        color: var(--tdm-accent);
        font-weight: 700;
    }

    .tdm-cta-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 16px;
        background: var(--tdm-accent);
        color: var(--tdm-black);
        font-weight: 800;
        padding: 14px;
        border-radius: 8px;
        transition: background .2s ease;
    }

    .tdm-cta-btn:hover {
        background: var(--tdm-white);
    }

    @media (max-width:900px) {
        .tdm-cta-inner {
            grid-template-columns: 1fr;
        }
    }
