@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap');

html {
    overflow-x: clip;
    max-width: 100%;
}

.td-page {
    margin: 0;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    font-family: 'Inter', system-ui, sans-serif;
    background: #0a0b0a;
    color: #e2e4e2;
    overflow-x: clip;
}

/* Theme tokens — dark (default) */
.td-band--dark {
    --td-white: #e2e4e2;
    --td-white-head: #eceeec;
    --td-white-dim: #c4c9c5;
    --td-brand: #27ae60;
    --td-brand-light: #2ecc71;
    --td-brand-dark: #1e8449;
    --td-brand-soft: rgba(39, 174, 96, 0.12);
    --td-border: rgba(226, 228, 226, 0.1);
    --td-border-strong: rgba(226, 228, 226, 0.16);
    --td-muted: rgba(226, 228, 226, 0.55);
    --td-faint: rgba(226, 228, 226, 0.36);
    --td-surface: rgba(14, 15, 14, 0.72);
    --td-surface-hover: rgba(18, 19, 18, 0.88);
    --td-band-bg: transparent;
    color: var(--td-white);
}

/* Theme tokens — light */
.td-band--light {
    --td-white: #3a403c;
    --td-white-head: #1c1f1d;
    --td-white-dim: #5c6560;
    --td-brand: #27ae60;
    --td-brand-light: #229954;
    --td-brand-dark: #1e8449;
    --td-brand-soft: rgba(39, 174, 96, 0.1);
    --td-border: rgba(28, 31, 29, 0.08);
    --td-border-strong: rgba(28, 31, 29, 0.14);
    --td-muted: rgba(28, 31, 29, 0.62);
    --td-faint: rgba(28, 31, 29, 0.42);
    --td-surface: #ffffff;
    --td-surface-hover: #fafbfa;
    --td-band-bg: #e8ebe8;
    color: var(--td-white-head);
}

/* Bands */
.td-band {
    position: relative;
    z-index: 2;
}

.td-band--dark {
    background: var(--td-band-bg);
}

.td-band--light {
    background: var(--td-band-bg);
    overflow: hidden;
}

/* Light zone atmosphere */
.td-light-deco {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.td-band--light .td-wrap {
    position: relative;
    z-index: 1;
}

.td-light-deco__mesh {
    position: absolute;
    inset: -20% -10%;
    opacity: 0.62;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(92, 101, 96, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(120, 130, 124, 0.08) 0%, transparent 38%),
        radial-gradient(rgba(92, 101, 96, 0.22) 0.6px, transparent 0.6px);
    background-size: auto, auto, 28px 28px;
    animation: tdLightMesh 24s ease-in-out infinite alternate;
}

@keyframes tdLightMesh {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-12px, 8px, 0) scale(1.02); }
}

.td-light-deco__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    will-change: transform;
}

.td-light-deco__orb--a {
    top: 8%;
    left: -6%;
    width: 340px;
    height: 340px;
    background: rgba(39, 174, 96, 0.09);
    animation: tdLightOrbA 20s ease-in-out infinite alternate;
}

.td-light-deco__orb--b {
    bottom: 12%;
    right: -4%;
    width: 420px;
    height: 420px;
    background: rgba(154, 171, 156, 0.12);
    animation: tdLightOrbB 26s ease-in-out infinite alternate;
}

.td-light-deco__orb--c {
    top: 42%;
    left: 38%;
    width: 220px;
    height: 220px;
    background: rgba(39, 174, 96, 0.05);
    animation: tdLightOrbC 18s ease-in-out infinite alternate;
}

@keyframes tdLightOrbA {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(28px, 18px, 0) scale(1.08); }
}

@keyframes tdLightOrbB {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-24px, -16px, 0) scale(1.06); }
}

@keyframes tdLightOrbC {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
    100% { transform: translate3d(16px, -22px, 0) scale(1.12); opacity: 1; }
}

.td-light-deco__ring {
    position: absolute;
    right: -6%;
    top: 50%;
    width: min(520px, 72vw);
    height: auto;
    color: rgba(92, 101, 96, 0.16);
    transform: translateY(-52%);
    animation: tdLightRing 32s linear infinite;
}

@keyframes tdLightRing {
    from { transform: translateY(-52%) rotate(0deg); }
    to { transform: translateY(-52%) rotate(360deg); }
}

.td-light-deco__panda {
    position: absolute;
    right: -4%;
    top: 50%;
    width: min(640px, 78vw);
    height: auto;
    opacity: 1;
    transform: translateY(-48%);
    filter: none;
    animation: tdLightPanda 22s ease-in-out infinite alternate;
}

@keyframes tdLightPanda {
    0% { transform: translate3d(0, -48%, 0) scale(1); }
    100% { transform: translate3d(-14px, calc(-48% + 12px), 0) scale(1.03); }
}

.td-light-deco__panda--left {
    right: auto;
    left: -12%;
    top: 62%;
    width: min(420px, 55vw);
    opacity: 0.65;
    animation: tdLightPandaLeft 26s ease-in-out infinite alternate;
}

.td-light-deco__ring--blog {
    right: auto;
    left: -10%;
    top: 28%;
    width: min(380px, 50vw);
    transform: translateY(-50%);
    animation: tdLightRingBlog 36s linear infinite;
}

@keyframes tdLightRingBlog {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes tdLightPandaLeft {
    0% { transform: translate3d(0, -48%, 0) scale(1); }
    100% { transform: translate3d(10px, calc(-48% - 8px), 0) scale(1.02); }
}

/* Section bridges — dark ↔ light (service pages: hero + footer only) */
.td-bridge {
    position: relative;
    z-index: 2;
    height: 112px;
    margin-top: -72px;
    pointer-events: none;
    overflow: hidden;
}

.td-bridge--to-dark {
    height: 96px;
    margin-top: -20px;
    margin-bottom: 0;
}

.td-band--dark.td-process {
    padding-top: 44px;
}

.td-bridge__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.td-bridge--to-light .td-bridge__veil {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(10, 11, 10, 0.12) 28%,
        rgba(232, 235, 232, 0.55) 72%,
        rgba(232, 235, 232, 0.92) 100%
    );
}

.td-bridge--to-dark .td-bridge__veil {
    background: linear-gradient(
        180deg,
        rgba(232, 235, 232, 0.95) 0%,
        rgba(232, 235, 232, 0.4) 30%,
        rgba(10, 11, 10, 0.2) 70%,
        transparent 100%
    );
}

.td-bridge__svg {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
}

.td-bridge__depth {
    animation: tdBridgeDrift 14s ease-in-out infinite alternate;
    transform-origin: center bottom;
}

.td-bridge--to-light .td-bridge__depth {
    fill: rgba(212, 216, 212, 0.45);
}

.td-bridge--to-dark .td-bridge__depth {
    fill: rgba(20, 22, 21, 0.35);
}

.td-bridge--to-light .td-bridge__fill {
    fill: #e8ebe8;
}

.td-bridge--to-dark .td-bridge__fill {
    fill: #0a0b0a;
}

.td-bridge__crest {
    fill: none;
    stroke: rgba(39, 174, 96, 0.55);
    stroke-width: 1.25;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 6px rgba(39, 174, 96, 0.2));
    animation: tdBridgeGlow 5s ease-in-out infinite;
}

@keyframes tdBridgeDrift {
    0% { transform: translateX(0) scaleY(1); }
    100% { transform: translateX(-1.5%) scaleY(1.04); }
}

@keyframes tdBridgeGlow {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.95; }
}

.td-band--light.td-section {
    margin-top: -24px;
    padding-top: 56px;
}

.td-page {
    --td-star-fill: rgba(220, 224, 220, 0.42);
    --td-star-line-base: 200, 210, 205;
    --td-sage: #9aab9c;
    --td-sage-light: #b8c9ba;
}

.td-page *,
.td-page *::before,
.td-page *::after {
    box-sizing: border-box;
}

.td-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.td-nebula {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    background:
        radial-gradient(ellipse 75% 55% at 12% 18%, rgba(154, 171, 156, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 65% 45% at 88% 78%, rgba(120, 140, 125, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 45% 35% at 55% 35%, rgba(255, 255, 255, 0.025) 0%, transparent 45%);
    animation: tdNebula 16s ease-in-out infinite alternate;
}

@keyframes tdNebula {
    0% { opacity: 0.9; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.02); }
}

.td-grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    transition: opacity 0.6s ease;
}

.td-glow {
    position: fixed;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.14;
    transition: transform 0.45s ease-out, opacity 0.6s ease;
}

.td-glow--a {
    top: -160px;
    left: -120px;
    background: #3d4a3f;
}

.td-glow--b {
    bottom: -200px;
    right: -140px;
    background: #2a3330;
}

/* Header */
.td-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 28px;
    border-bottom: 1px solid var(--td-border);
    background: rgba(10, 11, 10, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition:
        background 0.45s ease,
        border-color 0.45s ease,
        backdrop-filter 0.45s ease,
        -webkit-backdrop-filter 0.45s ease,
        box-shadow 0.45s ease;
}

.td-header--over-hero {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.td-header--over-hero.is-scrolled,
.td-header--over-hero:has(.td-nav__item--has-sub:hover),
.td-header--over-hero:has(.td-nav__item--has-sub:focus-within),
.td-page.is-menu-open .td-header--over-hero {
    background: rgba(10, 11, 10, 0.78);
    border-bottom-color: var(--td-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.td-header--over-hero:not(.is-scrolled) .td-logo {
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.td-header--over-hero:not(.is-scrolled) .td-nav__link,
.td-header--over-hero:not(.is-scrolled) .td-nav__trigger {
    color: rgba(236, 240, 236, 0.92);
}

.td-header--over-hero:not(.is-scrolled) .td-nav__chev {
    opacity: 0.75;
}

.td-header--over-hero:not(.is-scrolled) .td-header__cta {
    background: rgba(255, 255, 255, 0.1);
    color: var(--td-white-head);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.td-header--over-hero:not(.is-scrolled) .td-header__cta:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.td-header--over-hero:not(.is-scrolled) .td-burger {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.td-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
}

.td-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--td-white-head);
    text-decoration: none;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.td-logo span {
    color: var(--td-brand);
}

.td-nav {
    margin: 0 auto;
}

.td-nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.td-nav__item {
    position: relative;
}

.td-nav__link,
.td-nav__trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border: none;
    background: none;
    color: var(--td-muted);
    text-decoration: none;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s;
}

.td-nav__link::after,
.td-nav__trigger::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 1px;
    background: var(--td-white-dim);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.td-nav__link:hover,
.td-nav__trigger:hover,
.td-nav__item--has-sub:hover > .td-nav__trigger,
.td-nav__item.is-current > .td-nav__parent > .td-nav__link {
    color: var(--td-white-head);
}

.td-nav__link:hover::after,
.td-nav__trigger:hover::after,
.td-nav__item--has-sub:hover > .td-nav__trigger::after {
    transform: scaleX(1);
}

.td-nav__chev {
    width: 12px;
    height: 12px;
    opacity: 0.55;
    transition: transform 0.25s, opacity 0.25s;
    flex-shrink: 0;
}

.td-nav__item--has-sub:hover > .td-nav__trigger .td-nav__chev,
.td-nav__item--has-sub.is-open > .td-nav__trigger .td-nav__chev,
.td-nav__item--has-sub.is-open > .td-nav__parent .td-nav__chev {
    transform: rotate(180deg);
    opacity: 1;
}

.td-nav__parent {
    display: inline-flex;
    align-items: center;
}

.td-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: -4px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--td-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.td-nav__toggle:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--td-white-head);
}

.td-nav__drop {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(14, 16, 14, 0.98);
    border: 1px solid var(--td-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 120;
}

.td-nav__item--has-sub:hover > .td-nav__drop,
.td-nav__item--has-sub:focus-within > .td-nav__drop,
.td-nav__item--has-sub.is-open > .td-nav__drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.td-nav__sub {
    margin: 0;
    padding: 0;
    list-style: none;
}

.td-nav__sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--td-white-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.td-nav__sub a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--td-brand-light);
    transform: translateX(3px);
}

.td-nav__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    flex-shrink: 0;
}

.td-nav__ico svg {
    width: 16px;
    height: 16px;
}

.td-nav__ico--viz { background: rgba(59, 130, 246, 0.14); color: #60a5fa; }
.td-nav__ico--corp { background: rgba(99, 102, 241, 0.14); color: #818cf8; }
.td-nav__ico--shop { background: rgba(245, 158, 11, 0.14); color: #fbbf24; }
.td-nav__ico--cat { background: rgba(14, 165, 233, 0.14); color: #38bdf8; }
.td-nav__ico--land { background: rgba(39, 174, 96, 0.14); color: var(--td-brand-light); }
.td-nav__ico--ads { background: rgba(236, 72, 153, 0.14); color: #f472b6; }
.td-nav__ico--seo { background: rgba(39, 174, 96, 0.14); color: var(--td-brand-light); }
.td-nav__ico--admin { background: rgba(148, 163, 184, 0.14); color: #94a3b8; }
.td-nav__ico--app { background: rgba(168, 85, 247, 0.14); color: #c084fc; }
.td-nav__ico--bot { background: rgba(56, 189, 248, 0.14); color: #38bdf8; }
.td-nav__ico--ai { background: rgba(52, 211, 153, 0.14); color: #34d399; }
.td-nav__ico--blog { background: rgba(251, 146, 60, 0.14); color: #fb923c; }
.td-nav__ico--jobs { background: rgba(244, 63, 94, 0.14); color: #fb7185; }

.td-header__cta {
    flex-shrink: 0;
    padding: 10px 22px;
    border-radius: 999px;
    background: #d4d8d4;
    color: #0a0b0a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.td-header__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    background: #dfe2df;
    color: #0a0b0a;
}

.td-burger {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--td-border);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin-left: auto;
}

.td-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--td-white-dim);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.td-page.is-menu-open .td-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.td-page.is-menu-open .td-burger span:nth-child(2) {
    opacity: 0;
}

.td-page.is-menu-open .td-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.td-hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 120px 28px 100px;
}

.td-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.td-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    padding: 7px 14px 7px 11px;
    border-radius: 999px;
    border: 1px solid var(--td-border-strong);
    background: rgba(226, 228, 226, 0.04);
    font-size: 12px;
    font-weight: 500;
    color: var(--td-muted);
}

.td-badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--td-brand);
    opacity: 0.85;
    animation: tdPulse 2.4s ease-in-out infinite;
}

@keyframes tdPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.35; }
}

.td-hero h1 {
    margin: 0 0 22px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.3rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--td-white-head);
}

.td-hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--td-white-head) 0%, #c8d0ca 50%, var(--td-brand) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.td-hero__lead {
    margin: 0 0 32px;
    max-width: 470px;
    font-size: 1.02rem;
    line-height: 1.68;
    color: var(--td-muted);
    font-weight: 400;
}

.td-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.td-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.td-btn--primary {
    background: linear-gradient(135deg, var(--td-brand-light), var(--td-brand));
    color: #fff;
    box-shadow: 0 8px 28px rgba(39, 174, 96, 0.22);
}

.td-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(39, 174, 96, 0.32);
    background: linear-gradient(135deg, #3dd47a, var(--td-brand-light));
    color: #fff;
}

.td-btn--ghost {
    border: 1px solid var(--td-border-strong);
    color: var(--td-white-dim);
    background: rgba(226, 228, 226, 0.03);
}

.td-btn--ghost:hover {
    background: rgba(226, 228, 226, 0.07);
    border-color: rgba(226, 228, 226, 0.22);
    transform: translateY(-2px);
    color: var(--td-white-head);
}

.td-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--td-border);
}

.td-stats div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.td-stats strong {
    font-family: 'Sora', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--td-white-head);
    letter-spacing: -0.02em;
}

.td-stats span {
    font-size: 11px;
    color: var(--td-faint);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

/* Orbit hub */
.td-orbit {
    --orbit-r: 198px;
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 500px;
    margin: 0 auto;
    perspective: 800px;
    transition: transform 0.18s ease-out;
}

.td-orbit__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(154, 171, 156, 0.04) 40%, transparent 72%);
    filter: blur(10px);
    animation: tdHalo 7s ease-in-out infinite;
    pointer-events: none;
}

.td-orbit__track {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(var(--orbit-r) * 2 + 140px);
    height: calc(var(--orbit-r) * 2 + 140px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    animation: tdSpin 32s linear infinite;
    pointer-events: none;
}

.td-orbit__track::before {
    content: '';
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    animation: tdSpin 22s linear infinite reverse;
}

@keyframes tdHalo {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
    50% { transform: translate(-50%, -52%) scale(1.04); opacity: 1; }
}

@keyframes tdSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.td-orbit__core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 168px;
    padding: 20px 16px;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background:
        radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
        rgba(12, 14, 13, 0.94);
    border: 1px solid var(--td-border-strong);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 24px 60px rgba(0, 0, 0, 0.55);
    animation: tdCoreFloat 6s ease-in-out infinite;
}

@keyframes tdCoreFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
}

.td-orbit__tag {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--td-brand-soft);
    border: 1px solid rgba(39, 174, 96, 0.22);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6fcf97;
    line-height: 1.2;
}

.td-orbit__price {
    font-family: 'Sora', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
    margin: 2px 0;
}

.td-orbit__price small {
    font-size: 0.42em;
    font-weight: 600;
    color: var(--td-muted);
}

.td-orbit__name {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--td-white);
    line-height: 1.2;
}

.td-orbit__sub {
    margin: 4px 0 0;
    font-size: 9px;
    color: var(--td-faint);
    line-height: 1.35;
    max-width: 130px;
}

.td-orbit__node {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 112px;
    padding: 11px 13px;
    border-radius: 14px;
    background: rgba(14, 15, 14, 0.92);
    border: 1px solid var(--td-border);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    transform:
        translate(-50%, -50%)
        rotate(var(--a, 0deg))
        translateY(calc(-1 * var(--orbit-r)))
        rotate(calc(-1 * var(--a, 0deg)));
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.td-orbit__node:hover {
    border-color: var(--td-border-strong);
    background: rgba(22, 23, 22, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(226, 228, 226, 0.05) inset;
}

.td-orbit__node svg {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
    color: var(--td-white-dim);
}

.td-orbit__node span {
    display: block;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--td-faint);
}

.td-orbit__node strong {
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--td-white);
}

.td-orbit__node--mint {
    border-color: rgba(39, 174, 96, 0.18);
}

.td-orbit__node--mint svg {
    color: var(--td-brand);
}

.td-orbit__node--mint:hover {
    border-color: rgba(39, 174, 96, 0.32);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(39, 174, 96, 0.06);
}

.td-orbit__node--lime svg {
    color: var(--td-white-dim);
}

/* ── Block 2: Services + Demo ── */
.td-section {
    position: relative;
    padding: 72px 28px 100px;
}

.td-wrap {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.td-section__head {
    text-align: center;
    margin-bottom: 36px;
}

.td-section__title {
    margin: 0 0 20px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
}

.td-section__title em {
    font-style: normal;
    color: var(--td-brand);
}

.td-promo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(226, 228, 226, 0.04);
    border: 1px solid var(--td-border);
}

.td-promo__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--td-brand-soft);
    border: 1px solid rgba(39, 174, 96, 0.22);
    font-size: 12px;
    font-weight: 700;
    color: #6fcf97;
}

.td-promo__text {
    font-size: 13px;
    color: var(--td-muted);
}

.td-promo__text strong {
    color: var(--td-white);
    font-weight: 600;
}

.td-svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.td-svc {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 168px;
    padding: 18px 16px 16px;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    background: var(--td-surface);
    border: 1px solid var(--td-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s, background 0.28s;
    overflow: hidden;
}

.td-band--dark .td-svc {
    backdrop-filter: blur(12px);
    box-shadow: none;
}

.td-svc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 174, 96, 0.06), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.td-band--dark .td-svc::before {
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(226, 228, 226, 0.06), transparent 55%);
}

.td-svc:hover {
    transform: translateY(-4px);
    border-color: var(--td-border-strong);
    background: var(--td-surface-hover);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.td-band--dark .td-svc:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.td-svc:hover::before {
    opacity: 1;
}

.td-svc--promo:hover {
    border-color: rgba(39, 174, 96, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 32px rgba(39, 174, 96, 0.05);
}

.td-svc--seo:hover {
    border-color: rgba(39, 174, 96, 0.18);
}

.td-svc__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    background: var(--td-brand-soft);
    border: 1px solid rgba(39, 174, 96, 0.2);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6fcf97;
}

.td-svc__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.td-svc__icon svg {
    width: 20px;
    height: 20px;
}

.td-svc__icon--blue { background: rgba(96, 130, 180, 0.14); color: #8fafcf; }
.td-svc__icon--violet { background: rgba(130, 110, 180, 0.14); color: #b0a0d4; }
.td-svc__icon--green { background: rgba(39, 174, 96, 0.12); color: #6fcf97; }
.td-svc__icon--orange { background: rgba(180, 120, 70, 0.14); color: #d4a882; }
.td-svc__icon--cyan { background: rgba(70, 150, 150, 0.14); color: #82c4c4; }
.td-svc__icon--pink { background: rgba(180, 90, 120, 0.14); color: #d492aa; }

.td-svc__title {
    margin: 0 0 auto;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--td-white-head);
}

.td-svc__prices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.td-svc__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--td-white);
}

.td-svc__price--free {
    color: var(--td-brand-light);
}

.td-svc__old {
    font-size: 12px;
    color: var(--td-faint);
    text-decoration: line-through;
}

.td-svc__go {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 31, 29, 0.04);
    border: 1px solid var(--td-border);
    color: var(--td-white-dim);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.td-band--dark .td-svc__go {
    background: rgba(226, 228, 226, 0.05);
}

.td-svc__go svg {
    width: 16px;
    height: 16px;
}

.td-svc:hover .td-svc__go {
    background: rgba(226, 228, 226, 0.1);
    border-color: var(--td-border-strong);
    color: var(--td-white-head);
}

.td-svc--promo:hover .td-svc__go {
    background: var(--td-brand-soft);
    border-color: rgba(39, 174, 96, 0.25);
    color: #6fcf97;
}

/* Demo banner — always dark inset on any band */
.td-demo {
    position: relative;
    margin-top: 20px;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(ellipse 80% 120% at 100% 50%, rgba(39, 174, 96, 0.14) 0%, transparent 55%),
        linear-gradient(135deg, rgba(16, 18, 17, 0.98) 0%, rgba(8, 9, 8, 0.99) 100%);
    border: 1px solid rgba(39, 174, 96, 0.18);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(226, 228, 226, 0.06);
}

.td-band--dark .td-demo {
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(226, 228, 226, 0.06);
}

.td-demo__title,
.td-demo__copy,
.td-demo__tag,
.td-demo__text,
.td-demo__flow,
.td-demo__perks {
    --td-white-head: #eceeec;
    --td-white-dim: #c4c9c5;
    --td-muted: rgba(226, 228, 226, 0.62);
    --td-faint: rgba(226, 228, 226, 0.42);
}

.td-demo__shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.75), transparent);
    z-index: 3;
    pointer-events: none;
}

.td-demo__glow {
    position: absolute;
    top: -20%;
    right: 8%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.12);
    filter: blur(80px);
    pointer-events: none;
    animation: tdDemoGlow 8s ease-in-out infinite;
}

.td-demo__glow--b {
    top: auto;
    bottom: -30%;
    right: 35%;
    width: 240px;
    height: 240px;
    background: rgba(46, 204, 113, 0.08);
    animation-delay: -3s;
}

@keyframes tdDemoGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.td-demo__mockup {
    position: absolute;
    top: 50%;
    right: 2%;
    width: min(52%, 540px);
    transform: translateY(-50%);
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
    animation: tdDemoMockup 7s ease-in-out infinite;
}

.td-demo__mockup img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(39, 174, 96, 0.15));
}

@keyframes tdDemoMockup {
    0%, 100% { transform: translateY(-50%) translateY(0); }
    50% { transform: translateY(-50%) translateY(-12px); }
}

.td-demo__body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    padding: 48px 48px 44px;
    min-height: 300px;
}

.td-demo__copy {
    max-width: min(62%, 680px);
}

.td-demo__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 18px 8px 12px;
    border-radius: 999px;
    background: rgba(39, 174, 96, 0.14);
    border: 1px solid rgba(46, 204, 113, 0.35);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7dcea0;
}

.td-demo__tag i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--td-brand-light);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
}

.td-demo__title {
    margin: 0 0 16px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.45rem, 2.8vw, 2.15rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
}

.td-demo__title em {
    font-style: normal;
    color: var(--td-brand-light);
}

.td-demo__text {
    margin: 0 0 22px;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.7;
    color: var(--td-muted);
    max-width: 580px;
}

.td-demo__perks {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.td-demo__perks li {
    position: relative;
    padding-left: 22px;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.5;
    color: var(--td-white-dim);
}

.td-demo__perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--td-brand);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.22);
    transform: translateY(-50%);
}

.td-demo__perks strong {
    color: var(--td-white-head);
    font-weight: 600;
}

.td-demo__flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--td-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.td-demo__flow i {
    display: block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(39, 174, 96, 0.45), transparent);
}

.td-demo__cta {
    flex-shrink: 0;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #041208;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        0 12px 36px rgba(39, 174, 96, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}

.td-demo__cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s;
}

.td-demo__cta:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow:
        0 18px 44px rgba(39, 174, 96, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #041208;
}

.td-demo__cta:hover svg {
    transform: translateX(4px);
}

@media (min-width: 1100px) {
    .td-demo {
        margin-top: 28px;
        border-radius: 32px;
    }

    .td-demo__body {
        padding: 56px 56px 52px;
        min-height: 340px;
        gap: 44px;
    }

    .td-demo__title {
        font-size: 2.25rem;
        margin-bottom: 18px;
    }

    .td-demo__text {
        font-size: 1.15rem;
        margin-bottom: 26px;
    }

    .td-demo__perks li {
        font-size: 1.08rem;
    }

    .td-demo__tag {
        font-size: 13px;
        padding: 9px 20px 9px 14px;
    }

    .td-demo__cta {
        padding: 20px 36px;
        font-size: 17px;
    }

    .td-demo__mockup {
        width: min(48%, 580px);
        opacity: 0.32;
    }
}

/* ── Process: launch sequence ── */
.td-process {
    position: relative;
    padding: 72px 28px 110px;
}

.td-band--dark.td-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(680px, 80%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 174, 96, 0.35), transparent);
    pointer-events: none;
}

.td-process__head {
    max-width: 560px;
    margin-bottom: 56px;
}

.td-process__kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--td-faint);
}

.td-process__title {
    margin: 0 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.9rem, 4.2vw, 2.85rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--td-white-head);
}

.td-process__title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--td-white-dim), var(--td-brand));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.td-process__lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--td-muted);
}

.td-process__board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding-top: 48px;
}

.td-process__rail {
    position: absolute;
    top: 48px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(226, 228, 226, 0.08);
    border-radius: 2px;
    overflow: hidden;
    z-index: 0;
}

.td-process__rail-fill {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--td-brand-dark), var(--td-brand-light));
    box-shadow: 0 0 16px rgba(39, 174, 96, 0.35);
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.td-process.is-live .td-process__rail-fill {
    width: 100%;
}

.td-process__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(calc(var(--i, 0) * 1px));
}

.td-process__step:nth-of-type(odd) {
    margin-top: -18px;
}

.td-process__step:nth-of-type(even) {
    margin-top: 18px;
}

.td-process__node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.td-process__num {
    position: absolute;
    top: -38px;
    font-family: 'Sora', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(226, 228, 226, 0.04);
    pointer-events: none;
    user-select: none;
    transition: color 0.5s;
}

.td-process__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0a0b0a;
    border: 2px solid rgba(226, 228, 226, 0.2);
    box-shadow: 0 0 0 4px rgba(10, 11, 10, 0.9);
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.td-process__step.is-on .td-process__dot {
    border-color: var(--td-brand);
    box-shadow: 0 0 0 4px rgba(10, 11, 10, 0.9), 0 0 20px rgba(39, 174, 96, 0.45);
    transform: scale(1.15);
}

.td-process__step.is-on .td-process__num {
    color: rgba(39, 174, 96, 0.12);
}

.td-process__card {
    position: relative;
    width: 100%;
    padding: 18px 16px 16px;
    border-radius: 16px;
    background: var(--td-surface);
    border: 1px solid var(--td-border);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        border-color 0.3s,
        background 0.3s;
    transition-delay: calc(var(--i, 0) * 0.12s);
}

.td-band--dark .td-process__card {
    background: rgba(12, 13, 12, 0.6);
}

.td-process__step.is-on .td-process__card {
    opacity: 1;
    transform: translateY(0);
}

.td-process__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, transparent, var(--td-brand), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.td-process__step.is-on .td-process__card::before {
    opacity: 0.7;
}

.td-process__card:hover {
    border-color: var(--td-border-strong);
    background: var(--td-surface-hover);
}

.td-band--dark .td-process__card:hover {
    background: rgba(16, 17, 16, 0.85);
}

.td-process__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 228, 226, 0.04);
    border: 1px solid var(--td-border);
    color: var(--td-white-dim);
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.td-process__icon svg {
    width: 18px;
    height: 18px;
}

.td-process__step.is-on .td-process__icon {
    color: #6fcf97;
    border-color: rgba(39, 174, 96, 0.22);
    background: var(--td-brand-soft);
}

.td-process__card h3 {
    margin: 0 0 8px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--td-white-head);
}

.td-process__card p {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-process__meta {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(226, 228, 226, 0.04);
    border: 1px solid var(--td-border);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--td-faint);
}

.td-process__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--td-border);
}

.td-process__foot p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--td-muted);
}

.td-process__foot strong {
    color: var(--td-white-head);
    font-weight: 700;
}

.td-band--light .td-btn--ghost {
    border-color: var(--td-border-strong);
    color: var(--td-white-head);
    background: rgba(28, 31, 29, 0.04);
}

.td-band--light .td-btn--ghost:hover {
    background: rgba(28, 31, 29, 0.08);
    color: var(--td-white-head);
}

.td-band--light .td-promo {
    background: #fff;
    border-color: var(--td-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Footer — dark cosmic */
.td-footer {
    position: relative;
    padding: 64px 0 28px;
    overflow: hidden;
    border-top: 1px solid var(--td-border);
}

.td-footer__shine {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, 70%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 174, 96, 0.65), transparent);
    z-index: 2;
    pointer-events: none;
}

.td-footer__glow {
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.12) 0%, transparent 68%);
    filter: blur(40px);
    pointer-events: none;
    animation: tdFooterGlow 10s ease-in-out infinite;
}

@keyframes tdFooterGlow {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

.td-footer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--td-border);
}

.td-footer__logo {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
    text-decoration: none;
    line-height: 1.1;
}

.td-footer__logo span {
    color: var(--td-brand);
}

.td-footer__brand p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: var(--td-muted);
    max-width: 320px;
}

.td-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--td-white-head);
    text-decoration: none;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.35);
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.td-footer__cta:hover {
    background: rgba(39, 174, 96, 0.18);
    border-color: rgba(39, 174, 96, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(39, 174, 96, 0.15);
}

.td-footer__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1.05fr;
    gap: 36px 32px;
    margin-bottom: 40px;
}

.td-footer__col h3 {
    margin: 0 0 20px;
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--td-faint);
}

.td-footer__contact {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--td-white-head);
    background: var(--td-surface);
    border: 1px solid var(--td-border);
    backdrop-filter: blur(12px);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.td-footer__contact:hover {
    border-color: rgba(39, 174, 96, 0.35);
    background: var(--td-surface-hover);
    transform: translateX(4px);
}

.td-footer__contact span {
    min-width: 0;
    word-break: break-word;
}

.td-footer__contact span small {
    display: block;
    font-size: 0.72rem;
    color: var(--td-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.td-footer__contact-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--td-brand-soft);
    color: var(--td-brand-light);
}

.td-footer__contact-icon svg {
    width: 18px;
    height: 18px;
}

.td-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.td-footer__social a {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--td-muted);
    text-decoration: none;
    background: rgba(14, 15, 14, 0.5);
    border: 1px solid var(--td-border);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.td-footer__social a:hover {
    color: var(--td-brand-light);
    border-color: rgba(39, 174, 96, 0.4);
    background: rgba(39, 174, 96, 0.08);
}

.td-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.td-footer__menu li + li {
    margin-top: 10px;
}

.td-footer__menu a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--td-muted);
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.td-footer__menu a::before {
    content: '→';
    font-size: 0.75rem;
    color: var(--td-faint);
    transition: color 0.2s, transform 0.2s;
}

.td-footer__menu a:hover {
    color: var(--td-white-head);
    transform: translateX(3px);
}

.td-footer__menu a:hover::before {
    color: var(--td-brand);
    transform: translateX(2px);
}

.td-footer__features {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.td-footer__features li {
    font-size: 0.88rem;
    color: var(--td-muted);
}

.td-footer__features strong {
    display: inline-block;
    min-width: 3.2em;
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--td-brand-light);
    margin-right: 6px;
}

.td-footer__tagline {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--td-faint);
}

.td-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-top: 24px;
    border-top: 1px solid var(--td-border);
    font-size: 0.82rem;
    color: var(--td-faint);
}

.td-footer__bottom a {
    color: var(--td-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.td-footer__bottom a:hover {
    color: var(--td-brand-light);
}

.td-footer__legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.td-footer__legal span {
    opacity: 0.4;
}

.td-footer__up {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--td-border-strong);
    border-radius: 14px;
    background: rgba(10, 11, 10, 0.88);
    color: var(--td-muted);
    cursor: pointer;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s, color 0.2s, border-color 0.2s;
}

.td-footer__up svg {
    width: 22px;
    height: 22px;
}

.td-footer__up.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.td-footer__up:hover {
    color: var(--td-brand-light);
    border-color: rgba(39, 174, 96, 0.45);
}

/* Calculator — light band */
.td-band--light.td-calc {
    margin-top: -24px;
    padding-top: 48px;
    padding-bottom: 40px;
}

/* Portfolio — dark band */
.td-works {
    position: relative;
    padding: 44px 28px 72px;
    margin-top: -12px;
}

.td-works__glow {
    position: absolute;
    top: 15%;
    left: -10%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.1) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
}

.td-works__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.td-works__kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--td-faint);
}

.td-works__title {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
}

.td-works__title em {
    font-style: normal;
    color: var(--td-brand);
}

.td-works__lead {
    margin: 0;
    max-width: 520px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-works__all {
    flex-shrink: 0;
}

.td-works__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.td-works__loader {
    grid-column: 1 / -1;
    padding: 48px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--td-muted);
}

.td-works__grid.is-filtered {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
}

.td-works__grid.is-filtered .td-works__card--featured {
    grid-row: auto;
    grid-column: auto;
    min-height: 200px;
}

.td-works__grid.is-filtered .td-works__card--more {
    grid-column: 1 / -1;
}

.td-works__filter {
    padding: 8px 16px;
    border: 1px solid var(--td-border);
    border-radius: 999px;
    background: rgba(14, 15, 14, 0.45);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--td-muted);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.td-works__filter:hover {
    border-color: var(--td-border-strong);
    color: var(--td-white-head);
}

.td-works__filter.is-active {
    background: rgba(39, 174, 96, 0.14);
    border-color: rgba(39, 174, 96, 0.4);
    color: var(--td-brand-light);
}

.td-works__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: minmax(200px, 1fr) minmax(200px, 1fr) minmax(140px, auto);
    gap: 14px;
}

.td-works__card {
    position: relative;
    display: block;
    min-height: 200px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--td-border);
    background: var(--td-surface);
    isolation: isolate;
    transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s;
}

.td-works__card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(39, 174, 96, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.td-works__card:hover {
    border-color: rgba(39, 174, 96, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.td-works__card:hover::before {
    opacity: 1;
}

.td-works__card.is-hidden {
    display: none;
}

.td-works__card--featured {
    grid-row: 1 / 3;
    grid-column: 1;
    min-height: 414px;
}

.td-works__card--more {
    grid-column: 2 / 4;
    grid-row: 3;
    min-height: 140px;
    border-style: dashed;
    border-color: rgba(39, 174, 96, 0.25);
    background: rgba(39, 174, 96, 0.06);
}

.td-works__card--more:hover {
    background: rgba(39, 174, 96, 0.12);
    border-color: rgba(39, 174, 96, 0.45);
}

.td-works__shot {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.td-works__shot::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 62%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(5, 6, 5, 0.55) 38%,
        rgba(5, 6, 5, 0.92) 72%,
        rgba(5, 6, 5, 0.98) 100%
    );
}

.td-works__shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.td-works__card:hover .td-works__shot img {
    transform: scale(1.06);
}

.td-works__panel {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 18px 16px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(5, 6, 5, 0.35) 20%,
        rgba(5, 6, 5, 0.96) 100%
    );
}

.td-works__tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--td-brand-light);
}

.td-works__name {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.td-works__card--featured .td-works__name {
    font-size: 1.35rem;
}

.td-works__desc {
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--td-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, margin 0.35s ease;
}

.td-works__card:hover .td-works__desc {
    max-height: 3.5em;
    opacity: 1;
    margin-top: 4px;
}

.td-works__go {
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--td-brand-light);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.28s, transform 0.28s;
}

.td-works__card:hover .td-works__go {
    opacity: 1;
    transform: none;
}

.td-works__more-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 140px;
    padding: 24px;
    text-align: center;
    gap: 6px;
}

.td-works__more-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--td-brand);
}

.td-works__more-label {
    font-size: 0.88rem;
    color: var(--td-muted);
    margin-bottom: 8px;
}

.td-works__card--more .td-works__go {
    opacity: 1;
    transform: none;
    margin-top: 0;
}

.td-band--light.td-seo {
    margin-top: -24px;
    padding-top: 56px;
    padding-bottom: 32px;
}

.td-light-deco--subtle .td-light-deco__mesh {
    opacity: 0.35;
}

.td-light-deco--subtle .td-light-deco__orb--a {
    width: 280px;
    height: 280px;
    top: 20%;
    right: -5%;
    left: auto;
    opacity: 0.7;
}

.td-band--light.td-blog {
    padding-top: 16px;
    padding-bottom: 72px;
}

.td-calc__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: start;
}

.td-calc__head {
    margin-bottom: 28px;
}

.td-calc__title {
    margin: 0 0 12px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
}

.td-calc__title em {
    font-style: normal;
    color: var(--td-brand);
}

.td-calc__lead {
    margin: 0;
    max-width: 560px;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-calc__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--td-border);
}

.td-calc__tab {
    padding: 10px 16px;
    border: 1px solid var(--td-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--td-white-dim);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.td-calc__tab:hover {
    border-color: var(--td-border-strong);
    color: var(--td-white-head);
}

.td-calc__tab.is-active {
    background: var(--td-brand);
    border-color: var(--td-brand);
    color: #fff;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.28);
}

.td-calc__panels {
    display: grid;
}

.td-calc__panel {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

.td-calc__panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.td-calc__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--td-border);
    cursor: pointer;
    transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
}

.td-calc__row:hover {
    border-color: var(--td-border-strong);
    background: #fff;
}

.td-calc__row.is-on {
    border-color: rgba(39, 174, 96, 0.35);
    background: rgba(39, 174, 96, 0.04);
    box-shadow: 0 4px 18px rgba(39, 174, 96, 0.06);
}

.td-calc__row-info {
    min-width: 0;
    flex: 1;
}

.td-calc__row-name {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--td-white-head);
    line-height: 1.35;
}

.td-calc__badge {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--td-brand-dark);
    background: var(--td-brand-soft);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.td-calc__tip {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 1px solid var(--td-border-strong);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.65rem;
    font-weight: 700;
    font-style: normal;
    color: var(--td-faint);
    cursor: help;
    flex-shrink: 0;
}

.td-calc__tip-text {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    width: max-content;
    max-width: 240px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #1c1f1d;
    color: #eceeec;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 5;
}

.td-calc__tip.is-open .td-calc__tip-text,
.td-calc__tip:hover .td-calc__tip-text,
.td-calc__tip:focus-visible .td-calc__tip-text {
    opacity: 1;
    visibility: visible;
}

.td-calc__row-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.td-calc__prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.td-calc__price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--td-white-head);
    white-space: nowrap;
}

.td-calc__price-old {
    font-size: 0.72rem;
    color: var(--td-faint);
    text-decoration: line-through;
    white-space: nowrap;
}

.td-calc__price--free {
    color: var(--td-brand);
}

.td-calc__toggle {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.td-calc__toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.td-calc__toggle span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(92, 101, 96, 0.18);
    transition: background 0.22s;
}

.td-calc__toggle span::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.22s;
}

.td-calc__toggle input:checked + span {
    background: var(--td-brand);
}

.td-calc__toggle input:checked + span::after {
    transform: translateX(20px);
}

.td-calc__toggle input:focus-visible + span {
    outline: 2px solid rgba(39, 174, 96, 0.45);
    outline-offset: 2px;
}

.td-calc__aside {
    position: sticky;
    top: 88px;
}

.td-calc__summary {
    position: relative;
    overflow: hidden;
    padding: 32px 28px 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--td-border);
    box-shadow: 0 18px 50px rgba(28, 31, 29, 0.08);
    text-align: center;
    isolation: isolate;
}

.td-calc__summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 174, 96, 0.45), transparent);
}

.td-calc__summary-head h3 {
    margin: 0 0 4px;
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--td-white-head);
}

.td-calc__summary-head p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--td-faint);
}

.td-calc__total {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 24px 0 20px;
    padding: 18px 0;
    border-top: 1px solid var(--td-border);
    border-bottom: 1px solid var(--td-border);
}

.td-calc__total-cur {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--td-faint);
}

.td-calc__total-num {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--td-brand);
    line-height: 1;
}

.td-calc__summary-note {
    margin: 0 0 20px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--td-muted);
}

.td-calc__submit {
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
}

.td-calc__socials {
    position: relative;
    z-index: 2;
    margin-top: 22px;
}

.td-calc__socials p {
    margin: 0 0 12px;
    font-size: 0.78rem;
    color: var(--td-faint);
}

.td-calc__social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.td-calc__social-links a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--td-border);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.td-calc__social-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(39, 174, 96, 0.35);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.1);
}

.td-calc__social-links img {
    display: block;
    width: 22px;
    height: 22px;
}

.td-calc__panda-deco {
    position: absolute;
    right: -18px;
    bottom: -24px;
    width: 140px;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(0.2);
}

/* FAQ + Geo — dark band */
.td-info {
    position: relative;
    padding: 48px 28px 88px;
    margin-top: -12px;
}

.td-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(480px, 70%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 174, 96, 0.45), transparent);
    pointer-events: none;
}

.td-info__glow {
    position: absolute;
    top: 10%;
    right: -8%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.08) 0%, transparent 68%);
    filter: blur(50px);
    pointer-events: none;
}

.td-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
    align-items: start;
}

.td-info__title {
    margin: 0 0 24px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
    line-height: 1.2;
}

.td-info__title em {
    font-style: normal;
    color: var(--td-brand);
}

.td-info__lead {
    margin: -12px 0 22px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.td-faq__item {
    border-radius: 16px;
    background: var(--td-surface);
    border: 1px solid var(--td-border);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.td-faq__item:hover {
    border-color: var(--td-border-strong);
}

.td-faq__item.is-open {
    border-color: rgba(39, 174, 96, 0.28);
    background: var(--td-surface-hover);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.td-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--td-white-head);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.td-faq__q:hover {
    color: #fff;
}

.td-faq__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(39, 174, 96, 0.35);
    background: var(--td-brand-soft);
    color: var(--td-brand-light);
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.25s, background 0.25s;
}

.td-faq__icon::before {
    content: '+';
}

.td-faq__item.is-open .td-faq__icon::before {
    content: '−';
}

.td-faq__item.is-open .td-faq__icon {
    background: rgba(39, 174, 96, 0.18);
}

.td-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.td-faq__a p {
    margin: 0;
    padding: 0 18px 18px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--td-muted);
}

.td-faq__a strong {
    color: var(--td-white-dim);
    font-weight: 600;
}

.td-geo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.td-geo__item {
    border-radius: 16px;
    background: var(--td-surface);
    border: 1px solid var(--td-border);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.td-geo__item.is-open {
    border-color: rgba(39, 174, 96, 0.28);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.td-geo__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--td-white-head);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.td-geo__head:hover {
    color: #fff;
}

.td-geo__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(39, 174, 96, 0.35);
    background: var(--td-brand-soft);
    color: var(--td-brand-light);
    font-size: 1rem;
    line-height: 1;
}

.td-geo__icon::before {
    content: '+';
}

.td-geo__item.is-open .td-geo__icon::before {
    content: '−';
}

.td-geo__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.td-geo__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 16px;
}

.td-geo__links a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--td-muted);
    text-decoration: none;
    background: rgba(14, 15, 14, 0.55);
    border: 1px solid var(--td-border);
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.td-geo__links a:hover {
    color: var(--td-white-head);
    border-color: rgba(39, 174, 96, 0.35);
    transform: translateY(-1px);
}

.td-geo__links a.is-current {
    background: var(--td-brand);
    border-color: var(--td-brand);
    color: #fff;
    font-weight: 600;
    pointer-events: none;
}

/* Blog carousel — light band */
.td-blog__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.td-blog__title {
    margin: 0 0 8px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
}

.td-blog__title em {
    font-style: normal;
    color: var(--td-brand);
}

.td-blog__lead {
    margin: 0;
    max-width: 480px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-blog__nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.td-blog__arrow {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--td-border-strong);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    color: var(--td-white-head);
    cursor: pointer;
    transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.td-blog__arrow svg {
    width: 22px;
    height: 22px;
}

.td-blog__arrow:hover {
    background: var(--td-brand);
    border-color: var(--td-brand);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(39, 174, 96, 0.22);
}

.td-blog__viewport {
    margin: 0 -8px;
    padding: 8px;
    overflow: hidden;
}

.td-blog__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.td-blog__track::-webkit-scrollbar {
    display: none;
}

.td-blog__loader {
    min-width: 100%;
    padding: 48px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--td-muted);
}

.td-blog__loader a {
    color: var(--td-brand);
}

.td-blog-card {
    flex: 0 0 min(340px, 82vw);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--td-border);
    box-shadow: 0 10px 32px rgba(28, 31, 29, 0.06);
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}

.td-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(39, 174, 96, 0.28);
    box-shadow: 0 18px 44px rgba(39, 174, 96, 0.12);
}

.td-blog-card__img {
    position: relative;
    height: 196px;
    overflow: hidden;
    background: #dfe3df;
}

.td-blog-card__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.td-blog-card__img img.is-placeholder {
    object-fit: contain;
    padding: 24px;
    background: #eef0ee;
}

.td-blog-card:hover .td-blog-card__img img {
    transform: scale(1.06);
}

.td-blog-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--td-brand-dark);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(39, 174, 96, 0.18);
}

.td-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 16px;
}

.td-blog-card__date {
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--td-faint);
}

.td-blog-card__title {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--td-white-head);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.td-blog-card__excerpt {
    margin: 0 0 14px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--td-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.td-blog-card__more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--td-brand);
}

.td-blog-card__more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.22s;
}

.td-blog-card:hover .td-blog-card__more svg {
    transform: translateX(4px);
}

.td-blog__foot {
    margin-top: 28px;
    text-align: center;
}

.td-blog__all {
    min-width: 220px;
}

/* SEO text — light band */
.td-seo__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px 56px;
    align-items: center;
}

.td-seo__title {
    margin: 0 0 22px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
}

.td-seo__title em {
    font-style: normal;
    color: var(--td-brand);
}

.td-seo__body p {
    margin: 0 0 18px;
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--td-muted);
}

.td-seo__body strong {
    color: var(--td-white-head);
    font-weight: 600;
}

.td-seo__subtitle {
    margin: 28px 0 18px;
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--td-white-head);
}

.td-seo__list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 14px;
}

.td-seo__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-seo__check {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-top: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--td-brand-light), var(--td-brand));
    color: #fff;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.25);
}

.td-seo__check svg {
    width: 14px;
    height: 14px;
}

.td-seo__list strong {
    color: var(--td-white-head);
    font-weight: 600;
}

.td-seo__cta {
    padding: 18px 20px;
    border-radius: 0 14px 14px 0;
    background: rgba(39, 174, 96, 0.08);
    border-left: 4px solid var(--td-brand);
}

.td-seo__cta p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--td-white-head);
}

.td-seo__cta a {
    color: var(--td-brand);
    text-decoration: none;
    border-bottom: 1px solid rgba(39, 174, 96, 0.35);
    transition: color 0.2s, border-color 0.2s;
}

.td-seo__cta a:hover {
    color: var(--td-brand-dark);
    border-color: var(--td-brand-dark);
}

.td-seo__visual {
    display: flex;
    justify-content: center;
}

.td-seo__frame {
    position: relative;
    width: min(100%, 420px);
}

.td-seo__decor {
    position: absolute;
    top: 18px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(39, 174, 96, 0.35);
    border-radius: 20px;
    z-index: 0;
}

.td-seo__frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--td-border);
    box-shadow: 0 20px 50px rgba(28, 31, 29, 0.12);
}

.td-seo__badge {
    position: absolute;
    left: -20px;
    bottom: 36px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--td-border);
    box-shadow: 0 12px 32px rgba(28, 31, 29, 0.12);
    animation: tdSeoBadge 4.5s ease-in-out infinite;
}

@keyframes tdSeoBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.td-seo__badge-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--td-brand);
}

.td-seo__badge-text {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--td-white-dim);
}

@media (max-width: 960px) {
    .td-glow {
        display: none;
    }

    .td-header {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .td-header__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .td-logo {
        grid-column: 1;
        justify-self: start;
        min-width: 0;
    }

    .td-burger {
        display: flex !important;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        position: relative;
        z-index: 102;
        flex-shrink: 0;
        margin-left: 0;
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.38);
    }

    .td-burger span {
        background: #eef0ee;
    }

    .td-header__cta {
        display: none;
    }

    .td-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: calc(100vw - 32px);
        max-height: calc(100vh - 84px);
        overflow-x: hidden;
        overflow-y: auto;
        margin: 0;
        padding: 12px;
        border-radius: 16px;
        background: rgba(10, 11, 10, 0.96);
        border: 1px solid var(--td-border);
        backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
        z-index: 101;
        box-sizing: border-box;
    }

    .td-page.is-menu-open .td-nav {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .td-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .td-nav__link::after,
    .td-nav__trigger::after {
        display: none;
    }

    .td-nav__link,
    .td-nav__trigger {
        width: 100%;
        justify-content: space-between;
        padding: 12px 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    .td-nav__parent {
        display: flex;
        width: 100%;
        align-items: stretch;
    }

    .td-nav__parent .td-nav__link {
        flex: 1;
        justify-content: flex-start;
    }

    .td-nav__toggle {
        width: 44px;
        height: auto;
        margin-left: 0;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .td-nav__drop {
        position: static;
        min-width: 0;
        margin: 0 0 4px;
        padding: 0 0 0 8px;
        border: none;
        border-left: 2px solid rgba(39, 174, 96, 0.25);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.3s ease, visibility 0.25s, margin 0.25s;
    }

    .td-nav__item--has-sub:hover > .td-nav__drop,
    .td-nav__item--has-sub:focus-within > .td-nav__drop {
        max-height: 0;
        visibility: hidden;
        margin: 0;
    }

    .td-nav__item--has-sub.is-open > .td-nav__drop {
        visibility: visible;
        max-height: 480px;
        margin: 2px 0 8px;
    }

    .td-nav__sub a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .td-nav__sub a:hover {
        transform: none;
    }

    .td-hero__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .td-hero {
        padding-top: 88px;
        padding-bottom: 72px;
        align-items: flex-start;
        min-height: auto;
    }

    .td-hero__lead {
        max-width: none;
    }

    .td-orbit {
        display: none;
    }

    .td-section {
        padding: 48px 16px 72px;
    }

    .td-bridge {
        height: 72px;
        margin-top: -48px;
    }

    .td-bridge--to-dark {
        height: 64px;
    }

    .td-band--light.td-section {
        margin-top: -16px;
        padding-top: 40px;
    }

    .td-process {
        padding: 48px 16px 80px;
    }

    .td-svc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .td-svc {
        min-height: 150px;
        padding: 14px 12px 12px;
    }

    .td-svc__title {
        font-size: 0.92rem;
    }

    .td-demo__body {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 22px 24px;
        min-height: 0;
    }

    .td-demo__copy {
        max-width: none;
    }

    .td-demo__cta {
        align-self: flex-start;
        margin-top: 8px;
    }

    .td-demo__mockup {
        width: 70%;
        right: -15%;
        opacity: 0.14;
    }

    .td-process__head {
        margin-bottom: 36px;
    }

    .td-process__board {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 0;
        padding-left: 28px;
    }

    .td-process__rail {
        top: 8px;
        bottom: 8px;
        left: 6px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .td-process__rail-fill {
        width: 100%;
        height: 0;
        transition: height 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .td-process.is-live .td-process__rail-fill {
        width: 100%;
        height: 100%;
    }

    .td-process__step {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        margin-top: 0 !important;
        padding-bottom: 24px;
    }

    .td-process__node {
        flex-shrink: 0;
        width: auto;
        margin-bottom: 0;
        padding-top: 18px;
    }

    .td-process__num {
        display: none;
    }

    .td-process__card {
        clip-path: none;
        flex: 1;
    }

    .td-works {
        overflow: hidden;
    }

    .td-demo {
        overflow: hidden;
    }

    .td-footer {
        padding: 48px 0 28px;
    }

    .td-footer .td-wrap {
        padding: 0 16px;
    }

    .td-footer__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .td-footer__cta {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .td-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 32px;
    }

    .td-footer__col--info {
        grid-column: auto;
    }

    .td-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .td-footer__legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .td-footer__legal span {
        display: none;
    }

    .td-footer__up {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 520px) {
    .td-svc-grid {
        grid-template-columns: 1fr;
    }

    .td-light-deco__panda {
        width: min(480px, 92vw);
        right: -18%;
        opacity: 0.92;
    }

    .td-light-deco__ring {
        width: min(360px, 85vw);
        right: -14%;
        opacity: 0.85;
        color: rgba(92, 101, 96, 0.14);
    }

    .td-light-deco__orb--c {
        display: none;
    }

    .td-calc__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .td-calc__aside {
        position: static;
    }

    .td-calc__tabs {
        gap: 6px;
    }

    .td-calc__tab {
        padding: 8px 12px;
        font-size: 0.76rem;
    }

    .td-calc__row {
        flex-wrap: wrap;
        padding: 14px;
    }

    .td-calc__row-controls {
        width: 100%;
        justify-content: space-between;
    }

    .td-light-deco__panda--left {
        display: none;
    }

    .td-works {
        padding: 36px 28px 56px;
    }

    .td-works__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .td-works__all {
        width: 100%;
        justify-content: center;
    }

    .td-works__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .td-works__grid.is-filtered {
        grid-template-columns: 1fr;
    }

    .td-works__card--featured,
    .td-works__card--more {
        grid-column: auto;
        grid-row: auto;
        min-height: 280px;
    }

    .td-works__card--more {
        min-height: 120px;
    }

    .td-works__desc {
        max-height: none;
        opacity: 1;
        -webkit-line-clamp: 2;
    }

    .td-works__go {
        opacity: 1;
        transform: none;
    }

    .td-band--light.td-calc {
        padding-bottom: 24px;
    }

    .td-band--light.td-seo {
        padding-top: 8px;
        padding-bottom: 24px;
    }

    .td-seo__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .td-seo__visual {
        order: -1;
    }

    .td-seo__frame {
        max-width: 360px;
        margin: 0 auto;
    }

    .td-seo__frame img {
        max-height: 360px;
        object-fit: cover;
        object-position: top;
    }

    .td-seo__badge {
        left: 12px;
        bottom: 16px;
    }

    .td-band--light.td-blog {
        padding-top: 16px;
        padding-bottom: 56px;
    }

    .td-blog__head {
        align-items: flex-start;
    }

    .td-blog-card {
        flex-basis: min(300px, 86vw);
    }

    .td-blog-card__img {
        height: 170px;
    }

    .td-light-deco__ring--blog {
        display: none;
    }

    .td-info {
        padding: 36px 28px 64px;
    }

    .td-info__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .td-badge i,
    .td-glow,
    .td-nebula,
    .td-orbit__halo,
    .td-orbit__track,
    .td-orbit__track::before,
    .td-orbit__core,
    .td-demo__glow,
    .td-demo__mockup,
    .td-footer__glow,
    .td-seo__badge,
    .td-light-deco__mesh,
    .td-light-deco__orb,
    .td-light-deco__ring,
    .td-light-deco__panda,
    .td-light-deco__ring--blog,
    .td-process__rail-fill,
    .td-bridge__depth,
    .td-bridge__crest {
        animation: none;
        transition: none;
    }

    .td-process.is-live .td-process__rail-fill {
        width: 100%;
        height: 100%;
    }

    .td-process__step.is-on .td-process__card {
        opacity: 1;
        transform: none;
    }
}

/* ========================= CONTACTS PAGE ========================= */

.td-page--contacts .td-contacts-hero {
    padding: 112px 0 72px;
    position: relative;
}

.td-contacts-hero__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.td-contacts-hero__crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--td-muted);
    margin-bottom: 18px;
}

.td-contacts-hero__crumb a {
    color: var(--td-white-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.td-contacts-hero__crumb a:hover {
    color: var(--td-brand-light);
}

.td-contacts-hero__crumb span {
    color: var(--td-faint);
}

.td-contacts-hero h1 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    color: var(--td-white-head);
}

.td-contacts-hero h1 em {
    font-style: normal;
    color: var(--td-brand-light);
}

.td-contacts-hero__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--td-muted);
    max-width: 520px;
    margin: 0 0 24px;
}

.td-contacts-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.28);
    color: var(--td-brand-light);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.td-contacts-hero__status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--td-brand-light);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.22);
    animation: tdPulseDot 2s ease infinite;
}

@keyframes tdPulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.92); }
}

.td-contacts-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.td-contacts-hero__panel {
    display: grid;
    gap: 14px;
}

.td-contacts-quick {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--td-surface);
    border: 1px solid var(--td-border);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.td-contacts-quick:hover {
    transform: translateY(-2px);
    border-color: rgba(39, 174, 96, 0.35);
    background: var(--td-surface-hover);
}

.td-contacts-quick__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(39, 174, 96, 0.12);
    color: var(--td-brand-light);
    flex-shrink: 0;
}

.td-contacts-quick__icon svg {
    width: 22px;
    height: 22px;
}

.td-contacts-quick__icon img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.td-contacts-quick strong {
    display: block;
    font-size: 15px;
    color: var(--td-white-head);
    margin-bottom: 2px;
}

.td-contacts-quick small {
    display: block;
    font-size: 13px;
    color: var(--td-muted);
}

.td-contacts-quick--phone strong {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.td-contacts-main {
    padding-top: 56px;
    padding-bottom: 72px;
}

.td-contacts-main__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.td-contacts-form-card,
.td-contacts-side-card {
    border-radius: 24px;
    border: 1px solid rgba(20, 24, 21, 0.08);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(10, 11, 10, 0.06);
    padding: 28px;
}

.td-contacts-form-card h2,
.td-contacts-side-card h2 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 1.45rem;
    margin: 0 0 8px;
    color: #141814;
}

.td-contacts-form-card p,
.td-contacts-side-card > p {
    margin: 0 0 22px;
    color: #5a635c;
    line-height: 1.55;
    font-size: 0.95rem;
}

.td-contacts-calc-note {
    margin: -8px 0 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.22);
    color: #1e8449;
    font-size: 13px;
    line-height: 1.45;
}

.td-contacts-form {
    display: grid;
    gap: 16px;
}

.td-contacts-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #3a423c;
    margin-bottom: 8px;
}

.td-contacts-field input,
.td-contacts-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(20, 24, 21, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    color: #141814;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.td-contacts-field textarea {
    min-height: 128px;
    resize: vertical;
}

.td-contacts-field input:focus,
.td-contacts-field textarea:focus {
    outline: none;
    border-color: rgba(39, 174, 96, 0.55);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.12);
}

.td-contacts-phone {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(20, 24, 21, 0.12);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.td-contacts-phone:focus-within {
    border-color: rgba(39, 174, 96, 0.55);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.12);
}

.td-contacts-phone__prefix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-weight: 600;
    color: #5a635c;
    background: #f3f5f3;
    border-right: 1px solid rgba(20, 24, 21, 0.08);
    white-space: nowrap;
}

.td-contacts-phone input {
    border: none;
    border-radius: 0;
    box-shadow: none;
    flex: 1;
}

.td-contacts-phone input:focus {
    box-shadow: none;
}

.td-contacts-policy {
    font-size: 12px;
    color: #7a827c;
    line-height: 1.45;
    margin: 0;
}

.td-contacts-policy a {
    color: #1e8449;
}

.td-contacts-success {
    text-align: center;
    padding: 36px 12px;
}

.td-contacts-success__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.28);
}

.td-contacts-success h3 {
    font-family: 'Sora', system-ui, sans-serif;
    margin: 0 0 8px;
    color: #141814;
}

.td-contacts-success p {
    margin: 0;
    color: #5a635c;
}

.td-contacts-msgs {
    display: grid;
    gap: 12px;
}

.td-contacts-msg {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    color: #141814;
    background: #f6f8f6;
    border: 1px solid transparent;
    transition: 0.25s;
}

.td-contacts-msg:hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: rgba(20, 24, 21, 0.08);
    box-shadow: 0 10px 24px rgba(10, 11, 10, 0.06);
}

.td-contacts-msg img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.td-contacts-msg strong {
    display: block;
    font-size: 15px;
}

.td-contacts-msg span {
    font-size: 13px;
    color: #6a736c;
}

.td-contacts-msg--tg:hover { border-color: rgba(34, 158, 217, 0.35); }
.td-contacts-msg--wa:hover { border-color: rgba(37, 211, 102, 0.35); }
.td-contacts-msg--vb:hover { border-color: rgba(115, 96, 242, 0.35); }

.td-contacts-hours {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(39, 174, 96, 0.08);
    border: 1px dashed rgba(39, 174, 96, 0.25);
}

.td-contacts-hours p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #4a544d;
}

.td-contacts-hours strong {
    color: #141814;
}

.td-contacts-extra {
    padding: 64px 0 72px;
}

.td-contacts-extra__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.td-contacts-legal,
.td-contacts-qr {
    border-radius: 24px;
    padding: 28px;
    background: var(--td-surface);
    border: 1px solid var(--td-border);
}

.td-contacts-legal h2,
.td-contacts-qr h2 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 1.25rem;
    margin: 0 0 18px;
    color: var(--td-white-head);
}

.td-contacts-legal p {
    margin: 0 0 8px;
    color: var(--td-muted);
    line-height: 1.55;
}

.td-contacts-legal strong {
    color: var(--td-white);
}

.td-contacts-legal__bank {
    margin-top: 16px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.22);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    line-height: 1.65;
    color: var(--td-white-dim);
}

.td-contacts-qr__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.td-contacts-qr__img {
    width: 180px;
    height: 180px;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.td-contacts-qr__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.td-contacts-qr p {
    margin: 0;
    color: var(--td-muted);
    font-size: 14px;
}

.td-nav a[aria-current="page"],
.td-nav__link[aria-current="page"] {
    color: var(--td-brand-light);
}

.td-nav__sub a[aria-current="page"] {
    background: rgba(39, 174, 96, 0.12);
    color: var(--td-brand-light);
}

.td-nav__item.is-current > .td-nav__trigger,
.td-nav__item.is-current > .td-nav__parent > .td-nav__link {
    color: var(--td-brand-light);
}

@media (max-width: 768px) {
    .quiz-fab-wrap,
    .itpanda-lead-fab {
        transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
    }

    body.footer-in-view .quiz-fab-wrap,
    body.footer-in-view .itpanda-lead-fab {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(-110%);
    }
}

@media (max-width: 960px) {
    .td-contacts-hero {
        padding-top: 96px;
    }

    .td-contacts-hero__inner,
    .td-contacts-main__grid,
    .td-contacts-extra__grid {
        grid-template-columns: 1fr;
    }

    .td-contacts-hero__panel {
        order: -1;
    }
}

/* ========================= ABOUT PAGE ========================= */

.td-page--about .td-about-hero {
    padding: 112px 0 72px;
    position: relative;
}

.td-about-hero__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.td-about-hero__crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--td-muted);
    margin-bottom: 18px;
}

.td-about-hero__crumb a {
    color: var(--td-white-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.td-about-hero__crumb a:hover {
    color: var(--td-brand-light);
}

.td-about-hero__crumb span {
    color: var(--td-faint);
}

.td-about-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.28);
    color: var(--td-brand-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.td-about-hero h1 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    color: var(--td-white-head);
}

.td-about-hero h1 em {
    font-style: normal;
    color: var(--td-brand-light);
}

.td-about-hero__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--td-muted);
    max-width: 520px;
    margin: 0 0 24px;
}

.td-about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.td-about-hero__panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.td-about-stat {
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--td-border);
    transition: border-color 0.22s, transform 0.22s;
}

.td-about-stat:hover {
    border-color: rgba(39, 174, 96, 0.35);
    transform: translateY(-2px);
}

.td-about-stat strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--td-brand-light);
    line-height: 1;
    margin-bottom: 8px;
}

.td-about-stat span {
    display: block;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--td-muted);
}

.td-about-stat--accent {
    grid-column: span 2;
    background: rgba(39, 174, 96, 0.08);
    border-color: rgba(39, 174, 96, 0.22);
}

.td-about-mission {
    padding-bottom: 72px;
}

.td-about-values,
.td-about-tech,
.td-about-more,
.td-about-cta {
    padding: 64px 0 72px;
}

.td-bridge--to-dark + .td-footer {
    padding-top: 44px;
    border-top: none;
}

.td-about-mission__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.td-about-kicker {
    display: block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--td-faint);
}

.td-about-kicker--light {
    color: var(--td-muted);
}

.td-about-mission__copy h2,
.td-about-section-head h2,
.td-about-cta__box h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 0 16px;
    color: var(--td-white-head);
}

.td-band--light .td-about-mission__copy h2,
.td-band--light .td-about-section-head--dark h2,
.td-band--light .td-about-cta__box h2 {
    color: #1c1f1d;
}

.td-about-mission__copy h2 em,
.td-about-section-head h2 em,
.td-about-cta__box h2 em {
    font-style: normal;
    color: var(--td-brand);
}

.td-about-mission__copy p,
.td-about-section-head p,
.td-about-cta__box p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--td-muted);
    margin: 0 0 14px;
}

.td-band--light .td-about-mission__copy p,
.td-band--light .td-about-section-head--dark p,
.td-band--light .td-about-cta__box p {
    color: #5c6560;
}

.td-about-mission__copy .td-btn {
    margin-top: 8px;
}

.td-about-mission__visual {
    display: flex;
    justify-content: center;
}

.td-about-mission__card {
    width: 100%;
    max-width: 360px;
    padding: 32px 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--td-border);
    box-shadow: 0 18px 50px rgba(28, 31, 29, 0.08);
    text-align: center;
}

.td-about-mission__card img {
    width: 96px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
}

.td-about-mission__card > p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1c1f1d;
    margin: 0 0 16px;
}

.td-about-mission__card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.td-about-mission__card li {
    position: relative;
    padding-left: 18px;
    font-size: 0.88rem;
    color: #5c6560;
    line-height: 1.45;
}

.td-about-mission__card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--td-brand);
}

.td-about-section-head {
    max-width: 560px;
    margin-bottom: 36px;
}

.td-about-section-head h2 {
    color: var(--td-white-head);
}

.td-about-section-head p {
    margin-bottom: 0;
}

.td-about-values__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
}

.td-about-card {
    padding: 28px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--td-border);
    transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.td-about-card:hover {
    border-color: rgba(39, 174, 96, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.td-about-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(39, 174, 96, 0.14);
    color: var(--td-brand-light);
    margin-bottom: 18px;
}

.td-about-card__icon svg {
    width: 24px;
    height: 24px;
}

.td-about-card h3 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--td-white-head);
}

.td-about-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-about-tech__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.td-about-tech-card {
    padding: 26px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--td-border);
    box-shadow: 0 10px 30px rgba(28, 31, 29, 0.05);
    transition: border-color 0.22s, transform 0.22s;
}

.td-about-tech-card:hover {
    border-color: rgba(39, 174, 96, 0.35);
    transform: translateY(-3px);
}

.td-about-tech-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--td-brand);
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.28);
}

.td-about-tech-card__icon svg {
    width: 24px;
    height: 24px;
}

.td-about-tech-card h3 {
    margin: 0 0 8px;
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1c1f1d;
}

.td-about-tech-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #5c6560;
}

.td-about-more__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.td-about-link-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--td-border);
    text-decoration: none;
    transition: border-color 0.22s, transform 0.22s, background 0.22s;
}

.td-about-link-card:hover {
    border-color: rgba(39, 174, 96, 0.4);
    background: rgba(39, 174, 96, 0.06);
    transform: translateY(-2px);
}

.td-about-link-card__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--td-brand-light);
}

.td-about-link-card strong {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--td-white-head);
    line-height: 1.35;
}

.td-about-link-card__go {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--td-muted);
    margin-top: auto;
}

.td-about-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding: 36px 32px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--td-border);
    box-shadow: 0 18px 50px rgba(28, 31, 29, 0.08);
}

.td-about-cta__box > div:first-child {
    max-width: 560px;
}

.td-about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 960px) {
    .td-about-hero {
        padding-top: 96px;
    }

    .td-about-hero__inner,
    .td-about-mission__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .td-about-hero__panel {
        order: -1;
    }

    .td-about-values__grid {
        grid-template-columns: 1fr;
    }

    .td-about-card--wide {
        grid-column: auto;
    }

    .td-about-tech__grid,
    .td-about-more__grid {
        grid-template-columns: 1fr;
    }

    .td-about-stat--accent {
        grid-column: span 1;
    }

    .td-about-cta__box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .td-about-hero__panel {
        grid-template-columns: 1fr;
    }
}

/* ========================= PRICING PAGE ========================= */

.td-page--pricing .td-pricing-hero {
    padding: 112px 0 96px;
}

.td-pricing-hero__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.td-pricing-hero__crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--td-muted);
    margin-bottom: 18px;
}

.td-pricing-hero__crumb a {
    color: var(--td-white-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.td-pricing-hero__crumb a:hover {
    color: var(--td-brand-light);
}

.td-pricing-hero__crumb span {
    color: var(--td-faint);
}

.td-pricing-promo {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    margin-bottom: 24px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.28);
}

.td-pricing-promo__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--td-brand);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.td-pricing-promo__text {
    font-size: 14px;
    color: var(--td-white-dim);
    line-height: 1.4;
}

.td-pricing-promo__text strong {
    color: var(--td-brand-light);
}

.td-pricing-hero h1 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    color: var(--td-white-head);
}

.td-pricing-hero h1 em {
    font-style: normal;
    color: var(--td-brand-light);
}

.td-pricing-hero__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--td-muted);
    max-width: 560px;
    margin: 0 auto;
}

.td-pricing-nav-wrap {
    margin-bottom: 40px;
    text-align: center;
}

.td-pricing-nav__label {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--td-light-muted, #64748b);
}

.td-pricing-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.td-pricing-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    color: var(--td-light-muted, #64748b);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.td-pricing-nav__btn:hover {
    border-color: rgba(39, 174, 96, 0.45);
    color: var(--td-light-head, #0f172a);
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.12);
}

.td-pricing-nav__btn.is-active {
    background: var(--td-brand);
    border-color: var(--td-brand);
    color: #fff;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.28);
}

.td-pricing-nav__icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.06);
}

.td-pricing-nav__btn.is-active .td-pricing-nav__icon {
    background: rgba(255, 255, 255, 0.2);
}

.td-pricing-nav__icon svg {
    width: 16px;
    height: 16px;
}

.td-pricing-main {
    padding-top: 8px;
    padding-bottom: 48px;
}

.td-pricing-panel {
    display: none;
}

.td-pricing-panel.is-active {
    display: block;
    animation: tdPricingFade 0.35s ease;
}

@keyframes tdPricingFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.td-pricing-panel__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 28px;
    color: #1c1f1d;
}

.td-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.td-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(20, 24, 21, 0.08);
    box-shadow: 0 12px 36px rgba(10, 11, 10, 0.06);
    transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.td-price-card:hover {
    border-color: rgba(39, 174, 96, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(39, 174, 96, 0.12);
}

.td-price-card--featured {
    border-color: rgba(39, 174, 96, 0.45);
    box-shadow: 0 16px 48px rgba(39, 174, 96, 0.14);
}

.td-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--td-brand);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.td-price-card__badge--promo {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.td-price-card__head {
    text-align: center;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(20, 24, 21, 0.08);
}

.td-price-card__head h3 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1c1f1d;
}

.td-price-card__price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.td-price-card__price {
    font-family: 'Sora', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--td-brand);
    line-height: 1;
}

.td-price-card__price span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5c6560;
}

.td-price-card__old {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.td-price-card__list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    flex: 1;
}

.td-price-card__list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #3a423c;
}

.td-price-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--td-brand);
}

.td-price-card__list li.is-no {
    color: #94a3b8;
    text-decoration: line-through;
}

.td-price-card__list li.is-no::before {
    background: #cbd5e1;
}

.td-price-card__btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.td-price-card--featured .td-price-card__btn.td-btn--primary {
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.25);
}

.td-pricing-offer {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px;
    margin-bottom: 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f1110 0%, #1a2e24 100%);
    border: 1px solid rgba(39, 174, 96, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.td-pricing-offer__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(39, 174, 96, 0.15);
    color: var(--td-brand-light);
}

.td-pricing-offer__icon svg {
    width: 28px;
    height: 28px;
}

.td-pricing-offer__body {
    flex: 1;
    min-width: 220px;
}

.td-pricing-offer__tag {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(231, 76, 60, 0.2);
    color: #ffb4a9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.td-pricing-offer__body h3 {
    margin: 0 0 8px;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.td-pricing-offer__body p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.td-pricing-offer__body strong {
    color: var(--td-brand-light);
}

.td-page--pricing .td-calc {
    padding-top: 48px;
    padding-bottom: 64px;
}

.td-pricing-faq {
    padding: 64px 0 72px;
}

.td-pricing-faq__head {
    max-width: 560px;
    margin-bottom: 28px;
}

.td-pricing-faq__head h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
    color: var(--td-white-head);
}

.td-pricing-faq__head h2 em {
    font-style: normal;
    color: var(--td-brand-light);
}

.td-pricing-faq__head p {
    margin: 0;
    color: var(--td-muted);
    line-height: 1.55;
}

.td-pricing-cta {
    padding: 48px 0 72px;
}

@media (max-width: 960px) {
    .td-page--pricing .td-pricing-hero {
        padding-top: 96px;
        padding-bottom: 72px;
    }

    .td-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .td-pricing-offer {
        flex-direction: column;
        text-align: center;
    }

    .td-pricing-nav-wrap {
        margin-bottom: 28px;
        text-align: left;
    }

    .td-pricing-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .td-pricing-nav__btn {
        flex-shrink: 0;
    }
}

/* ========================= VIZITKA PAGE ========================= */

.td-page--vizitka .td-about-hero,
.td-page--business .td-about-hero,
.td-page--shop .td-about-hero,
.td-page--catalog .td-about-hero,
.td-page--landing .td-about-hero,
.td-page--ads .td-about-hero,
.td-page--ai .td-about-hero,
.td-page--bot .td-about-hero,
.td-page--app .td-about-hero,
.td-page--admin .td-about-hero,
.td-page--seo .td-about-hero {
    padding: 112px 0 96px;
}

.td-viz-promo {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 22px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.28);
}

.td-viz-promo__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--td-brand);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.td-viz-promo__text {
    font-size: 14px;
    color: var(--td-white-dim);
    line-height: 1.4;
}

.td-viz-promo__text strong {
    color: var(--td-brand-light);
}

.td-viz-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.td-viz-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--td-border);
    color: var(--td-white-dim);
    font-size: 12px;
    font-weight: 600;
}

.td-viz-hero__tag svg {
    width: 14px;
    height: 14px;
    color: var(--td-brand-light);
}

.td-about-stat--seo {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.18), rgba(39, 174, 96, 0.06));
    border-color: rgba(39, 174, 96, 0.35);
}

.td-viz-seo-spot {
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.td-viz-seo-spot__glow {
    position: absolute;
    inset: auto -20% -40% -20%;
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(39, 174, 96, 0.14), transparent 68%);
    pointer-events: none;
}

.td-viz-seo-spot__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.td-viz-seo-spot__engines {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.td-viz-seo-spot__engine {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--td-border);
    color: var(--td-white-dim);
    font-size: 13px;
    font-weight: 600;
}

.td-viz-seo-spot__engine svg {
    width: 18px;
    height: 18px;
}

.td-viz-seo-spot__engine--google svg { color: #4285f4; }
.td-viz-seo-spot__engine--yandex svg { color: #fc3f1d; }

.td-viz-seo-spot h2 {
    margin: 0 0 14px;
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
}

.td-viz-seo-spot h2 em {
    font-style: normal;
    color: var(--td-brand-light);
}

.td-viz-seo-spot__lead {
    margin: 0 0 24px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--td-muted);
    max-width: 520px;
}

.td-viz-seo-spot__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.td-viz-seo-spot__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--td-white-dim);
    font-size: 14px;
    line-height: 1.45;
}

.td-viz-seo-spot__list li strong {
    color: var(--td-white-head);
}

.td-viz-seo-spot__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--td-brand);
    color: #fff;
}

.td-viz-seo-spot__check svg {
    width: 14px;
    height: 14px;
}

.td-viz-seo-spot__panel {
    padding: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--td-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.td-viz-seo-spot__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--td-border);
}

.td-viz-seo-spot__panel-head span {
    font-size: 13px;
    font-weight: 700;
    color: var(--td-brand-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.td-viz-seo-spot__score {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--td-white-head);
}

.td-viz-seo-spot__score small {
    font-size: 12px;
    font-weight: 600;
    color: var(--td-muted);
}

.td-viz-seo-spot__metrics {
    display: grid;
    gap: 10px;
}

.td-viz-seo-spot__metric {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}

.td-viz-seo-spot__metric span:first-child {
    font-size: 13px;
    color: var(--td-muted);
}

.td-viz-seo-spot__metric span:last-child {
    font-size: 13px;
    font-weight: 700;
    color: var(--td-brand-light);
}

.td-viz-seo-spot__bar {
    grid-column: 1 / -1;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.td-viz-seo-spot__bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--td-brand), var(--td-brand-light));
}

.td-viz-pricing {
    padding: 72px 0;
}

.td-viz-paths {
    padding: 72px 0;
}

.td-viz-paths__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.td-viz-path {
    padding: 32px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.td-viz-path:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(39, 174, 96, 0.12);
}

.td-viz-path--featured {
    border-color: rgba(39, 174, 96, 0.35);
    box-shadow: 0 12px 40px rgba(39, 174, 96, 0.14);
}

.td-viz-path__label {
    display: inline-flex;
    padding: 5px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.td-viz-path--featured .td-viz-path__label {
    background: rgba(39, 174, 96, 0.12);
    color: var(--td-brand);
}

.td-viz-path h3 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.td-viz-path > p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

.td-viz-path ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.td-viz-path li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.45;
    color: #334155;
}

.td-viz-path li::before {
    content: '✓';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.12);
    color: var(--td-brand);
    font-size: 11px;
    font-weight: 800;
}

.td-viz-reviews {
    padding: 72px 0;
}

.td-viz-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.td-viz-review {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--td-border);
}

.td-viz-review__stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.td-viz-review h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--td-white-head);
}

.td-viz-review p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--td-muted);
}

.td-viz-review__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.td-viz-review__avatar {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.18);
    color: var(--td-brand-light);
    font-size: 14px;
    font-weight: 800;
}

.td-viz-review__author strong {
    display: block;
    font-size: 13px;
    color: var(--td-white-head);
}

.td-viz-review__author span {
    font-size: 12px;
    color: var(--td-muted);
}

.td-page--vizitka .td-seo__title,
.td-page--vizitka .td-seo__subtitle,
.td-page--business .td-seo__title,
.td-page--business .td-seo__subtitle,
.td-page--shop .td-seo__title,
.td-page--shop .td-seo__subtitle,
.td-page--catalog .td-seo__title,
.td-page--catalog .td-seo__subtitle,
.td-page--landing .td-seo__title,
.td-page--landing .td-seo__subtitle,
.td-page--ads .td-seo__title,
.td-page--ads .td-seo__subtitle,
.td-page--ai .td-seo__title,
.td-page--ai .td-seo__subtitle,
.td-page--bot .td-seo__title,
.td-page--bot .td-seo__subtitle,
.td-page--app .td-seo__title,
.td-page--app .td-seo__subtitle,
.td-page--admin .td-seo__title,
.td-page--admin .td-seo__subtitle,
.td-page--seo .td-seo__title,
.td-page--seo .td-seo__subtitle {
    color: #0f172a;
}

.td-page--vizitka .td-seo__body p,
.td-page--vizitka .td-seo__list li,
.td-page--business .td-seo__body p,
.td-page--business .td-seo__list li,
.td-page--shop .td-seo__body p,
.td-page--shop .td-seo__list li,
.td-page--catalog .td-seo__body p,
.td-page--catalog .td-seo__list li,
.td-page--landing .td-seo__body p,
.td-page--landing .td-seo__list li,
.td-page--ads .td-seo__body p,
.td-page--ads .td-seo__list li,
.td-page--ai .td-seo__body p,
.td-page--ai .td-seo__list li,
.td-page--bot .td-seo__body p,
.td-page--bot .td-seo__list li,
.td-page--app .td-seo__body p,
.td-page--app .td-seo__list li,
.td-page--admin .td-seo__body p,
.td-page--admin .td-seo__list li,
.td-page--seo .td-seo__body p,
.td-page--seo .td-seo__list li {
    color: #64748b;
}

.td-page--vizitka .td-seo__body strong,
.td-page--business .td-seo__body strong,
.td-page--shop .td-seo__body strong,
.td-page--catalog .td-seo__body strong,
.td-page--landing .td-seo__body strong,
.td-page--ads .td-seo__body strong,
.td-page--ai .td-seo__body strong,
.td-page--bot .td-seo__body strong,
.td-page--app .td-seo__body strong,
.td-page--admin .td-seo__body strong,
.td-page--seo .td-seo__body strong {
    color: #0f172a;
}

@media (max-width: 960px) {
    .td-page--vizitka .td-about-hero,
    .td-page--business .td-about-hero,
    .td-page--shop .td-about-hero,
    .td-page--catalog .td-about-hero,
    .td-page--landing .td-about-hero,
    .td-page--ads .td-about-hero,
    .td-page--ai .td-about-hero,
    .td-page--bot .td-about-hero,
    .td-page--app .td-about-hero,
    .td-page--admin .td-about-hero,
    .td-page--seo .td-about-hero,
    .td-page--blog .td-about-hero {
        padding-top: 96px;
        padding-bottom: 72px;
    }

    .td-about-hero__inner,
    .td-viz-seo-spot__grid {
        grid-template-columns: 1fr;
    }

    .td-viz-paths__grid,
    .td-viz-reviews__grid {
        grid-template-columns: 1fr;
    }

    .td-blog-page__layout {
        grid-template-columns: 1fr;
    }

    .td-blog-page__hero {
        grid-template-columns: 1fr;
    }

    .td-blog-page__grid {
        grid-template-columns: 1fr;
    }
}

/* Blog listing page */
.td-page--blog .td-about-hero {
    padding-top: 112px;
    padding-bottom: 88px;
}

.td-blog-page {
    padding-top: 16px;
    padding-bottom: 72px;
}

.td-blog-page__head {
    margin-bottom: 28px;
}

.td-blog-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 36px;
    align-items: start;
}

.td-blog-page__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.td-blog-page__hero-slot {
    margin-bottom: 24px;
}

.td-blog-page__hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--td-border);
    box-shadow: 0 14px 40px rgba(28, 31, 29, 0.07);
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}

.td-blog-page__hero:hover {
    transform: translateY(-4px);
    border-color: rgba(39, 174, 96, 0.28);
    box-shadow: 0 20px 48px rgba(39, 174, 96, 0.12);
}

.td-blog-page__hero-img {
    position: relative;
    min-height: 280px;
    background: #dfe3df;
}

.td-blog-page__hero-img img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.td-blog-page__hero-img img.is-placeholder {
    object-fit: contain;
    padding: 32px;
    background: #eef0ee;
}

.td-blog-page__hero:hover .td-blog-page__hero-img img {
    transform: scale(1.04);
}

.td-blog-page__hero-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 28px 32px;
}

.td-blog-page__hero-body time {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--td-muted);
}

.td-blog-page__hero-body h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--td-white-head);
}

.td-blog-page__hero-body p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--td-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.td-blog-page__hero-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--td-brand);
}

.td-blog-page__hero-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.22s;
}

.td-blog-page__hero:hover .td-blog-page__hero-link svg {
    transform: translateX(4px);
}

.td-blog-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.td-blog-page__grid .td-blog-card {
    flex: none;
    width: auto;
    height: 100%;
}

.td-blog-page__foot {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.td-blog-page__empty {
    margin: 0;
    padding: 32px 20px;
    text-align: center;
    color: var(--td-muted);
    font-size: 0.95rem;
}

.td-blog-page__aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 96px;
}

.td-blog-page__side-card {
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--td-border);
    box-shadow: 0 8px 24px rgba(28, 31, 29, 0.04);
}

.td-blog-page__side-card h3 {
    margin: 0 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--td-white-head);
}

.td-blog-page__side-card p {
    margin: 0 0 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-blog-page__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.td-blog-page__links a {
    display: block;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--td-white-dim);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.td-blog-page__links a:hover {
    background: rgba(39, 174, 96, 0.08);
    color: var(--td-brand);
}

.td-blog-page__side-card--cta {
    background: linear-gradient(145deg, rgba(39, 174, 96, 0.08), rgba(255, 255, 255, 0.9));
    border-color: rgba(39, 174, 96, 0.2);
}

.td-blog-page__side-card--cta .td-btn {
    width: 100%;
    justify-content: center;
}

/* Blog article (single post) */
.td-page--article .td-blog-article-hero {
    padding: 112px 28px 56px;
}

.td-blog-article-hero__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0;
}

.td-page--article .td-blog-article-hero__crumb,
.td-page--article .td-blog-article-hero__meta,
.td-page--article .td-blog-article-hero h1,
.td-page--article .td-blog-article-hero__lead {
    max-width: 680px;
}

.td-blog-article-hero__crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--td-muted-on-dark);
}

.td-blog-article-hero__crumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s;
}

.td-blog-article-hero__crumb a:hover {
    color: #fff;
}

.td-blog-article-hero__crumb span:last-child {
    color: rgba(255, 255, 255, 0.45);
}

.td-blog-article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.td-blog-article-hero__meta time {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--td-muted-on-dark);
}

.td-blog-article-hero h1 {
    margin: 0 0 14px;
    max-width: 100%;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
}

.td-blog-article-hero__lead {
    margin: 0;
    max-width: 640px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.td-page--article .td-blog-article .td-wrap {
    max-width: 1040px;
}

.td-page--article .td-blog-page__layout {
    grid-template-columns: minmax(0, 680px) minmax(240px, 280px);
    justify-content: start;
    gap: 32px;
}

.td-blog-article {
    padding-top: 16px;
    padding-bottom: 72px;
}

.td-blog-article__cover {
    margin: 0 0 24px;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--td-border);
    box-shadow: 0 10px 28px rgba(28, 31, 29, 0.06);
}

.td-blog-article__cover img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    object-position: center;
}

.td-blog-article__body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--td-white-dim);
}

.td-blog-article__body p {
    margin: 0 0 1.1em;
}

.td-blog-article__body h2,
.td-blog-article__body h3 {
    margin: 1.6em 0 0.65em;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--td-white-head);
}

.td-blog-article__body h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
}

.td-blog-article__body h3 {
    font-size: 1.12rem;
}

.td-blog-article__body ul,
.td-blog-article__body ol {
    margin: 0 0 1.2em;
    padding-left: 1.35em;
}

.td-blog-article__body li {
    margin-bottom: 0.45em;
}

.td-blog-article__body a {
    color: var(--td-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.td-blog-article__body a:hover {
    color: #1e9b52;
}

.td-blog-article__body strong {
    color: var(--td-white-head);
    font-weight: 700;
}

.td-blog-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.td-blog-article__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--td-border);
}

.td-blog-article__rubric {
    margin: 0 0 12px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.22);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--td-brand);
}

.td-blog-article__related {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.td-blog-article__related-link {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    padding: 10px;
    margin: -10px;
    border-radius: 12px;
    transition: background 0.2s;
}

.td-blog-article__related-link:hover {
    background: rgba(39, 174, 96, 0.06);
}

.td-blog-article__related-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    background: #dfe3df;
}

.td-blog-article__related-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.td-blog-article__related-body time {
    font-size: 0.72rem;
    color: var(--td-muted);
}

.td-blog-article__related-title {
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--td-white-head);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.td-blog-article__related-empty a {
    color: var(--td-brand);
    font-size: 0.88rem;
}

@media (max-width: 960px) {
    .td-page--article .td-blog-article-hero {
        padding-top: 96px;
        padding-bottom: 48px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .td-page--article .td-blog-page__layout {
        grid-template-columns: 1fr;
    }

    .td-blog-article__cover img {
        max-height: 180px;
    }
}

/* ========================= JOBS PAGE ========================= */

.td-page--jobs .td-about-hero {
    padding-top: 112px;
    padding-bottom: 72px;
}

.td-jobs-status {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 520px;
    margin: 0 0 28px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(243, 156, 18, 0.08);
    border: 1px solid rgba(243, 156, 18, 0.28);
    border-left: 4px solid #f39c12;
}

.td-jobs-status__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.td-jobs-status__icon svg {
    width: 22px;
    height: 22px;
}

.td-jobs-status strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--td-white-head);
}

.td-jobs-status span {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--td-muted);
}

.td-jobs-perks {
    padding-top: 16px;
    padding-bottom: 72px;
}

.td-jobs-perks__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.td-jobs-perk {
    padding: 24px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--td-border);
    box-shadow: 0 10px 28px rgba(28, 31, 29, 0.05);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.td-jobs-perk:hover {
    transform: translateY(-4px);
    border-color: rgba(39, 174, 96, 0.28);
    box-shadow: 0 16px 36px rgba(39, 174, 96, 0.1);
}

.td-jobs-perk__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: var(--td-brand-soft);
    color: var(--td-brand);
}

.td-jobs-perk__icon svg {
    width: 22px;
    height: 22px;
}

.td-jobs-perk h3 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--td-white-head);
}

.td-jobs-perk p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-jobs-positions {
    padding: 64px 0 72px;
}

.td-jobs-positions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.td-jobs-card {
    position: relative;
    padding: 26px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--td-border);
    overflow: hidden;
    transition: transform 0.28s, border-color 0.28s, background 0.28s;
}

.td-jobs-card:hover {
    transform: translateY(-4px);
    border-color: rgba(39, 174, 96, 0.35);
    background: rgba(39, 174, 96, 0.06);
}

.td-jobs-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.td-jobs-card h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--td-white-head);
    line-height: 1.3;
}

.td-jobs-card__badge {
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    color: var(--td-muted);
}

.td-jobs-card p {
    margin: 0;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-jobs-card__icon {
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    color: var(--td-brand);
    opacity: 0.18;
    transition: opacity 0.28s, transform 0.28s;
}

.td-jobs-card__icon svg {
    width: 100%;
    height: 100%;
}

.td-jobs-card:hover .td-jobs-card__icon {
    opacity: 0.65;
    transform: scale(1.08);
}

.td-jobs-apply {
    max-width: 560px;
    margin: 0 auto;
    padding: 32px 28px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(39, 174, 96, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(39, 174, 96, 0.35);
}

.td-jobs-apply h3 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--td-white-head);
}

.td-jobs-apply p {
    margin: 0 0 20px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--td-muted);
}

@media (max-width: 960px) {
    .td-page--jobs .td-about-hero {
        padding-top: 96px;
        padding-bottom: 56px;
    }

    .td-jobs-status {
        flex-direction: column;
        align-items: flex-start;
    }

    .td-jobs-perks__grid,
    .td-jobs-positions__grid {
        grid-template-columns: 1fr;
    }
}

/* ========================= PORTFOLIO PAGE ========================= */

.td-page--portfolio .td-about-hero {
    padding-top: 112px;
    padding-bottom: 72px;
}

.td-portfolio-page {
    position: relative;
    padding: 48px 0 72px;
}

.td-portfolio-page__glow {
    position: absolute;
    top: 8%;
    right: -8%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.12) 0%, transparent 68%);
    filter: blur(60px);
    pointer-events: none;
}

.td-portfolio-page__toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.td-portfolio-page__meta {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--td-faint);
}

.td-portfolio-page .td-works__filters {
    margin-bottom: 0;
    flex: 1;
    min-width: 240px;
}

.td-portfolio-page .td-works__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 16px;
}

.td-portfolio-page .td-works__grid.td-portfolio-grid--all .td-works__card--featured {
    grid-column: span 2;
    min-height: 280px;
}

.td-portfolio-page .td-works__grid.is-filtered {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.td-portfolio-page .td-works__grid.is-filtered .td-works__card--featured {
    grid-column: auto;
    min-height: 220px;
}

.td-portfolio-trust {
    padding-top: 24px;
    padding-bottom: 64px;
}

.td-portfolio-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.td-portfolio-trust__card {
    padding: 24px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--td-border);
    box-shadow: 0 10px 28px rgba(28, 31, 29, 0.05);
}

.td-portfolio-trust__card strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--td-brand);
}

.td-portfolio-trust__card span {
    display: block;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-portfolio-note {
    max-width: 720px;
    margin: 0 auto;
    padding: 22px 24px;
    text-align: center;
    border-radius: 16px;
    background: rgba(39, 174, 96, 0.06);
    border: 1px solid rgba(39, 174, 96, 0.18);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--td-muted);
}

.td-portfolio-note strong {
    color: var(--td-white-head);
}

@media (max-width: 960px) {
    .td-page--portfolio .td-about-hero {
        padding-top: 96px;
        padding-bottom: 56px;
    }

    .td-portfolio-page .td-works__grid,
    .td-portfolio-page .td-works__grid.is-filtered,
    .td-portfolio-page .td-works__grid.td-portfolio-grid--all .td-works__card--featured {
        grid-template-columns: 1fr;
    }

    .td-portfolio-page .td-works__grid.td-portfolio-grid--all .td-works__card--featured {
        grid-column: auto;
        min-height: 220px;
    }

    .td-portfolio-trust__grid {
        grid-template-columns: 1fr;
    }

    .td-portfolio-page__toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================= PORTFOLIO CASE PAGE ========================= */

.td-page--case .td-case-hero {
    padding: 112px 28px 64px;
}

.td-case-hero__inner {
    max-width: 1040px;
    margin: 0 auto;
}

.td-case-hero__crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--td-muted-on-dark);
}

.td-case-hero__crumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s;
}

.td-case-hero__crumb a:hover {
    color: #fff;
}

.td-case-hero__crumb span:last-child {
    color: rgba(255, 255, 255, 0.45);
}

.td-case-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.td-case-hero__tag {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--td-muted-on-dark);
}

.td-case-hero h1 {
    max-width: 720px;
    margin: 0 0 16px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--td-white-head);
}

.td-case-hero h1 em {
    font-style: normal;
    color: var(--td-brand-light);
}

.td-case-hero__lead {
    max-width: 640px;
    margin: 0 0 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--td-muted-on-dark);
}

.td-case-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.td-case-hero__actions .td-btn--primary svg {
    width: 16px;
    height: 16px;
}

.td-case-study {
    padding-top: 24px;
    padding-bottom: 72px;
}

.td-case-study__wrap {
    max-width: 920px;
}

.td-case-study__title {
    margin: 0 0 20px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--td-white-head);
    text-align: center;
}

.td-case-study__title em {
    font-style: normal;
    color: var(--td-brand);
}

.td-case-browser {
    margin-bottom: 56px;
}

.td-case-browser__frame {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--td-border);
    box-shadow: 0 24px 60px rgba(28, 31, 29, 0.12);
}

.td-case-browser__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #eef0ee;
    border-bottom: 1px solid var(--td-border);
}

.td-case-browser__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.td-case-browser__dot--r { background: #ff5f56; }
.td-case-browser__dot--y { background: #ffbd2e; }
.td-case-browser__dot--g { background: #27c93f; }

.td-case-browser__url {
    flex: 1;
    margin-left: 8px;
    padding: 5px 12px;
    border-radius: 6px;
    background: #fff;
    font-size: 0.72rem;
    text-align: center;
    color: var(--td-muted);
}

.td-case-browser__url a {
    color: inherit;
    text-decoration: none;
}

.td-case-browser__url a:hover {
    color: var(--td-brand);
}

.td-case-browser__viewport {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #fff;
}

.td-case-browser__viewport iframe {
    width: 175.44%;
    height: 175.44%;
    transform: scale(0.57);
    transform-origin: 0 0;
    border: none;
    display: block;
}

.td-case-browser__viewport--scroll {
    height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
}

.td-case-browser__viewport--scroll img {
    display: block;
    width: 100%;
    height: auto;
}

.td-case-browser__hint {
    margin: 16px 0 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--td-muted);
}

.td-case-shot {
    margin-bottom: 56px;
}

.td-case-shot__frame {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--td-border);
    box-shadow: 0 20px 48px rgba(28, 31, 29, 0.1);
    background: #111;
}

.td-case-shot__frame img {
    display: block;
    width: 100%;
    height: auto;
}

.td-case-info {
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--td-border);
}

.td-case-info__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.td-case-info__item h3 {
    margin: 0 0 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--td-faint);
}

.td-case-info__item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-case-info__item--accent p {
    color: var(--td-white-head);
}

.td-case-info__item--accent strong {
    color: var(--td-brand);
}

.td-case-steps {
    margin-bottom: 48px;
}

.td-case-steps__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.td-case-steps__card {
    position: relative;
    padding: 24px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--td-border);
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.td-case-steps__card:hover {
    transform: translateY(-3px);
    border-color: rgba(39, 174, 96, 0.28);
    box-shadow: 0 12px 32px rgba(39, 174, 96, 0.08);
}

.td-case-steps__num {
    display: block;
    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(39, 174, 96, 0.2);
}

.td-case-steps__card h4 {
    margin: 0 0 8px;
    font-family: 'Sora', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--td-white-head);
}

.td-case-steps__card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--td-muted);
}

.td-case-quote {
    margin: 0 0 40px;
    padding: 28px 32px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(39, 174, 96, 0.08), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-left: 4px solid var(--td-brand);
}

.td-case-quote p {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.65;
    font-style: italic;
    color: var(--td-white-head);
}

.td-case-quote footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.td-case-quote footer strong {
    font-size: 0.9rem;
    color: var(--td-white-head);
}

.td-case-quote footer span {
    font-size: 0.8rem;
    color: var(--td-muted);
}

.td-case-study__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
}

.td-case-related {
    position: relative;
    padding: 48px 0 64px;
}

.td-case-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
}

.td-case-related__grid .td-works__card--featured {
    grid-column: auto;
    min-height: 220px;
}

@media (max-width: 960px) {
    .td-page--case .td-case-hero {
        padding-top: 96px;
        padding-bottom: 48px;
    }

    .td-case-browser__viewport {
        height: 360px;
    }

    .td-case-browser__viewport iframe {
        width: 200%;
        height: 200%;
        transform: scale(0.5);
    }

    .td-case-info__grid,
    .td-case-steps__grid,
    .td-case-related__grid {
        grid-template-columns: 1fr;
    }

    .td-case-study__foot {
        flex-direction: column;
    }

    .td-case-study__foot .td-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================= LEGAL PAGES ========================= */

.td-page--legal .td-contacts-hero {
    padding: 112px 0 64px;
}

.td-page--legal .td-legal-main {
    padding: 56px 0 80px;
}

.td-page--legal .legal-page-wrapper {
    max-width: none;
    margin: 0;
    padding: 0;
}

.td-page--legal .legal-toc {
    top: 88px;
}

.td-page--legal .legal-section {
    scroll-margin-top: 88px;
}

@media (max-width: 768px) {
    .td-page--legal .td-contacts-hero {
        padding: 96px 0 48px;
    }

    .td-page--legal .td-legal-main {
        padding: 40px 0 64px;
    }
}
